All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jeesuite.gateway.GatewayConfigs Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2016-2022 www.jeesuite.com.
 *
 * 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.jeesuite.gateway;

import java.util.List;

import com.jeesuite.common.util.ResourceUtils;
import com.jeesuite.springweb.AppConfigs;

/**
 * 
 * 
* Class Name : AppConfigs * * @author vakin * @version 1.0.0 * @date May 14, 2022 */ public class GatewayConfigs extends AppConfigs { public static final String OPENAPI_CLIENT_MAPPING_CONFIG_KEY = "jeesuite.openapi.client-config.mapping"; public static final boolean actionLogEnabled = ResourceUtils.getBoolean("jeesuite.actionlog.enabled", false); public static final boolean actionLogGetMethodIngore = ResourceUtils.getBoolean("jeesuite.actionlog.getMethod.ignore", true); public static final List anonymousIpWhilelist = ResourceUtils.getList("jeesuite.acl.anonymous-ip-whilelist"); public static final boolean openEnabled = ResourceUtils.getBoolean("jeesuite.openapi.enabled", false); public static final List ignoreRewriteRoutes = ResourceUtils.getList("jeesuite.response.rewrite.ignore-routes"); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy