com.iohao.game.bolt.broker.client.external.config.ExternalGlobalConfig Maven / Gradle / Ivy
/*
* # iohao.com . 渔民小镇
* Copyright (C) 2021 - 2023 double joker ([email protected]) . All Rights Reserved.
*
* 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.iohao.game.bolt.broker.client.external.config;
import lombok.experimental.UtilityClass;
import com.iohao.game.bolt.broker.client.external.bootstrap.message.ExternalMessage;
/**
* @author 渔民小镇
* @date 2022-03-22
*/
@UtilityClass
public class ExternalGlobalConfig {
/**
* true 表示请求业务方法需要先登录
*
* 将在下个大版本中移除
*
* 请使用 {@link ExternalGlobalConfig#accessAuthenticationHook} 代替
*
*/
@Deprecated
public boolean verifyIdentity = true;
/**
* 访问验证钩子接口
*
* 使用文档
* https://www.yuque.com/iohao/game/tywkqv#qEvtB
*
*/
public AccessAuthenticationHook accessAuthenticationHook = new DefaultAccessAuthenticationHook();
/**
* 协议开关,用于一些协议级别的开关控制,比如 安全加密校验等。 : 0 不校验
*
* see {@link ExternalMessage#getProtocolSwitch()}
*
*/
public int protocolSwitch;
}