package com.vci.client.omd.versionrule.bean;
|
|
import com.vci.corba.omd.vrm.VersionRule;
|
|
|
public class ClientVersionRule {
|
private String id = "";
|
private String name = "";
|
private String tag = "";
|
private String jumpCharacter = "";
|
private String initialValue = "";
|
private int stepLength = 1;
|
private String prefixion = "";
|
private String suffix = "";
|
private String describe = "";
|
private String associated = "";
|
|
private VersionRule versionRule = null;
|
|
public ClientVersionRule() {}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getTag() {
|
return tag;
|
}
|
|
public void setTag(String tag) {
|
this.tag = tag;
|
}
|
|
public String getJumpCharacter() {
|
return jumpCharacter;
|
}
|
|
public void setJumpCharacter(String jumpCharacter) {
|
this.jumpCharacter = jumpCharacter;
|
}
|
|
public String getInitialValue() {
|
return initialValue;
|
}
|
|
public void setInitialValue(String initialValue) {
|
this.initialValue = initialValue;
|
}
|
|
public int getStepLength() {
|
return stepLength;
|
}
|
|
public void setStepLength(int stepLength) {
|
this.stepLength = stepLength;
|
}
|
|
public String getPrefixion() {
|
return prefixion;
|
}
|
|
public void setPrefixion(String prefixion) {
|
this.prefixion = prefixion;
|
}
|
|
public String getSuffix() {
|
return suffix;
|
}
|
|
public void setSuffix(String suffix) {
|
this.suffix = suffix;
|
}
|
|
public String getDescribe() {
|
return describe;
|
}
|
|
public void setDescribe(String describe) {
|
this.describe = describe;
|
}
|
|
public String getAssociated() {
|
return associated;
|
}
|
|
public void setAssociated(String associated) {
|
this.associated = associated;
|
}
|
|
public VersionRule getVersionRule() {
|
return versionRule;
|
}
|
|
public void setVersionRule(VersionRule versionRule) {
|
this.versionRule = versionRule;
|
}
|
|
|
|
}
|