blob: 9d6cc3f797bd8eb866f82abaaf93ba700afd9e17 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.alibaba.dubboadmin.governance.util;
import java.util.HashMap;
import java.util.Map;
/**
* Contains the constants used in the web layer
*
*/
public class WebConstants {
/**
* In the session to save the current user object's key.
*/
public static final String CURRENT_USER_KEY = "currentUser";
/**
* The current registered server address
*/
public static final String REGISTRY_ADDRESS = "registryAddress";
/**
* Service exposed address
*/
public static final String SERVICE_URL = "serviceUrl";
/**
* Service name
*/
public static final String SERVICE_NAME = "serviceName";
/**
* Service name
*/
public static final String ENTRY = "entry";
/**
* buc sso logout
*/
public static final String SSO_LOGOUT_URL = "SSO_LOGOUT_URL";
/**
* buc sso logon
*/
public static final String BUC_SSO_USERNAME = "buc_sso_username";
/**
* Operation record page The default page record shows the number of records
*/
public static final Integer OPRATION_RECORDS_PAGE_SIZE = 100;
/**
* Help Url
*/
public static final String HELP_URL="https://github.com/apache/incubator-dubbo-ops";
Map<String, Object> context;
public static final Map<String, String> mapper = new HashMap<>();
static {
mapper.put("providers", "providersController");
mapper.put("consumers", "consumersController");
mapper.put("applications", "applicationsController");
mapper.put("routes", "routesController");
mapper.put("overrides", "overridesController");
mapper.put("accesses", "accessesController");
mapper.put("loadbalances", "loadbalancesController");
mapper.put("owners", "ownersController");
mapper.put("weights", "weightsController");
mapper.put("addresses", "addressesController");
mapper.put("services", "servicesController");
}
}