diff --git a/net/src/main/java/com/zfoo/net/core/gateway/model/GatewaySessionInactiveAsk.java b/net/src/main/java/com/zfoo/net/core/gateway/model/GatewaySessionInactiveAsk.java deleted file mode 100644 index 5158bf11..00000000 --- a/net/src/main/java/com/zfoo/net/core/gateway/model/GatewaySessionInactiveAsk.java +++ /dev/null @@ -1,60 +0,0 @@ -/* - * Copyright (C) 2020 The zfoo Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed - * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and limitations under the License. - */ - -package com.zfoo.net.core.gateway.model; - -import com.zfoo.protocol.anno.Protocol; - -/** - * @author godotg - */ -@Protocol(id = 23) -public class GatewaySessionInactiveAsk { - - private String gatewayHostAndPort; - - private long sid; - private long uid; - - public static GatewaySessionInactiveAsk valueOf(String gatewayHostAndPort, long sid, long uid) { - var ask = new GatewaySessionInactiveAsk(); - ask.gatewayHostAndPort = gatewayHostAndPort; - ask.sid = sid; - ask.uid = uid; - return ask; - } - - public String getGatewayHostAndPort() { - return gatewayHostAndPort; - } - - public void setGatewayHostAndPort(String gatewayHostAndPort) { - this.gatewayHostAndPort = gatewayHostAndPort; - } - - public long getSid() { - return sid; - } - - public void setSid(long sid) { - this.sid = sid; - } - - public long getUid() { - return uid; - } - - public void setUid(long uid) { - this.uid = uid; - } -} diff --git a/net/src/main/java/com/zfoo/net/core/gateway/model/GatewaySynchronizeSidAsk.java b/net/src/main/java/com/zfoo/net/core/gateway/model/GatewaySynchronizeSidAsk.java deleted file mode 100644 index c663f095..00000000 --- a/net/src/main/java/com/zfoo/net/core/gateway/model/GatewaySynchronizeSidAsk.java +++ /dev/null @@ -1,54 +0,0 @@ -/* - * Copyright (C) 2020 The zfoo Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed - * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and limitations under the License. - */ - -package com.zfoo.net.core.gateway.model; - -import com.zfoo.protocol.anno.Protocol; - -import java.util.Map; - -/** - * 同步网关的session信息到push - * - * @author godotg - */ -@Protocol(id = 24) -public class GatewaySynchronizeSidAsk { - - private String gatewayHostAndPort; - - private Map sidMap; - - public static GatewaySynchronizeSidAsk valueOf(String gatewayHostAndPort, Map sidMap) { - var ask = new GatewaySynchronizeSidAsk(); - ask.gatewayHostAndPort = gatewayHostAndPort; - ask.sidMap = sidMap; - return ask; - } - - public Map getSidMap() { - return sidMap; - } - - public void setSidMap(Map sidMap) { - this.sidMap = sidMap; - } - - public String getGatewayHostAndPort() { - return gatewayHostAndPort; - } - - public void setGatewayHostAndPort(String gatewayHostAndPort) { - this.gatewayHostAndPort = gatewayHostAndPort; - } -}