All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.liferay.wiki.model.WikiNodeWrapper Maven / Gradle / Ivy

There is a newer version: 7.4.3.112-ga112
Show newest version
/**
 * 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.wiki.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;

/**
 * 

* This class is a wrapper for {@link WikiNode}. *

* * @author Brian Wing Shun Chan * @see WikiNode * @generated */ @ProviderType public class WikiNodeWrapper implements WikiNode, ModelWrapper { public WikiNodeWrapper(WikiNode wikiNode) { _wikiNode = wikiNode; } @Override public Class getModelClass() { return WikiNode.class; } @Override public String getModelClassName() { return WikiNode.class.getName(); } @Override public Map getModelAttributes() { Map attributes = new HashMap(); attributes.put("uuid", getUuid()); attributes.put("nodeId", getNodeId()); 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("name", getName()); attributes.put("description", getDescription()); attributes.put("lastPostDate", getLastPostDate()); attributes.put("lastPublishDate", getLastPublishDate()); attributes.put("status", getStatus()); attributes.put("statusByUserId", getStatusByUserId()); attributes.put("statusByUserName", getStatusByUserName()); attributes.put("statusDate", getStatusDate()); return attributes; } @Override public void setModelAttributes(Map attributes) { String uuid = (String)attributes.get("uuid"); if (uuid != null) { setUuid(uuid); } Long nodeId = (Long)attributes.get("nodeId"); if (nodeId != null) { setNodeId(nodeId); } 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); } String name = (String)attributes.get("name"); if (name != null) { setName(name); } String description = (String)attributes.get("description"); if (description != null) { setDescription(description); } Date lastPostDate = (Date)attributes.get("lastPostDate"); if (lastPostDate != null) { setLastPostDate(lastPostDate); } Date lastPublishDate = (Date)attributes.get("lastPublishDate"); if (lastPublishDate != null) { setLastPublishDate(lastPublishDate); } Integer status = (Integer)attributes.get("status"); if (status != null) { setStatus(status); } Long statusByUserId = (Long)attributes.get("statusByUserId"); if (statusByUserId != null) { setStatusByUserId(statusByUserId); } String statusByUserName = (String)attributes.get("statusByUserName"); if (statusByUserName != null) { setStatusByUserName(statusByUserName); } Date statusDate = (Date)attributes.get("statusDate"); if (statusDate != null) { setStatusDate(statusDate); } } @Override public com.liferay.portal.kernel.repository.model.Folder addAttachmentsFolder() throws com.liferay.portal.kernel.exception.PortalException { return _wikiNode.addAttachmentsFolder(); } @Override public Object clone() { return new WikiNodeWrapper((WikiNode)_wikiNode.clone()); } @Override public int compareTo(WikiNode wikiNode) { return _wikiNode.compareTo(wikiNode); } @Override public long getAttachmentsFolderId() { return _wikiNode.getAttachmentsFolderId(); } /** * Returns the company ID of this wiki node. * * @return the company ID of this wiki node */ @Override public long getCompanyId() { return _wikiNode.getCompanyId(); } /** * Returns the container model ID of this wiki node. * * @return the container model ID of this wiki node */ @Override public long getContainerModelId() { return _wikiNode.getContainerModelId(); } /** * Returns the container name of this wiki node. * * @return the container name of this wiki node */ @Override public String getContainerModelName() { return _wikiNode.getContainerModelName(); } /** * Returns the create date of this wiki node. * * @return the create date of this wiki node */ @Override public Date getCreateDate() { return _wikiNode.getCreateDate(); } @Override public java.util.List getDeletedAttachmentsFiles() throws com.liferay.portal.kernel.exception.PortalException { return _wikiNode.getDeletedAttachmentsFiles(); } /** * Returns the description of this wiki node. * * @return the description of this wiki node */ @Override public String getDescription() { return _wikiNode.getDescription(); } @Override public ExpandoBridge getExpandoBridge() { return _wikiNode.getExpandoBridge(); } /** * Returns the group ID of this wiki node. * * @return the group ID of this wiki node */ @Override public long getGroupId() { return _wikiNode.getGroupId(); } /** * Returns the last post date of this wiki node. * * @return the last post date of this wiki node */ @Override public Date getLastPostDate() { return _wikiNode.getLastPostDate(); } /** * Returns the last publish date of this wiki node. * * @return the last publish date of this wiki node */ @Override public Date getLastPublishDate() { return _wikiNode.getLastPublishDate(); } /** * Returns the modified date of this wiki node. * * @return the modified date of this wiki node */ @Override public Date getModifiedDate() { return _wikiNode.getModifiedDate(); } /** * Returns the name of this wiki node. * * @return the name of this wiki node */ @Override public String getName() { return _wikiNode.getName(); } /** * Returns the node ID of this wiki node. * * @return the node ID of this wiki node */ @Override public long getNodeId() { return _wikiNode.getNodeId(); } /** * Returns the parent container model ID of this wiki node. * * @return the parent container model ID of this wiki node */ @Override public long getParentContainerModelId() { return _wikiNode.getParentContainerModelId(); } /** * Returns the primary key of this wiki node. * * @return the primary key of this wiki node */ @Override public long getPrimaryKey() { return _wikiNode.getPrimaryKey(); } @Override public Serializable getPrimaryKeyObj() { return _wikiNode.getPrimaryKeyObj(); } /** * Returns the status of this wiki node. * * @return the status of this wiki node */ @Override public int getStatus() { return _wikiNode.getStatus(); } /** * Returns the status by user ID of this wiki node. * * @return the status by user ID of this wiki node */ @Override public long getStatusByUserId() { return _wikiNode.getStatusByUserId(); } /** * Returns the status by user name of this wiki node. * * @return the status by user name of this wiki node */ @Override public String getStatusByUserName() { return _wikiNode.getStatusByUserName(); } /** * Returns the status by user uuid of this wiki node. * * @return the status by user uuid of this wiki node */ @Override public String getStatusByUserUuid() { return _wikiNode.getStatusByUserUuid(); } /** * Returns the status date of this wiki node. * * @return the status date of this wiki node */ @Override public Date getStatusDate() { return _wikiNode.getStatusDate(); } /** * Returns the trash entry created when this wiki node was moved to the Recycle Bin. The trash entry may belong to one of the ancestors of this wiki node. * * @return the trash entry created when this wiki node was moved to the Recycle Bin */ @Override public com.liferay.trash.kernel.model.TrashEntry getTrashEntry() throws com.liferay.portal.kernel.exception.PortalException { return _wikiNode.getTrashEntry(); } /** * Returns the class primary key of the trash entry for this wiki node. * * @return the class primary key of the trash entry for this wiki node */ @Override public long getTrashEntryClassPK() { return _wikiNode.getTrashEntryClassPK(); } /** * Returns the trash handler for this wiki node. * * @return the trash handler for this wiki node * @deprecated As of Judson (7.1.x), with no direct replacement */ @Deprecated @Override public com.liferay.portal.kernel.trash.TrashHandler getTrashHandler() { return _wikiNode.getTrashHandler(); } /** * Returns the user ID of this wiki node. * * @return the user ID of this wiki node */ @Override public long getUserId() { return _wikiNode.getUserId(); } /** * Returns the user name of this wiki node. * * @return the user name of this wiki node */ @Override public String getUserName() { return _wikiNode.getUserName(); } /** * Returns the user uuid of this wiki node. * * @return the user uuid of this wiki node */ @Override public String getUserUuid() { return _wikiNode.getUserUuid(); } /** * Returns the uuid of this wiki node. * * @return the uuid of this wiki node */ @Override public String getUuid() { return _wikiNode.getUuid(); } @Override public int hashCode() { return _wikiNode.hashCode(); } /** * Returns true if this wiki node is approved. * * @return true if this wiki node is approved; false otherwise */ @Override public boolean isApproved() { return _wikiNode.isApproved(); } @Override public boolean isCachedModel() { return _wikiNode.isCachedModel(); } /** * Returns true if this wiki node is denied. * * @return true if this wiki node is denied; false otherwise */ @Override public boolean isDenied() { return _wikiNode.isDenied(); } /** * Returns true if this wiki node is a draft. * * @return true if this wiki node is a draft; false otherwise */ @Override public boolean isDraft() { return _wikiNode.isDraft(); } @Override public boolean isEscapedModel() { return _wikiNode.isEscapedModel(); } /** * Returns true if this wiki node is expired. * * @return true if this wiki node is expired; false otherwise */ @Override public boolean isExpired() { return _wikiNode.isExpired(); } /** * Returns true if this wiki node is inactive. * * @return true if this wiki node is inactive; false otherwise */ @Override public boolean isInactive() { return _wikiNode.isInactive(); } /** * Returns true if this wiki node is incomplete. * * @return true if this wiki node is incomplete; false otherwise */ @Override public boolean isIncomplete() { return _wikiNode.isIncomplete(); } /** * Returns true if this wiki node is in the Recycle Bin. * * @return true if this wiki node is in the Recycle Bin; false otherwise */ @Override public boolean isInTrash() { return _wikiNode.isInTrash(); } /** * Returns true if the parent of this wiki node is in the Recycle Bin. * * @return true if the parent of this wiki node is in the Recycle Bin; false otherwise */ @Override public boolean isInTrashContainer() { return _wikiNode.isInTrashContainer(); } @Override public boolean isInTrashExplicitly() { return _wikiNode.isInTrashExplicitly(); } @Override public boolean isInTrashImplicitly() { return _wikiNode.isInTrashImplicitly(); } @Override public boolean isNew() { return _wikiNode.isNew(); } /** * Returns true if this wiki node is pending. * * @return true if this wiki node is pending; false otherwise */ @Override public boolean isPending() { return _wikiNode.isPending(); } /** * Returns true if this wiki node is scheduled. * * @return true if this wiki node is scheduled; false otherwise */ @Override public boolean isScheduled() { return _wikiNode.isScheduled(); } @Override public void persist() { _wikiNode.persist(); } @Override public void setCachedModel(boolean cachedModel) { _wikiNode.setCachedModel(cachedModel); } /** * Sets the company ID of this wiki node. * * @param companyId the company ID of this wiki node */ @Override public void setCompanyId(long companyId) { _wikiNode.setCompanyId(companyId); } /** * Sets the container model ID of this wiki node. * * @param containerModelId the container model ID of this wiki node */ @Override public void setContainerModelId(long containerModelId) { _wikiNode.setContainerModelId(containerModelId); } /** * Sets the create date of this wiki node. * * @param createDate the create date of this wiki node */ @Override public void setCreateDate(Date createDate) { _wikiNode.setCreateDate(createDate); } /** * Sets the description of this wiki node. * * @param description the description of this wiki node */ @Override public void setDescription(String description) { _wikiNode.setDescription(description); } @Override public void setExpandoBridgeAttributes( com.liferay.portal.kernel.model.BaseModel baseModel) { _wikiNode.setExpandoBridgeAttributes(baseModel); } @Override public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge) { _wikiNode.setExpandoBridgeAttributes(expandoBridge); } @Override public void setExpandoBridgeAttributes(ServiceContext serviceContext) { _wikiNode.setExpandoBridgeAttributes(serviceContext); } /** * Sets the group ID of this wiki node. * * @param groupId the group ID of this wiki node */ @Override public void setGroupId(long groupId) { _wikiNode.setGroupId(groupId); } /** * Sets the last post date of this wiki node. * * @param lastPostDate the last post date of this wiki node */ @Override public void setLastPostDate(Date lastPostDate) { _wikiNode.setLastPostDate(lastPostDate); } /** * Sets the last publish date of this wiki node. * * @param lastPublishDate the last publish date of this wiki node */ @Override public void setLastPublishDate(Date lastPublishDate) { _wikiNode.setLastPublishDate(lastPublishDate); } /** * Sets the modified date of this wiki node. * * @param modifiedDate the modified date of this wiki node */ @Override public void setModifiedDate(Date modifiedDate) { _wikiNode.setModifiedDate(modifiedDate); } /** * Sets the name of this wiki node. * * @param name the name of this wiki node */ @Override public void setName(String name) { _wikiNode.setName(name); } @Override public void setNew(boolean n) { _wikiNode.setNew(n); } /** * Sets the node ID of this wiki node. * * @param nodeId the node ID of this wiki node */ @Override public void setNodeId(long nodeId) { _wikiNode.setNodeId(nodeId); } /** * Sets the parent container model ID of this wiki node. * * @param parentContainerModelId the parent container model ID of this wiki node */ @Override public void setParentContainerModelId(long parentContainerModelId) { _wikiNode.setParentContainerModelId(parentContainerModelId); } /** * Sets the primary key of this wiki node. * * @param primaryKey the primary key of this wiki node */ @Override public void setPrimaryKey(long primaryKey) { _wikiNode.setPrimaryKey(primaryKey); } @Override public void setPrimaryKeyObj(Serializable primaryKeyObj) { _wikiNode.setPrimaryKeyObj(primaryKeyObj); } /** * Sets the status of this wiki node. * * @param status the status of this wiki node */ @Override public void setStatus(int status) { _wikiNode.setStatus(status); } /** * Sets the status by user ID of this wiki node. * * @param statusByUserId the status by user ID of this wiki node */ @Override public void setStatusByUserId(long statusByUserId) { _wikiNode.setStatusByUserId(statusByUserId); } /** * Sets the status by user name of this wiki node. * * @param statusByUserName the status by user name of this wiki node */ @Override public void setStatusByUserName(String statusByUserName) { _wikiNode.setStatusByUserName(statusByUserName); } /** * Sets the status by user uuid of this wiki node. * * @param statusByUserUuid the status by user uuid of this wiki node */ @Override public void setStatusByUserUuid(String statusByUserUuid) { _wikiNode.setStatusByUserUuid(statusByUserUuid); } /** * Sets the status date of this wiki node. * * @param statusDate the status date of this wiki node */ @Override public void setStatusDate(Date statusDate) { _wikiNode.setStatusDate(statusDate); } /** * Sets the user ID of this wiki node. * * @param userId the user ID of this wiki node */ @Override public void setUserId(long userId) { _wikiNode.setUserId(userId); } /** * Sets the user name of this wiki node. * * @param userName the user name of this wiki node */ @Override public void setUserName(String userName) { _wikiNode.setUserName(userName); } /** * Sets the user uuid of this wiki node. * * @param userUuid the user uuid of this wiki node */ @Override public void setUserUuid(String userUuid) { _wikiNode.setUserUuid(userUuid); } /** * Sets the uuid of this wiki node. * * @param uuid the uuid of this wiki node */ @Override public void setUuid(String uuid) { _wikiNode.setUuid(uuid); } @Override public com.liferay.portal.kernel.model.CacheModel toCacheModel() { return _wikiNode.toCacheModel(); } @Override public WikiNode toEscapedModel() { return new WikiNodeWrapper(_wikiNode.toEscapedModel()); } @Override public String toString() { return _wikiNode.toString(); } @Override public WikiNode toUnescapedModel() { return new WikiNodeWrapper(_wikiNode.toUnescapedModel()); } @Override public String toXmlString() { return _wikiNode.toXmlString(); } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof WikiNodeWrapper)) { return false; } WikiNodeWrapper wikiNodeWrapper = (WikiNodeWrapper)obj; if (Objects.equals(_wikiNode, wikiNodeWrapper._wikiNode)) { return true; } return false; } @Override public StagedModelType getStagedModelType() { return _wikiNode.getStagedModelType(); } @Override public WikiNode getWrappedModel() { return _wikiNode; } @Override public boolean isEntityCacheEnabled() { return _wikiNode.isEntityCacheEnabled(); } @Override public boolean isFinderCacheEnabled() { return _wikiNode.isFinderCacheEnabled(); } @Override public void resetOriginalValues() { _wikiNode.resetOriginalValues(); } private final WikiNode _wikiNode; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy