/* * * Copyright 2013 Entando S.r.l. (http://www.entando.com) All rights reserved. * * This file is part of Entando Enterprise Edition software. * You can redistribute it and/or modify it * under the terms of the Entando's EULA * * See the file License for the specific language governing permissions * and limitations under the License * * * * Copyright 2013 Entando S.r.l. (http://www.entando.com) All rights reserved. * */ package com.agiletec.plugins.jpwebdynamicform.aps.system.services.message.model; import java.util.Date; import com.agiletec.aps.system.common.entity.model.ApsEntityRecord; /** * The message record Value Object containing the data as taken from the DB. * @author E.Mezzano */ public class MessageRecordVO extends ApsEntityRecord { /** * returns the username of the author of the message. * @return The username of the author of the message. */ public String getUsername() { return _username; } /** * Sets the username of the author of the message. * @param username The username of the author of the message. */ public void setUsername(String username) { this._username = username; } /** * Returns the date of creation of the message. * @return The date of creation of the message. */ public Date getCreationDate() { return _creationDate; } /** * Returns the date of creation of the message. * @param creationDate The date of creation of the message. */ public void setCreationDate(Date creationDate) { this._creationDate = creationDate; } /** * Returns the lang code of the author of the message. * @return The lang code of the author of the message. */ public String getLangCode() { return _langCode; } /** * Sets the lang code of the author of the message. * @param langCode The lang code of the author of the message. */ public void setLangCode(String langCode) { this._langCode = langCode; } private String _username; private Date _creationDate; private String _langCode; }