/modules/apps/subscription/subscription-api/src/main/java/com/liferay/subscription/model/SubscriptionModel.java
http://github.com/liferay/liferay-portal · Java · 286 lines · 74 code · 38 blank · 174 comment · 0 complexity · d8d4f9ec3d0a4908694cb24f23f5dd4a MD5 · raw file
- /**
- * 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.subscription.model;
- import com.liferay.portal.kernel.bean.AutoEscape;
- import com.liferay.portal.kernel.model.AttachedModel;
- import com.liferay.portal.kernel.model.BaseModel;
- import com.liferay.portal.kernel.model.GroupedModel;
- import com.liferay.portal.kernel.model.MVCCModel;
- import com.liferay.portal.kernel.model.ShardedModel;
- import com.liferay.portal.kernel.model.change.tracking.CTModel;
- import java.util.Date;
- import org.osgi.annotation.versioning.ProviderType;
- /**
- * The base model interface for the Subscription service. Represents a row in the "Subscription" database table, with each column mapped to a property of this class.
- *
- * <p>
- * This interface and its corresponding implementation <code>com.liferay.subscription.model.impl.SubscriptionModelImpl</code> exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in <code>com.liferay.subscription.model.impl.SubscriptionImpl</code>.
- * </p>
- *
- * @author Brian Wing Shun Chan
- * @see Subscription
- * @generated
- */
- @ProviderType
- public interface SubscriptionModel
- extends AttachedModel, BaseModel<Subscription>, CTModel<Subscription>,
- GroupedModel, MVCCModel, ShardedModel {
- /*
- * NOTE FOR DEVELOPERS:
- *
- * Never modify or reference this interface directly. All methods that expect a subscription model instance should use the {@link Subscription} interface instead.
- */
- /**
- * Returns the primary key of this subscription.
- *
- * @return the primary key of this subscription
- */
- @Override
- public long getPrimaryKey();
- /**
- * Sets the primary key of this subscription.
- *
- * @param primaryKey the primary key of this subscription
- */
- @Override
- public void setPrimaryKey(long primaryKey);
- /**
- * Returns the mvcc version of this subscription.
- *
- * @return the mvcc version of this subscription
- */
- @Override
- public long getMvccVersion();
- /**
- * Sets the mvcc version of this subscription.
- *
- * @param mvccVersion the mvcc version of this subscription
- */
- @Override
- public void setMvccVersion(long mvccVersion);
- /**
- * Returns the ct collection ID of this subscription.
- *
- * @return the ct collection ID of this subscription
- */
- @Override
- public long getCtCollectionId();
- /**
- * Sets the ct collection ID of this subscription.
- *
- * @param ctCollectionId the ct collection ID of this subscription
- */
- @Override
- public void setCtCollectionId(long ctCollectionId);
- /**
- * Returns the subscription ID of this subscription.
- *
- * @return the subscription ID of this subscription
- */
- public long getSubscriptionId();
- /**
- * Sets the subscription ID of this subscription.
- *
- * @param subscriptionId the subscription ID of this subscription
- */
- public void setSubscriptionId(long subscriptionId);
- /**
- * Returns the group ID of this subscription.
- *
- * @return the group ID of this subscription
- */
- @Override
- public long getGroupId();
- /**
- * Sets the group ID of this subscription.
- *
- * @param groupId the group ID of this subscription
- */
- @Override
- public void setGroupId(long groupId);
- /**
- * Returns the company ID of this subscription.
- *
- * @return the company ID of this subscription
- */
- @Override
- public long getCompanyId();
- /**
- * Sets the company ID of this subscription.
- *
- * @param companyId the company ID of this subscription
- */
- @Override
- public void setCompanyId(long companyId);
- /**
- * Returns the user ID of this subscription.
- *
- * @return the user ID of this subscription
- */
- @Override
- public long getUserId();
- /**
- * Sets the user ID of this subscription.
- *
- * @param userId the user ID of this subscription
- */
- @Override
- public void setUserId(long userId);
- /**
- * Returns the user uuid of this subscription.
- *
- * @return the user uuid of this subscription
- */
- @Override
- public String getUserUuid();
- /**
- * Sets the user uuid of this subscription.
- *
- * @param userUuid the user uuid of this subscription
- */
- @Override
- public void setUserUuid(String userUuid);
- /**
- * Returns the user name of this subscription.
- *
- * @return the user name of this subscription
- */
- @AutoEscape
- @Override
- public String getUserName();
- /**
- * Sets the user name of this subscription.
- *
- * @param userName the user name of this subscription
- */
- @Override
- public void setUserName(String userName);
- /**
- * Returns the create date of this subscription.
- *
- * @return the create date of this subscription
- */
- @Override
- public Date getCreateDate();
- /**
- * Sets the create date of this subscription.
- *
- * @param createDate the create date of this subscription
- */
- @Override
- public void setCreateDate(Date createDate);
- /**
- * Returns the modified date of this subscription.
- *
- * @return the modified date of this subscription
- */
- @Override
- public Date getModifiedDate();
- /**
- * Sets the modified date of this subscription.
- *
- * @param modifiedDate the modified date of this subscription
- */
- @Override
- public void setModifiedDate(Date modifiedDate);
- /**
- * Returns the fully qualified class name of this subscription.
- *
- * @return the fully qualified class name of this subscription
- */
- @Override
- public String getClassName();
- public void setClassName(String className);
- /**
- * Returns the class name ID of this subscription.
- *
- * @return the class name ID of this subscription
- */
- @Override
- public long getClassNameId();
- /**
- * Sets the class name ID of this subscription.
- *
- * @param classNameId the class name ID of this subscription
- */
- @Override
- public void setClassNameId(long classNameId);
- /**
- * Returns the class pk of this subscription.
- *
- * @return the class pk of this subscription
- */
- @Override
- public long getClassPK();
- /**
- * Sets the class pk of this subscription.
- *
- * @param classPK the class pk of this subscription
- */
- @Override
- public void setClassPK(long classPK);
- /**
- * Returns the frequency of this subscription.
- *
- * @return the frequency of this subscription
- */
- @AutoEscape
- public String getFrequency();
- /**
- * Sets the frequency of this subscription.
- *
- * @param frequency the frequency of this subscription
- */
- public void setFrequency(String frequency);
- @Override
- public Subscription cloneWithOriginalValues();
- }