com.alogient.cameleon.sdk.community.blog.vo.ArticleVo Maven / Gradle / Ivy
The newest version!
package com.alogient.cameleon.sdk.community.blog.vo;
import java.io.Serializable;
import java.util.Date;
import java.util.List;
public class ArticleVo implements Serializable {
private Integer id;
private String title;
private String text;
private Date lastModified;
private List comments;
private String authorId;
private String authorFirstName;
private String authorLastName;
private List tags;
/**
* @return the Id
*/
public Integer getId() {
return id;
}
/**
* @param id id to set
*/
public void setId(Integer id) {
this.id = id;
}
/**
* @return the title
*/
public String getTitle() {
return title;
}
/**
* @param title the title to set
*/
public void setTitle(String title) {
this.title = title;
}
/**
* @return the text
*/
public String getText() {
return text;
}
/**
* @param text the text to set
*/
public void setText(String text) {
this.text = text;
}
/**
* @return the lastModified date
*/
public Date getLastModified() {
return lastModified;
}
/**
* @param lastModified the lastModified to set
*/
public void setLastModified(Date lastModified) {
this.lastModified = lastModified;
}
/**
* @return a list of comments
*/
public List getComments() {
return comments;
}
/**
* @param comments a list of comments
*/
public void setComments(List comments) {
this.comments = comments;
}
/**
* @return the authorId
*/
public String getAuthorId() {
return authorId;
}
/**
* @param authorId the authorId
*/
public void setAuthorId(String authorId) {
this.authorId = authorId;
}
/**
* @return the authorFirstName
*/
public String getAuthorFirstName() {
return authorFirstName;
}
/**
* @param authorFirstName the authorFirstName
*/
public void setAuthorFirstName(String authorFirstName) {
this.authorFirstName = authorFirstName;
}
/**
* @return the authorLastName
*/
public String getAuthorLastName() {
return authorLastName;
}
/**
* @param authorLastName the authorLastName to set
*/
public void setAuthorLastName(String authorLastName) {
this.authorLastName = authorLastName;
}
/**
* @return the list of tag
*/
public List getTags() {
return tags;
}
/**
* @param tags the tags to set
*/
public void setTags(List tags) {
this.tags = tags;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy