com.liferay.comment.web.internal.jsonws.CommentJSONWS Maven / Gradle / Ivy
/**
* SPDX-FileCopyrightText: (c) 2000 Liferay, Inc. https://liferay.com
* SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06
*/
package com.liferay.comment.web.internal.jsonws;
import com.liferay.portal.kernel.comment.DiscussionComment;
import com.liferay.portal.kernel.json.JSON;
import java.util.Date;
/**
* @author Adolfo Pérez
*/
@JSON(strict = true)
public class CommentJSONWS {
public CommentJSONWS() {
}
public CommentJSONWS(DiscussionComment discussionComment) {
setBody(discussionComment.getBody());
setCommentId(discussionComment.getCommentId());
setCreateDate(discussionComment.getCreateDate());
setDescendantCommentsCount(
discussionComment.getDescendantCommentsCount());
setModifiedDate(discussionComment.getModifiedDate());
setParentCommentId(discussionComment.getParentCommentId());
setUserId(discussionComment.getUserId());
setUserName(discussionComment.getUserName());
}
@JSON
public String getBody() {
return _body;
}
@JSON
public long getCommentId() {
return _commentId;
}
@JSON
public Date getCreateDate() {
return _createDate;
}
@JSON
public int getDescendantCommentsCount() {
return _descendantCommentsCount;
}
@JSON
public Date getModifiedDate() {
return _modifiedDate;
}
@JSON
public long getParentCommentId() {
return _parentCommentId;
}
@JSON
public long getUserId() {
return _userId;
}
@JSON
public String getUserName() {
return _userName;
}
public void setBody(String body) {
_body = body;
}
public void setCommentId(long commentId) {
_commentId = commentId;
}
public void setCreateDate(Date createDate) {
_createDate = createDate;
}
public void setDescendantCommentsCount(int descendantCommentsCount) {
_descendantCommentsCount = descendantCommentsCount;
}
public void setModifiedDate(Date modifiedDate) {
_modifiedDate = modifiedDate;
}
public void setParentCommentId(long parentCommentId) {
_parentCommentId = parentCommentId;
}
public void setUserId(long userId) {
_userId = userId;
}
public void setUserName(String userName) {
_userName = userName;
}
private String _body;
private long _commentId;
private Date _createDate;
private int _descendantCommentsCount;
private Date _modifiedDate;
private long _parentCommentId;
private long _userId;
private String _userName;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy