/** * 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.polls.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 PollsQuestion}. * </p> * * @author Brian Wing Shun Chan * @see PollsQuestion * @generated */ @ProviderType public class PollsQuestionWrapper implements PollsQuestion, ModelWrapper<PollsQuestion> { public PollsQuestionWrapper(PollsQuestion pollsQuestion) { _pollsQuestion = pollsQuestion; } @Override public Class<?> getModelClass() { return PollsQuestion.class; } @Override public String getModelClassName() { return PollsQuestion.class.getName(); } @Override public Map<String, Object> getModelAttributes() { Map<String, Object> attributes = new HashMap<String, Object>(); attributes.put("uuid", getUuid()); attributes.put("questionId", getQuestionId()); 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("title", getTitle()); attributes.put("description", getDescription()); attributes.put("expirationDate", getExpirationDate()); attributes.put("lastPublishDate", getLastPublishDate()); attributes.put("lastVoteDate", getLastVoteDate()); return attributes; } @Override public void setModelAttributes(Map<String, Object> attributes) { String uuid = (String)attributes.get("uuid"); if (uuid != null) { setUuid(uuid); } Long questionId = (Long)attributes.get("questionId"); if (questionId != null) { setQuestionId(questionId); } 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 title = (String)attributes.get("title"); if (title != null) { setTitle(title); } String description = (String)attributes.get("description"); if (description != null) { setDescription(description); } Date expirationDate = (Date)attributes.get("expirationDate"); if (expirationDate != null) { setExpirationDate(expirationDate); } Date lastPublishDate = (Date)attributes.get("lastPublishDate"); if (lastPublishDate != null) { setLastPublishDate(lastPublishDate); } Date lastVoteDate = (Date)attributes.get("lastVoteDate"); if (lastVoteDate != null) { setLastVoteDate(lastVoteDate); } } @Override public PollsQuestion toEscapedModel() { return new PollsQuestionWrapper(_pollsQuestion.toEscapedModel()); } @Override public PollsQuestion toUnescapedModel() { return new PollsQuestionWrapper(_pollsQuestion.toUnescapedModel()); } @Override public boolean isCachedModel() { return _pollsQuestion.isCachedModel(); } @Override public boolean isEscapedModel() { return _pollsQuestion.isEscapedModel(); } @Override public boolean isExpired() { return _pollsQuestion.isExpired(); } @Override public boolean isExpired(ServiceContext serviceContext, Date defaultCreateDate) { return _pollsQuestion.isExpired(serviceContext, defaultCreateDate); } @Override public boolean isNew() { return _pollsQuestion.isNew(); } @Override public ExpandoBridge getExpandoBridge() { return _pollsQuestion.getExpandoBridge(); } @Override public com.liferay.portal.kernel.model.CacheModel<PollsQuestion> toCacheModel() { return _pollsQuestion.toCacheModel(); } @Override public int compareTo(PollsQuestion pollsQuestion) { return _pollsQuestion.compareTo(pollsQuestion); } @Override public int getVotesCount() { return _pollsQuestion.getVotesCount(); } @Override public int hashCode() { return _pollsQuestion.hashCode(); } @Override public Serializable getPrimaryKeyObj() { return _pollsQuestion.getPrimaryKeyObj(); } @Override public java.lang.Object clone() { return new PollsQuestionWrapper((PollsQuestion)_pollsQuestion.clone()); } @Override public java.lang.String getDefaultLanguageId() { return _pollsQuestion.getDefaultLanguageId(); } /** * Returns the description of this polls question. * * @return the description of this polls question */ @Override public java.lang.String getDescription() { return _pollsQuestion.getDescription(); } /** * Returns the localized description of this polls question in the language. Uses the default language if no localization exists for the requested language. * * @param languageId the ID of the language * @return the localized description of this polls question */ @Override public java.lang.String getDescription(java.lang.String languageId) { return _pollsQuestion.getDescription(languageId); } /** * Returns the localized description of this polls question in the language, optionally using the default language if no localization exists for the requested language. * * @param languageId the ID of the language * @param useDefault whether to use the default language if no localization exists for the requested language * @return the localized description of this polls question */ @Override public java.lang.String getDescription(java.lang.String languageId, boolean useDefault) { return _pollsQuestion.getDescription(languageId, useDefault); } /** * Returns the localized description of this polls question in the language. Uses the default language if no localization exists for the requested language. * * @param locale the locale of the language * @return the localized description of this polls question */ @Override public java.lang.String getDescription(java.util.Locale locale) { return _pollsQuestion.getDescription(locale); } /** * Returns the localized description of this polls question in the language, optionally using the default language if no localization exists for the requested language. * * @param locale the local of the language * @param useDefault whether to use the default language if no localization exists for the requested language * @return the localized description of this polls question. If <code>useDefault</code> is <code>false</code> and no localization exists for the requested language, an empty string will be returned. */ @Override public java.lang.String getDescription(java.util.Locale locale, boolean useDefault) { return _pollsQuestion.getDescription(locale, useDefault); } @Override public java.lang.String getDescriptionCurrentLanguageId() { return _pollsQuestion.getDescriptionCurrentLanguageId(); } @Override public java.lang.String getDescriptionCurrentValue() { return _pollsQuestion.getDescriptionCurrentValue(); } /** * Returns the title of this polls question. * * @return the title of this polls question */ @Override public java.lang.String getTitle() { return _pollsQuestion.getTitle(); } /** * Returns the localized title of this polls question in the language. Uses the default language if no localization exists for the requested language. * * @param languageId the ID of the language * @return the localized title of this polls question */ @Override public java.lang.String getTitle(java.lang.String languageId) { return _pollsQuestion.getTitle(languageId); } /** * Returns the localized title of this polls question in the language, optionally using the default language if no localization exists for the requested language. * * @param languageId the ID of the language * @param useDefault whether to use the default language if no localization exists for the requested language * @return the localized title of this polls question */ @Override public java.lang.String getTitle(java.lang.String languageId, boolean useDefault) { return _pollsQuestion.getTitle(languageId, useDefault); } /** * Returns the localized title of this polls question in the language. Uses the default language if no localization exists for the requested language. * * @param locale the locale of the language * @return the localized title of this polls question */ @Override public java.lang.String getTitle(java.util.Locale locale) { return _pollsQuestion.getTitle(locale); } /** * Returns the localized title of this polls question in the language, optionally using the default language if no localization exists for the requested language. * * @param locale the local of the language * @param useDefault whether to use the default language if no localization exists for the requested language * @return the localized title of this polls question. If <code>useDefault</code> is <code>false</code> and no localization exists for the requested language, an empty string will be returned. */ @Override public java.lang.String getTitle(java.util.Locale locale, boolean useDefault) { return _pollsQuestion.getTitle(locale, useDefault); } @Override public java.lang.String getTitleCurrentLanguageId() { return _pollsQuestion.getTitleCurrentLanguageId(); } @Override public java.lang.String getTitleCurrentValue() { return _pollsQuestion.getTitleCurrentValue(); } /** * Returns the user name of this polls question. * * @return the user name of this polls question */ @Override public java.lang.String getUserName() { return _pollsQuestion.getUserName(); } /** * Returns the user uuid of this polls question. * * @return the user uuid of this polls question */ @Override public java.lang.String getUserUuid() { return _pollsQuestion.getUserUuid(); } /** * Returns the uuid of this polls question. * * @return the uuid of this polls question */ @Override public java.lang.String getUuid() { return _pollsQuestion.getUuid(); } @Override public java.lang.String toString() { return _pollsQuestion.toString(); } @Override public java.lang.String toXmlString() { return _pollsQuestion.toXmlString(); } @Override public java.lang.String[] getAvailableLanguageIds() { return _pollsQuestion.getAvailableLanguageIds(); } /** * Returns the create date of this polls question. * * @return the create date of this polls question */ @Override public Date getCreateDate() { return _pollsQuestion.getCreateDate(); } /** * Returns the expiration date of this polls question. * * @return the expiration date of this polls question */ @Override public Date getExpirationDate() { return _pollsQuestion.getExpirationDate(); } /** * Returns the last publish date of this polls question. * * @return the last publish date of this polls question */ @Override public Date getLastPublishDate() { return _pollsQuestion.getLastPublishDate(); } /** * Returns the last vote date of this polls question. * * @return the last vote date of this polls question */ @Override public Date getLastVoteDate() { return _pollsQuestion.getLastVoteDate(); } /** * Returns the modified date of this polls question. * * @return the modified date of this polls question */ @Override public Date getModifiedDate() { return _pollsQuestion.getModifiedDate(); } @Override public java.util.List<PollsChoice> getChoices() { return _pollsQuestion.getChoices(); } @Override public java.util.List<PollsVote> getVotes() { return _pollsQuestion.getVotes(); } @Override public java.util.List<PollsVote> getVotes(int start, int end) { return _pollsQuestion.getVotes(start, end); } /** * Returns a map of the locales and localized descriptions of this polls question. * * @return the locales and localized descriptions of this polls question */ @Override public Map<java.util.Locale, java.lang.String> getDescriptionMap() { return _pollsQuestion.getDescriptionMap(); } /** * Returns a map of the locales and localized titles of this polls question. * * @return the locales and localized titles of this polls question */ @Override public Map<java.util.Locale, java.lang.String> getTitleMap() { return _pollsQuestion.getTitleMap(); } /** * Returns the company ID of this polls question. * * @return the company ID of this polls question */ @Override public long getCompanyId() { return _pollsQuestion.getCompanyId(); } /** * Returns the group ID of this polls question. * * @return the group ID of this polls question */ @Override public long getGroupId() { return _pollsQuestion.getGroupId(); } /** * Returns the primary key of this polls question. * * @return the primary key of this polls question */ @Override public long getPrimaryKey() { return _pollsQuestion.getPrimaryKey(); } /** * Returns the question ID of this polls question. * * @return the question ID of this polls question */ @Override public long getQuestionId() { return _pollsQuestion.getQuestionId(); } /** * Returns the user ID of this polls question. * * @return the user ID of this polls question */ @Override public long getUserId() { return _pollsQuestion.getUserId(); } @Override public void persist() { _pollsQuestion.persist(); } @Override public void prepareLocalizedFieldsForImport() throws com.liferay.portal.kernel.exception.LocaleException { _pollsQuestion.prepareLocalizedFieldsForImport(); } @Override public void prepareLocalizedFieldsForImport( java.util.Locale defaultImportLocale) throws com.liferay.portal.kernel.exception.LocaleException { _pollsQuestion.prepareLocalizedFieldsForImport(defaultImportLocale); } @Override public void setCachedModel(boolean cachedModel) { _pollsQuestion.setCachedModel(cachedModel); } /** * Sets the company ID of this polls question. * * @param companyId the company ID of this polls question */ @Override public void setCompanyId(long companyId) { _pollsQuestion.setCompanyId(companyId); } /** * Sets the create date of this polls question. * * @param createDate the create date of this polls question */ @Override public void setCreateDate(Date createDate) { _pollsQuestion.setCreateDate(createDate); } /** * Sets the description of this polls question. * * @param description the description of this polls question */ @Override public void setDescription(java.lang.String description) { _pollsQuestion.setDescription(description); } /** * Sets the localized description of this polls question in the language. * * @param description the localized description of this polls question * @param locale the locale of the language */ @Override public void setDescription(java.lang.String description, java.util.Locale locale) { _pollsQuestion.setDescription(description, locale); } /** * Sets the localized description of this polls question in the language, and sets the default locale. * * @param description the localized description of this polls question * @param locale the locale of the language * @param defaultLocale the default locale */ @Override public void setDescription(java.lang.String description, java.util.Locale locale, java.util.Locale defaultLocale) { _pollsQuestion.setDescription(description, locale, defaultLocale); } @Override public void setDescriptionCurrentLanguageId(java.lang.String languageId) { _pollsQuestion.setDescriptionCurrentLanguageId(languageId); } /** * Sets the localized descriptions of this polls question from the map of locales and localized descriptions. * * @param descriptionMap the locales and localized descriptions of this polls question */ @Override public void setDescriptionMap( Map<java.util.Locale, java.lang.String> descriptionMap) { _pollsQuestion.setDescriptionMap(descriptionMap); } /** * Sets the localized descriptions of this polls question from the map of locales and localized descriptions, and sets the default locale. * * @param descriptionMap the locales and localized descriptions of this polls question * @param defaultLocale the default locale */ @Override public void setDescriptionMap( Map<java.util.Locale, java.lang.String> descriptionMap, java.util.Locale defaultLocale) { _pollsQuestion.setDescriptionMap(descriptionMap, defaultLocale); } @Override public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge) { _pollsQuestion.setExpandoBridgeAttributes(expandoBridge); } @Override public void setExpandoBridgeAttributes( com.liferay.portal.kernel.model.BaseModel<?> baseModel) { _pollsQuestion.setExpandoBridgeAttributes(baseModel); } @Override public void setExpandoBridgeAttributes(ServiceContext serviceContext) { _pollsQuestion.setExpandoBridgeAttributes(serviceContext); } /** * Sets the expiration date of this polls question. * * @param expirationDate the expiration date of this polls question */ @Override public void setExpirationDate(Date expirationDate) { _pollsQuestion.setExpirationDate(expirationDate); } /** * Sets the group ID of this polls question. * * @param groupId the group ID of this polls question */ @Override public void setGroupId(long groupId) { _pollsQuestion.setGroupId(groupId); } /** * Sets the last publish date of this polls question. * * @param lastPublishDate the last publish date of this polls question */ @Override public void setLastPublishDate(Date lastPublishDate) { _pollsQuestion.setLastPublishDate(lastPublishDate); } /** * Sets the last vote date of this polls question. * * @param lastVoteDate the last vote date of this polls question */ @Override public void setLastVoteDate(Date lastVoteDate) { _pollsQuestion.setLastVoteDate(lastVoteDate); } /** * Sets the modified date of this polls question. * * @param modifiedDate the modified date of this polls question */ @Override public void setModifiedDate(Date modifiedDate) { _pollsQuestion.setModifiedDate(modifiedDate); } @Override public void setNew(boolean n) { _pollsQuestion.setNew(n); } /** * Sets the primary key of this polls question. * * @param primaryKey the primary key of this polls question */ @Override public void setPrimaryKey(long primaryKey) { _pollsQuestion.setPrimaryKey(primaryKey); } @Override public void setPrimaryKeyObj(Serializable primaryKeyObj) { _pollsQuestion.setPrimaryKeyObj(primaryKeyObj); } /** * Sets the question ID of this polls question. * * @param questionId the question ID of this polls question */ @Override public void setQuestionId(long questionId) { _pollsQuestion.setQuestionId(questionId); } /** * Sets the title of this polls question. * * @param title the title of this polls question */ @Override public void setTitle(java.lang.String title) { _pollsQuestion.setTitle(title); } /** * Sets the localized title of this polls question in the language. * * @param title the localized title of this polls question * @param locale the locale of the language */ @Override public void setTitle(java.lang.String title, java.util.Locale locale) { _pollsQuestion.setTitle(title, locale); } /** * Sets the localized title of this polls question in the language, and sets the default locale. * * @param title the localized title of this polls question * @param locale the locale of the language * @param defaultLocale the default locale */ @Override public void setTitle(java.lang.String title, java.util.Locale locale, java.util.Locale defaultLocale) { _pollsQuestion.setTitle(title, locale, defaultLocale); } @Override public void setTitleCurrentLanguageId(java.lang.String languageId) { _pollsQuestion.setTitleCurrentLanguageId(languageId); } /** * Sets the localized titles of this polls question from the map of locales and localized titles. * * @param titleMap the locales and localized titles of this polls question */ @Override public void setTitleMap(Map<java.util.Locale, java.lang.String> titleMap) { _pollsQuestion.setTitleMap(titleMap); } /** * Sets the localized titles of this polls question from the map of locales and localized titles, and sets the default locale. * * @param titleMap the locales and localized titles of this polls question * @param defaultLocale the default locale */ @Override public void setTitleMap(Map<java.util.Locale, java.lang.String> titleMap, java.util.Locale defaultLocale) { _pollsQuestion.setTitleMap(titleMap, defaultLocale); } /** * Sets the user ID of this polls question. * * @param userId the user ID of this polls question */ @Override public void setUserId(long userId) { _pollsQuestion.setUserId(userId); } /** * Sets the user name of this polls question. * * @param userName the user name of this polls question */ @Override public void setUserName(java.lang.String userName) { _pollsQuestion.setUserName(userName); } /** * Sets the user uuid of this polls question. * * @param userUuid the user uuid of this polls question */ @Override public void setUserUuid(java.lang.String userUuid) { _pollsQuestion.setUserUuid(userUuid); } /** * Sets the uuid of this polls question. * * @param uuid the uuid of this polls question */ @Override public void setUuid(java.lang.String uuid) { _pollsQuestion.setUuid(uuid); } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof PollsQuestionWrapper)) { return false; } PollsQuestionWrapper pollsQuestionWrapper = (PollsQuestionWrapper)obj; if (Objects.equals(_pollsQuestion, pollsQuestionWrapper._pollsQuestion)) { return true; } return false; } @Override public StagedModelType getStagedModelType() { return _pollsQuestion.getStagedModelType(); } @Override public PollsQuestion getWrappedModel() { return _pollsQuestion; } @Override public boolean isEntityCacheEnabled() { return _pollsQuestion.isEntityCacheEnabled(); } @Override public boolean isFinderCacheEnabled() { return _pollsQuestion.isFinderCacheEnabled(); } @Override public void resetOriginalValues() { _pollsQuestion.resetOriginalValues(); } private final PollsQuestion _pollsQuestion; }