cn.com.antcloud.api.catronus.v1_0.model.RuntimeStrategy Maven / Gradle / Ivy
//
// Copyright (c) 2020-present antgroup.com, https://www.antgroup.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 cn.com.antcloud.api.catronus.v1_0.model;
import java.lang.Boolean;
/**
* 运行时相关策略 */
public class RuntimeStrategy {
private Boolean webshell;
private Boolean privilege;
private Boolean enable;
/**
* 安全webshell配置 */
public Boolean getWebshell() {
return this.webshell;
}
/**
* 安全webshell配置 */
public void setWebshell(Boolean webshell) {
this.webshell = webshell;
}
/**
* 提权保护配置 */
public Boolean getPrivilege() {
return this.privilege;
}
/**
* 提权保护配置 */
public void setPrivilege(Boolean privilege) {
this.privilege = privilege;
}
/**
* 是否打开 */
public Boolean getEnable() {
return this.enable;
}
/**
* 是否打开 */
public void setEnable(Boolean enable) {
this.enable = enable;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy