001    /**
002     * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portal.model;
016    
017    import aQute.bnd.annotation.ProviderType;
018    
019    import com.liferay.portal.service.ServiceContext;
020    
021    import com.liferay.portlet.expando.model.ExpandoBridge;
022    
023    import java.io.Serializable;
024    
025    /**
026     * The base model interface for the RecentLayoutSetBranch service. Represents a row in the "RecentLayoutSetBranch" database table, with each column mapped to a property of this class.
027     *
028     * <p>
029     * This interface and its corresponding implementation {@link com.liferay.portal.model.impl.RecentLayoutSetBranchModelImpl} exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in {@link com.liferay.portal.model.impl.RecentLayoutSetBranchImpl}.
030     * </p>
031     *
032     * @author Brian Wing Shun Chan
033     * @see RecentLayoutSetBranch
034     * @see com.liferay.portal.model.impl.RecentLayoutSetBranchImpl
035     * @see com.liferay.portal.model.impl.RecentLayoutSetBranchModelImpl
036     * @generated
037     */
038    @ProviderType
039    public interface RecentLayoutSetBranchModel extends BaseModel<RecentLayoutSetBranch>,
040            MVCCModel, ShardedModel {
041            /*
042             * NOTE FOR DEVELOPERS:
043             *
044             * Never modify or reference this interface directly. All methods that expect a recent layout set branch model instance should use the {@link RecentLayoutSetBranch} interface instead.
045             */
046    
047            /**
048             * Returns the primary key of this recent layout set branch.
049             *
050             * @return the primary key of this recent layout set branch
051             */
052            public long getPrimaryKey();
053    
054            /**
055             * Sets the primary key of this recent layout set branch.
056             *
057             * @param primaryKey the primary key of this recent layout set branch
058             */
059            public void setPrimaryKey(long primaryKey);
060    
061            /**
062             * Returns the mvcc version of this recent layout set branch.
063             *
064             * @return the mvcc version of this recent layout set branch
065             */
066            @Override
067            public long getMvccVersion();
068    
069            /**
070             * Sets the mvcc version of this recent layout set branch.
071             *
072             * @param mvccVersion the mvcc version of this recent layout set branch
073             */
074            @Override
075            public void setMvccVersion(long mvccVersion);
076    
077            /**
078             * Returns the recent layout set branch ID of this recent layout set branch.
079             *
080             * @return the recent layout set branch ID of this recent layout set branch
081             */
082            public long getRecentLayoutSetBranchId();
083    
084            /**
085             * Sets the recent layout set branch ID of this recent layout set branch.
086             *
087             * @param recentLayoutSetBranchId the recent layout set branch ID of this recent layout set branch
088             */
089            public void setRecentLayoutSetBranchId(long recentLayoutSetBranchId);
090    
091            /**
092             * Returns the group ID of this recent layout set branch.
093             *
094             * @return the group ID of this recent layout set branch
095             */
096            public long getGroupId();
097    
098            /**
099             * Sets the group ID of this recent layout set branch.
100             *
101             * @param groupId the group ID of this recent layout set branch
102             */
103            public void setGroupId(long groupId);
104    
105            /**
106             * Returns the company ID of this recent layout set branch.
107             *
108             * @return the company ID of this recent layout set branch
109             */
110            @Override
111            public long getCompanyId();
112    
113            /**
114             * Sets the company ID of this recent layout set branch.
115             *
116             * @param companyId the company ID of this recent layout set branch
117             */
118            @Override
119            public void setCompanyId(long companyId);
120    
121            /**
122             * Returns the user ID of this recent layout set branch.
123             *
124             * @return the user ID of this recent layout set branch
125             */
126            public long getUserId();
127    
128            /**
129             * Sets the user ID of this recent layout set branch.
130             *
131             * @param userId the user ID of this recent layout set branch
132             */
133            public void setUserId(long userId);
134    
135            /**
136             * Returns the user uuid of this recent layout set branch.
137             *
138             * @return the user uuid of this recent layout set branch
139             */
140            public String getUserUuid();
141    
142            /**
143             * Sets the user uuid of this recent layout set branch.
144             *
145             * @param userUuid the user uuid of this recent layout set branch
146             */
147            public void setUserUuid(String userUuid);
148    
149            /**
150             * Returns the layout set branch ID of this recent layout set branch.
151             *
152             * @return the layout set branch ID of this recent layout set branch
153             */
154            public long getLayoutSetBranchId();
155    
156            /**
157             * Sets the layout set branch ID of this recent layout set branch.
158             *
159             * @param layoutSetBranchId the layout set branch ID of this recent layout set branch
160             */
161            public void setLayoutSetBranchId(long layoutSetBranchId);
162    
163            /**
164             * Returns the layout set ID of this recent layout set branch.
165             *
166             * @return the layout set ID of this recent layout set branch
167             */
168            public long getLayoutSetId();
169    
170            /**
171             * Sets the layout set ID of this recent layout set branch.
172             *
173             * @param layoutSetId the layout set ID of this recent layout set branch
174             */
175            public void setLayoutSetId(long layoutSetId);
176    
177            @Override
178            public boolean isNew();
179    
180            @Override
181            public void setNew(boolean n);
182    
183            @Override
184            public boolean isCachedModel();
185    
186            @Override
187            public void setCachedModel(boolean cachedModel);
188    
189            @Override
190            public boolean isEscapedModel();
191    
192            @Override
193            public Serializable getPrimaryKeyObj();
194    
195            @Override
196            public void setPrimaryKeyObj(Serializable primaryKeyObj);
197    
198            @Override
199            public ExpandoBridge getExpandoBridge();
200    
201            @Override
202            public void setExpandoBridgeAttributes(BaseModel<?> baseModel);
203    
204            @Override
205            public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge);
206    
207            @Override
208            public void setExpandoBridgeAttributes(ServiceContext serviceContext);
209    
210            @Override
211            public Object clone();
212    
213            @Override
214            public int compareTo(
215                    com.liferay.portal.model.RecentLayoutSetBranch recentLayoutSetBranch);
216    
217            @Override
218            public int hashCode();
219    
220            @Override
221            public CacheModel<com.liferay.portal.model.RecentLayoutSetBranch> toCacheModel();
222    
223            @Override
224            public com.liferay.portal.model.RecentLayoutSetBranch toEscapedModel();
225    
226            @Override
227            public com.liferay.portal.model.RecentLayoutSetBranch toUnescapedModel();
228    
229            @Override
230            public String toString();
231    
232            @Override
233            public String toXmlString();
234    }