/* * Copyright 2015 the original author or authors. * @https://github.com/scouter-project/scouter * * 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 scouter.client.server; public class GroupPolicyConstants { public static final String ALLOW_EDITGROUPPOLICY = "AllowEditGroupPolicy"; public static final String ALLOW_HEAPDUMP = "AllowHeapDump"; public static final String ALLOW_FILEDUMP = "AllowFileDump"; public static final String ALLOW_HEAPHISTOGRAM = "AllowHeapHistogram"; public static final String ALLOW_THREADDUMP = "AllowThreadDump"; public static final String ALLOW_SYSTEMGC = "AllowSystemGC"; public static final String ALLOW_CONFIGURE = "AllowConfigure"; public static final String ALLOW_EXPORTCOUNTER = "AllowExportCounter"; public static final String ALLOW_EXPORTAPPSUM = "AllowExportAppSum"; public static final String ALLOW_LOGINLIST = "AllowLoginList"; public static final String ALLOW_DBMANAGER = "AllowDBManager"; public static final String ALLOW_ADDACCOUNT = "AllowAddAccount"; public static final String ALLOW_EDITACCOUNT = "AllowEditAccount"; public static final String ALLOW_SQLPARAMETER = "AllowSqlParameter"; public static final String ALLOW_KILLTRANSACTION = "AllowKillTransaction"; public static final String ALLOW_EXPORTCLASS = "AllowExportClass"; public static final String ALLOW_REDEFINECLASS = "AllowRedefineClass"; public static final String ALLOW_DEFINEOBJTYPE = "AllowDefineObjectType"; }