![JAR search and dependency download from the Maven repository](/logo.png)
com.jdcloud.sdk.service.waf.model.SignatureRules Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of waf Show documentation
Show all versions of waf Show documentation
JDCLOUD Open API SDK for Java
The newest version!
/*
* Copyright 2018 JDCLOUD.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.
*
*
*
*
*
* Contact:
*
* NOTE: This class is auto generated by the jdcloud code generator program.
*/
package com.jdcloud.sdk.service.waf.model;
/**
* signatureRules
*/
public class SignatureRules implements java.io.Serializable {
private static final long serialVersionUID = 1L;
/**
* 规则id
*/
private Long ruleId;
/**
* 规则名称
*/
private String ruleName;
/**
* 规则类型
*/
private String ruleType;
/**
* 规则等级
*/
private Integer ruleLevel;
/**
* 应用漏洞
*/
private String cve;
/**
* 更新时间
*/
private Long updateTime;
/**
* 规则描述
*/
private String ruleDesc;
/**
* get 规则id
*
* @return
*/
public Long getRuleId() {
return ruleId;
}
/**
* set 规则id
*
* @param ruleId
*/
public void setRuleId(Long ruleId) {
this.ruleId = ruleId;
}
/**
* get 规则名称
*
* @return
*/
public String getRuleName() {
return ruleName;
}
/**
* set 规则名称
*
* @param ruleName
*/
public void setRuleName(String ruleName) {
this.ruleName = ruleName;
}
/**
* get 规则类型
*
* @return
*/
public String getRuleType() {
return ruleType;
}
/**
* set 规则类型
*
* @param ruleType
*/
public void setRuleType(String ruleType) {
this.ruleType = ruleType;
}
/**
* get 规则等级
*
* @return
*/
public Integer getRuleLevel() {
return ruleLevel;
}
/**
* set 规则等级
*
* @param ruleLevel
*/
public void setRuleLevel(Integer ruleLevel) {
this.ruleLevel = ruleLevel;
}
/**
* get 应用漏洞
*
* @return
*/
public String getCve() {
return cve;
}
/**
* set 应用漏洞
*
* @param cve
*/
public void setCve(String cve) {
this.cve = cve;
}
/**
* get 更新时间
*
* @return
*/
public Long getUpdateTime() {
return updateTime;
}
/**
* set 更新时间
*
* @param updateTime
*/
public void setUpdateTime(Long updateTime) {
this.updateTime = updateTime;
}
/**
* get 规则描述
*
* @return
*/
public String getRuleDesc() {
return ruleDesc;
}
/**
* set 规则描述
*
* @param ruleDesc
*/
public void setRuleDesc(String ruleDesc) {
this.ruleDesc = ruleDesc;
}
/**
* set 规则id
*
* @param ruleId
*/
public SignatureRules ruleId(Long ruleId) {
this.ruleId = ruleId;
return this;
}
/**
* set 规则名称
*
* @param ruleName
*/
public SignatureRules ruleName(String ruleName) {
this.ruleName = ruleName;
return this;
}
/**
* set 规则类型
*
* @param ruleType
*/
public SignatureRules ruleType(String ruleType) {
this.ruleType = ruleType;
return this;
}
/**
* set 规则等级
*
* @param ruleLevel
*/
public SignatureRules ruleLevel(Integer ruleLevel) {
this.ruleLevel = ruleLevel;
return this;
}
/**
* set 应用漏洞
*
* @param cve
*/
public SignatureRules cve(String cve) {
this.cve = cve;
return this;
}
/**
* set 更新时间
*
* @param updateTime
*/
public SignatureRules updateTime(Long updateTime) {
this.updateTime = updateTime;
return this;
}
/**
* set 规则描述
*
* @param ruleDesc
*/
public SignatureRules ruleDesc(String ruleDesc) {
this.ruleDesc = ruleDesc;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy