com.quamto.jira.data.design.entity.PackageEntity Maven / Gradle / Ivy
The newest version!
package com.quamto.jira.data.design.entity;
import com.quamto.entity.BaseEntity;
public class PackageEntity extends BaseEntity {
private String name = null;
private String description = null;
private Long idParent = null;
private Long idProject = null;
private Long idOwner = null;
private String idUser = null;
/**
* @return name assigned to design models
*/
public String getName(){
return this.name;
}
/**
* @param value assigned to design models
*/
public void setName(String value){
this.name = value;
}
/**
* @return description assigned to design models
*/
public String getDescription(){
return this.description;
}
/**
* @param value assigned to design models
*/
public void setDescription(String value){
this.description = value;
}
/**
* @return idParentPackage assigned to design models
*/
public long getIdParent(){
return this.idParent;
}
/**
* @param value assigned to design models
*/
public void setIdParent(long value){
this.idParent = value;
}
/**
* @return idProject project assigned
*/
public Long getIdProject(){
return this.idProject;
}
/**
* @param value project assigned
*/
public void setIdProject(Long value){
this.idProject = value;
}
/**
* @return the idOwner of the package
*/
public Long getIdOwner() {
return idOwner;
}
/**
* @param idOwner the idOwner to set of the package
*/
public void setIdOwner(Long idOwner) {
this.idOwner = idOwner;
}
/**
* @return the idUser that creates the element
*/
public String getIdUser() {
return idUser;
}
/**
* @param idUser that creates the element
*/
public void setIdUser(String idUser) {
this.idUser = idUser;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy