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

com.liferay.portal.model.SubscriptionWrapper Maven / Gradle / Ivy

Go to download

Contains interfaces for the portal services. Interfaces are only loaded by the global class loader and are shared by all plugins.

There is a newer version: 7.0.0-nightly
Show newest version
/**
 * Copyright (c) 2000-2013 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.portal.model;

import aQute.bnd.annotation.ProviderType;

import com.liferay.portal.kernel.util.Validator;

import java.util.Date;
import java.util.HashMap;
import java.util.Map;

/**
 * 

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

* * @author Brian Wing Shun Chan * @see Subscription * @generated */ @ProviderType public class SubscriptionWrapper implements Subscription, ModelWrapper { public SubscriptionWrapper(Subscription subscription) { _subscription = subscription; } @Override public Class getModelClass() { return Subscription.class; } @Override public String getModelClassName() { return Subscription.class.getName(); } @Override public Map getModelAttributes() { Map attributes = new HashMap(); attributes.put("subscriptionId", getSubscriptionId()); 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("frequency", getFrequency()); return attributes; } @Override public void setModelAttributes(Map attributes) { Long subscriptionId = (Long)attributes.get("subscriptionId"); if (subscriptionId != null) { setSubscriptionId(subscriptionId); } 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 frequency = (String)attributes.get("frequency"); if (frequency != null) { setFrequency(frequency); } } /** * Returns the primary key of this subscription. * * @return the primary key of this subscription */ @Override public long getPrimaryKey() { return _subscription.getPrimaryKey(); } /** * Sets the primary key of this subscription. * * @param primaryKey the primary key of this subscription */ @Override public void setPrimaryKey(long primaryKey) { _subscription.setPrimaryKey(primaryKey); } /** * Returns the subscription ID of this subscription. * * @return the subscription ID of this subscription */ @Override public long getSubscriptionId() { return _subscription.getSubscriptionId(); } /** * Sets the subscription ID of this subscription. * * @param subscriptionId the subscription ID of this subscription */ @Override public void setSubscriptionId(long subscriptionId) { _subscription.setSubscriptionId(subscriptionId); } /** * Returns the company ID of this subscription. * * @return the company ID of this subscription */ @Override public long getCompanyId() { return _subscription.getCompanyId(); } /** * Sets the company ID of this subscription. * * @param companyId the company ID of this subscription */ @Override public void setCompanyId(long companyId) { _subscription.setCompanyId(companyId); } /** * Returns the user ID of this subscription. * * @return the user ID of this subscription */ @Override public long getUserId() { return _subscription.getUserId(); } /** * Sets the user ID of this subscription. * * @param userId the user ID of this subscription */ @Override public void setUserId(long userId) { _subscription.setUserId(userId); } /** * Returns the user uuid of this subscription. * * @return the user uuid of this subscription * @throws SystemException if a system exception occurred */ @Override public java.lang.String getUserUuid() throws com.liferay.portal.kernel.exception.SystemException { return _subscription.getUserUuid(); } /** * Sets the user uuid of this subscription. * * @param userUuid the user uuid of this subscription */ @Override public void setUserUuid(java.lang.String userUuid) { _subscription.setUserUuid(userUuid); } /** * Returns the user name of this subscription. * * @return the user name of this subscription */ @Override public java.lang.String getUserName() { return _subscription.getUserName(); } /** * Sets the user name of this subscription. * * @param userName the user name of this subscription */ @Override public void setUserName(java.lang.String userName) { _subscription.setUserName(userName); } /** * Returns the create date of this subscription. * * @return the create date of this subscription */ @Override public java.util.Date getCreateDate() { return _subscription.getCreateDate(); } /** * Sets the create date of this subscription. * * @param createDate the create date of this subscription */ @Override public void setCreateDate(java.util.Date createDate) { _subscription.setCreateDate(createDate); } /** * Returns the modified date of this subscription. * * @return the modified date of this subscription */ @Override public java.util.Date getModifiedDate() { return _subscription.getModifiedDate(); } /** * Sets the modified date of this subscription. * * @param modifiedDate the modified date of this subscription */ @Override public void setModifiedDate(java.util.Date modifiedDate) { _subscription.setModifiedDate(modifiedDate); } /** * Returns the fully qualified class name of this subscription. * * @return the fully qualified class name of this subscription */ @Override public java.lang.String getClassName() { return _subscription.getClassName(); } @Override public void setClassName(java.lang.String className) { _subscription.setClassName(className); } /** * Returns the class name ID of this subscription. * * @return the class name ID of this subscription */ @Override public long getClassNameId() { return _subscription.getClassNameId(); } /** * Sets the class name ID of this subscription. * * @param classNameId the class name ID of this subscription */ @Override public void setClassNameId(long classNameId) { _subscription.setClassNameId(classNameId); } /** * Returns the class p k of this subscription. * * @return the class p k of this subscription */ @Override public long getClassPK() { return _subscription.getClassPK(); } /** * Sets the class p k of this subscription. * * @param classPK the class p k of this subscription */ @Override public void setClassPK(long classPK) { _subscription.setClassPK(classPK); } /** * Returns the frequency of this subscription. * * @return the frequency of this subscription */ @Override public java.lang.String getFrequency() { return _subscription.getFrequency(); } /** * Sets the frequency of this subscription. * * @param frequency the frequency of this subscription */ @Override public void setFrequency(java.lang.String frequency) { _subscription.setFrequency(frequency); } @Override public boolean isNew() { return _subscription.isNew(); } @Override public void setNew(boolean n) { _subscription.setNew(n); } @Override public boolean isCachedModel() { return _subscription.isCachedModel(); } @Override public void setCachedModel(boolean cachedModel) { _subscription.setCachedModel(cachedModel); } @Override public boolean isEscapedModel() { return _subscription.isEscapedModel(); } @Override public java.io.Serializable getPrimaryKeyObj() { return _subscription.getPrimaryKeyObj(); } @Override public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) { _subscription.setPrimaryKeyObj(primaryKeyObj); } @Override public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() { return _subscription.getExpandoBridge(); } @Override public void setExpandoBridgeAttributes( com.liferay.portal.model.BaseModel baseModel) { _subscription.setExpandoBridgeAttributes(baseModel); } @Override public void setExpandoBridgeAttributes( com.liferay.portlet.expando.model.ExpandoBridge expandoBridge) { _subscription.setExpandoBridgeAttributes(expandoBridge); } @Override public void setExpandoBridgeAttributes( com.liferay.portal.service.ServiceContext serviceContext) { _subscription.setExpandoBridgeAttributes(serviceContext); } @Override public java.lang.Object clone() { return new SubscriptionWrapper((Subscription)_subscription.clone()); } @Override public int compareTo(com.liferay.portal.model.Subscription subscription) { return _subscription.compareTo(subscription); } @Override public int hashCode() { return _subscription.hashCode(); } @Override public com.liferay.portal.model.CacheModel toCacheModel() { return _subscription.toCacheModel(); } @Override public com.liferay.portal.model.Subscription toEscapedModel() { return new SubscriptionWrapper(_subscription.toEscapedModel()); } @Override public com.liferay.portal.model.Subscription toUnescapedModel() { return new SubscriptionWrapper(_subscription.toUnescapedModel()); } @Override public java.lang.String toString() { return _subscription.toString(); } @Override public java.lang.String toXmlString() { return _subscription.toXmlString(); } @Override public void persist() throws com.liferay.portal.kernel.exception.SystemException { _subscription.persist(); } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof SubscriptionWrapper)) { return false; } SubscriptionWrapper subscriptionWrapper = (SubscriptionWrapper)obj; if (Validator.equals(_subscription, subscriptionWrapper._subscription)) { return true; } return false; } /** * @deprecated As of 6.1.0, replaced by {@link #getWrappedModel} */ public Subscription getWrappedSubscription() { return _subscription; } @Override public Subscription getWrappedModel() { return _subscription; } @Override public void resetOriginalValues() { _subscription.resetOriginalValues(); } private Subscription _subscription; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy