/* Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. The MIT License (MIT) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ package com.microsoftopentechnologies.azchat.web.data.beans; import java.io.Serializable; /** * This data bean represents the data for user comments on the message. * * @author Dnyaneshwar_Pawar */ public class MessageCommentBean extends BaseBean implements Serializable { /** * Generated serial version id. */ private static final long serialVersionUID = 1895811782719368781L; private String msgID; private String friendID; private String friendName; private String photoUrl; private String comment; /** * @return the msgID */ public String getMsgID() { return msgID; } /** * @param msgID * the msgID to set */ public void setMsgID(String msgID) { this.msgID = msgID; } /** * @return the friendID */ public String getFriendID() { return friendID; } /** * @param friendID * the friendID to set */ public void setFriendID(String friendID) { this.friendID = friendID; } /** * @return the friendName */ public String getFriendName() { return friendName; } /** * @param friendName * the friendName to set */ public void setFriendName(String friendName) { this.friendName = friendName; } /** * @return the photoUrl */ public String getPhotoUrl() { return photoUrl; } /** * @param photoUrl * the photoUrl to set */ public void setPhotoUrl(String photoUrl) { this.photoUrl = photoUrl; } /** * @return the comment */ public String getComment() { return comment; } /** * @param comment * the comment to set */ public void setComment(String comment) { this.comment = comment; } }