com.quamto.jira.data.common.entity.RestrictionEntity Maven / Gradle / Ivy
The newest version!
package com.quamto.jira.data.common.entity;
import com.quamto.entity.BaseEntity;
import com.quamto.jira.data.common.JEnumerators.PluginEntities;
import com.quamto.jira.data.common.JEnumerators.YesNo;
public class RestrictionEntity extends BaseEntity {
private String summary = null;
private String description = null;
private YesNo mandatory = YesNo.No;
private Long idEntity = null;
private PluginEntities entityType;
private Long idType;
/**
* @return Description assigned to kong_restricciones
*/
public String getDescription(){
return this.description;
}
/**
* @param value assigned to kong_restricciones
*/
public void setDescription(String value){
this.description = value;
}
/**
* @return Mandatory assigned to kong_restricciones
*/
public YesNo getMandatory(){
return this.mandatory;
}
/**
* @param value assigned to kong_restricciones
*/
public void setMandatory(YesNo value){
this.mandatory = value;
}
/**
* @return Entity id assigned to kong_restricciones
*/
public long getIdEntity(){
return this.idEntity;
}
/**
* @param value id assigned to kong_restricciones
*/
public void setIdEntity(long value){
this.idEntity = value;
}
/**
* @return Entity type assigned to kong_restricciones
*/
public PluginEntities getEntityType(){
return this.entityType;
}
/**
* @param value type assigned to kong_restricciones
*/
public void setEntityType(PluginEntities value){
this.entityType = value;
}
/**
* @return Id type assigned to kong_restricciones
*/
public Long getIdType(){
return this.idType;
}
/**
* @param value type assigned to kong_restricciones
*/
public void setIdType(Long value){
this.idType = value;
}
/**
* @return summary assigned to kong_restrictions
*/
public String getSummary() {
return summary;
}
/**
* @param summary assigned to kong_restrictions
*/
public void setSummary(String summary) {
this.summary = summary;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy