/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.liferay.knowledge.base.model; import aQute.bnd.annotation.ProviderType; import com.liferay.expando.kernel.model.ExpandoBridge; import com.liferay.exportimport.kernel.lar.StagedModelType; import com.liferay.portal.kernel.model.ModelWrapper; import com.liferay.portal.kernel.service.ServiceContext; import java.io.Serializable; import java.util.Date; import java.util.HashMap; import java.util.Map; import java.util.Objects; /** * <p> * This class is a wrapper for {@link KBComment}. * </p> * * @author Brian Wing Shun Chan * @see KBComment * @generated */ @ProviderType public class KBCommentWrapper implements KBComment, ModelWrapper<KBComment> { public KBCommentWrapper(KBComment kbComment) { _kbComment = kbComment; } @Override public Class<?> getModelClass() { return KBComment.class; } @Override public String getModelClassName() { return KBComment.class.getName(); } @Override public Map<String, Object> getModelAttributes() { Map<String, Object> attributes = new HashMap<String, Object>(); attributes.put("uuid", getUuid()); attributes.put("kbCommentId", getKbCommentId()); attributes.put("groupId", getGroupId()); attributes.put("companyId", getCompanyId()); attributes.put("userId", getUserId()); attributes.put("userName", getUserName()); attributes.put("createDate", getCreateDate()); attributes.put("modifiedDate", getModifiedDate()); attributes.put("classNameId", getClassNameId()); attributes.put("classPK", getClassPK()); attributes.put("content", getContent()); attributes.put("userRating", getUserRating()); attributes.put("lastPublishDate", getLastPublishDate()); attributes.put("status", getStatus()); return attributes; } @Override public void setModelAttributes(Map<String, Object> attributes) { String uuid = (String)attributes.get("uuid"); if (uuid != null) { setUuid(uuid); } Long kbCommentId = (Long)attributes.get("kbCommentId"); if (kbCommentId != null) { setKbCommentId(kbCommentId); } Long groupId = (Long)attributes.get("groupId"); if (groupId != null) { setGroupId(groupId); } Long companyId = (Long)attributes.get("companyId"); if (companyId != null) { setCompanyId(companyId); } Long userId = (Long)attributes.get("userId"); if (userId != null) { setUserId(userId); } String userName = (String)attributes.get("userName"); if (userName != null) { setUserName(userName); } Date createDate = (Date)attributes.get("createDate"); if (createDate != null) { setCreateDate(createDate); } Date modifiedDate = (Date)attributes.get("modifiedDate"); if (modifiedDate != null) { setModifiedDate(modifiedDate); } Long classNameId = (Long)attributes.get("classNameId"); if (classNameId != null) { setClassNameId(classNameId); } Long classPK = (Long)attributes.get("classPK"); if (classPK != null) { setClassPK(classPK); } String content = (String)attributes.get("content"); if (content != null) { setContent(content); } Integer userRating = (Integer)attributes.get("userRating"); if (userRating != null) { setUserRating(userRating); } Date lastPublishDate = (Date)attributes.get("lastPublishDate"); if (lastPublishDate != null) { setLastPublishDate(lastPublishDate); } Integer status = (Integer)attributes.get("status"); if (status != null) { setStatus(status); } } @Override public KBComment toEscapedModel() { return new KBCommentWrapper(_kbComment.toEscapedModel()); } @Override public KBComment toUnescapedModel() { return new KBCommentWrapper(_kbComment.toUnescapedModel()); } @Override public boolean isCachedModel() { return _kbComment.isCachedModel(); } @Override public boolean isEscapedModel() { return _kbComment.isEscapedModel(); } @Override public boolean isNew() { return _kbComment.isNew(); } @Override public ExpandoBridge getExpandoBridge() { return _kbComment.getExpandoBridge(); } @Override public com.liferay.portal.kernel.model.CacheModel<KBComment> toCacheModel() { return _kbComment.toCacheModel(); } @Override public int compareTo(KBComment kbComment) { return _kbComment.compareTo(kbComment); } /** * Returns the status of this kb comment. * * @return the status of this kb comment */ @Override public int getStatus() { return _kbComment.getStatus(); } /** * Returns the user rating of this kb comment. * * @return the user rating of this kb comment */ @Override public int getUserRating() { return _kbComment.getUserRating(); } @Override public int hashCode() { return _kbComment.hashCode(); } @Override public Serializable getPrimaryKeyObj() { return _kbComment.getPrimaryKeyObj(); } @Override public java.lang.Object clone() { return new KBCommentWrapper((KBComment)_kbComment.clone()); } /** * Returns the fully qualified class name of this kb comment. * * @return the fully qualified class name of this kb comment */ @Override public java.lang.String getClassName() { return _kbComment.getClassName(); } /** * Returns the content of this kb comment. * * @return the content of this kb comment */ @Override public java.lang.String getContent() { return _kbComment.getContent(); } /** * Returns the user name of this kb comment. * * @return the user name of this kb comment */ @Override public java.lang.String getUserName() { return _kbComment.getUserName(); } /** * Returns the user uuid of this kb comment. * * @return the user uuid of this kb comment */ @Override public java.lang.String getUserUuid() { return _kbComment.getUserUuid(); } /** * Returns the uuid of this kb comment. * * @return the uuid of this kb comment */ @Override public java.lang.String getUuid() { return _kbComment.getUuid(); } @Override public java.lang.String toString() { return _kbComment.toString(); } @Override public java.lang.String toXmlString() { return _kbComment.toXmlString(); } /** * Returns the create date of this kb comment. * * @return the create date of this kb comment */ @Override public Date getCreateDate() { return _kbComment.getCreateDate(); } /** * Returns the last publish date of this kb comment. * * @return the last publish date of this kb comment */ @Override public Date getLastPublishDate() { return _kbComment.getLastPublishDate(); } /** * Returns the modified date of this kb comment. * * @return the modified date of this kb comment */ @Override public Date getModifiedDate() { return _kbComment.getModifiedDate(); } /** * Returns the class name ID of this kb comment. * * @return the class name ID of this kb comment */ @Override public long getClassNameId() { return _kbComment.getClassNameId(); } /** * Returns the class pk of this kb comment. * * @return the class pk of this kb comment */ @Override public long getClassPK() { return _kbComment.getClassPK(); } /** * Returns the company ID of this kb comment. * * @return the company ID of this kb comment */ @Override public long getCompanyId() { return _kbComment.getCompanyId(); } /** * Returns the group ID of this kb comment. * * @return the group ID of this kb comment */ @Override public long getGroupId() { return _kbComment.getGroupId(); } /** * Returns the kb comment ID of this kb comment. * * @return the kb comment ID of this kb comment */ @Override public long getKbCommentId() { return _kbComment.getKbCommentId(); } /** * Returns the primary key of this kb comment. * * @return the primary key of this kb comment */ @Override public long getPrimaryKey() { return _kbComment.getPrimaryKey(); } /** * Returns the user ID of this kb comment. * * @return the user ID of this kb comment */ @Override public long getUserId() { return _kbComment.getUserId(); } @Override public void persist() { _kbComment.persist(); } @Override public void setCachedModel(boolean cachedModel) { _kbComment.setCachedModel(cachedModel); } @Override public void setClassName(java.lang.String className) { _kbComment.setClassName(className); } /** * Sets the class name ID of this kb comment. * * @param classNameId the class name ID of this kb comment */ @Override public void setClassNameId(long classNameId) { _kbComment.setClassNameId(classNameId); } /** * Sets the class pk of this kb comment. * * @param classPK the class pk of this kb comment */ @Override public void setClassPK(long classPK) { _kbComment.setClassPK(classPK); } /** * Sets the company ID of this kb comment. * * @param companyId the company ID of this kb comment */ @Override public void setCompanyId(long companyId) { _kbComment.setCompanyId(companyId); } /** * Sets the content of this kb comment. * * @param content the content of this kb comment */ @Override public void setContent(java.lang.String content) { _kbComment.setContent(content); } /** * Sets the create date of this kb comment. * * @param createDate the create date of this kb comment */ @Override public void setCreateDate(Date createDate) { _kbComment.setCreateDate(createDate); } @Override public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge) { _kbComment.setExpandoBridgeAttributes(expandoBridge); } @Override public void setExpandoBridgeAttributes( com.liferay.portal.kernel.model.BaseModel<?> baseModel) { _kbComment.setExpandoBridgeAttributes(baseModel); } @Override public void setExpandoBridgeAttributes(ServiceContext serviceContext) { _kbComment.setExpandoBridgeAttributes(serviceContext); } /** * Sets the group ID of this kb comment. * * @param groupId the group ID of this kb comment */ @Override public void setGroupId(long groupId) { _kbComment.setGroupId(groupId); } /** * Sets the kb comment ID of this kb comment. * * @param kbCommentId the kb comment ID of this kb comment */ @Override public void setKbCommentId(long kbCommentId) { _kbComment.setKbCommentId(kbCommentId); } /** * Sets the last publish date of this kb comment. * * @param lastPublishDate the last publish date of this kb comment */ @Override public void setLastPublishDate(Date lastPublishDate) { _kbComment.setLastPublishDate(lastPublishDate); } /** * Sets the modified date of this kb comment. * * @param modifiedDate the modified date of this kb comment */ @Override public void setModifiedDate(Date modifiedDate) { _kbComment.setModifiedDate(modifiedDate); } @Override public void setNew(boolean n) { _kbComment.setNew(n); } /** * Sets the primary key of this kb comment. * * @param primaryKey the primary key of this kb comment */ @Override public void setPrimaryKey(long primaryKey) { _kbComment.setPrimaryKey(primaryKey); } @Override public void setPrimaryKeyObj(Serializable primaryKeyObj) { _kbComment.setPrimaryKeyObj(primaryKeyObj); } /** * Sets the status of this kb comment. * * @param status the status of this kb comment */ @Override public void setStatus(int status) { _kbComment.setStatus(status); } /** * Sets the user ID of this kb comment. * * @param userId the user ID of this kb comment */ @Override public void setUserId(long userId) { _kbComment.setUserId(userId); } /** * Sets the user name of this kb comment. * * @param userName the user name of this kb comment */ @Override public void setUserName(java.lang.String userName) { _kbComment.setUserName(userName); } /** * Sets the user rating of this kb comment. * * @param userRating the user rating of this kb comment */ @Override public void setUserRating(int userRating) { _kbComment.setUserRating(userRating); } /** * Sets the user uuid of this kb comment. * * @param userUuid the user uuid of this kb comment */ @Override public void setUserUuid(java.lang.String userUuid) { _kbComment.setUserUuid(userUuid); } /** * Sets the uuid of this kb comment. * * @param uuid the uuid of this kb comment */ @Override public void setUuid(java.lang.String uuid) { _kbComment.setUuid(uuid); } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof KBCommentWrapper)) { return false; } KBCommentWrapper kbCommentWrapper = (KBCommentWrapper)obj; if (Objects.equals(_kbComment, kbCommentWrapper._kbComment)) { return true; } return false; } @Override public StagedModelType getStagedModelType() { return _kbComment.getStagedModelType(); } @Override public KBComment getWrappedModel() { return _kbComment; } @Override public boolean isEntityCacheEnabled() { return _kbComment.isEntityCacheEnabled(); } @Override public boolean isFinderCacheEnabled() { return _kbComment.isFinderCacheEnabled(); } @Override public void resetOriginalValues() { _kbComment.resetOriginalValues(); } private final KBComment _kbComment; }