com.quamto.jira.data.time.entity.TeamsEntity Maven / Gradle / Ivy
The newest version!
package com.quamto.jira.data.time.entity;
import com.quamto.entity.BaseEntity;
import com.quamto.jira.data.common.JEnumerators.YesNo;
public class TeamsEntity extends BaseEntity {
private String name = null;
private String description = null;
private String leader = null;
private Long idOwner = null;
private Long idAvatar = null;
private YesNo allowAllProjects = null;
/**
* @return the name
*/
public String getName() {
return name;
}
/**
* @param name the name to set
*/
public void setName(String name) {
this.name = name;
}
/**
* @return the leader
*/
public String getLeader() {
return leader;
}
/**
* @param leader the leader to set
*/
public void setLeader(String leader) {
this.leader = leader;
}
/**
* @return the description
*/
public String getDescription() {
return description;
}
/**
* @param description the description to set
*/
public void setDescription(String description) {
this.description = description;
}
/**
* @return the idOwner
*/
public Long getIdOwner() {
return idOwner;
}
/**
* @param idOwner the idOwner to set
*/
public void setIdOwner(Long idOwner) {
this.idOwner = idOwner;
}
/**
* @return the idAvatar
*/
public Long getIdAvatar() {
return idAvatar;
}
/**
* @param idAvatar the idAvatar to set
*/
public void setIdAvatar(Long idAvatar) {
this.idAvatar = idAvatar;
}
/**
* @return the allowAllProjects
*/
public YesNo getAllowAllProjects() {
return allowAllProjects;
}
/**
* @param allowAllProjects the allowAllProjects to set
*/
public void setAllowAllProjects(YesNo allowAllProjects) {
this.allowAllProjects = allowAllProjects;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy