package org.inbio.m3s.model.ara; import java.io.Serializable; import java.util.Date; /** * * @author jgutierrez * */ public class Profile implements Serializable { private static final long serialVersionUID = 1L; private Integer profileId; private String name; private String description; private Date creationDate; private String createdBy; private Date lastModificationDate; private String lastModificationBy; private Integer objVersion; /** * */ public Profile() { super(); } /** * @param profileId * @param name * @param objVersion */ public Profile(Integer profileId, String name, Integer objVersion) { super(); this.profileId = profileId; this.name = name; this.objVersion = objVersion; } /** * @param profileId * @param name * @param description * @param creationDate * @param createdBy * @param lastModificationDate * @param lastModificationBy * @param objVersion */ public Profile(Integer profileId, String name, String description, Date creationDate, String createdBy, Date lastModificationDate, String lastModificationBy, Integer objVersion) { super(); this.profileId = profileId; this.name = name; this.description = description; this.creationDate = creationDate; this.createdBy = createdBy; this.lastModificationDate = lastModificationDate; this.lastModificationBy = lastModificationBy; this.objVersion = objVersion; } /** * @return the createdBy */ public String getCreatedBy() { return createdBy; } /** * @param createdBy the createdBy to set */ public void setCreatedBy(String createdBy) { this.createdBy = createdBy; } /** * @return the creationDate */ public Date getCreationDate() { return creationDate; } /** * @param creationDate the creationDate to set */ public void setCreationDate(Date creationDate) { this.creationDate = creationDate; } /** * @return the description */ public String getDescription() { return description; } /** * @param description the description to set */ public void setDescription(String description) { this.description = description; } /** * @return the lastModificationBy */ public String getLastModificationBy() { return lastModificationBy; } /** * @param lastModificationBy the lastModificationBy to set */ public void setLastModificationBy(String lastModificationBy) { this.lastModificationBy = lastModificationBy; } /** * @return the lastModificationDate */ public Date getLastModificationDate() { return lastModificationDate; } /** * @param lastModificationDate the lastModificationDate to set */ public void setLastModificationDate(Date lastModificationDate) { this.lastModificationDate = lastModificationDate; } /** * @return the name */ public String getName() { return name; } /** * @param name the name to set */ public void setName(String name) { this.name = name; } /** * @return the objVersion */ public Integer getObjVersion() { return objVersion; } /** * @param objVersion the objVersion to set */ public void setObjVersion(Integer objVersion) { this.objVersion = objVersion; } /** * @return the profileId */ public Integer getProfileId() { return profileId; } /** * @param profileId the profileId to set */ public void setProfileId(Integer profileId) { this.profileId = profileId; } }