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.kernel.bean.AutoEscape;
020    import com.liferay.portal.service.ServiceContext;
021    
022    import com.liferay.portlet.expando.model.ExpandoBridge;
023    
024    import java.io.Serializable;
025    
026    /**
027     * The base model interface for the ResourceTypePermission service. Represents a row in the "ResourceTypePermission" database table, with each column mapped to a property of this class.
028     *
029     * <p>
030     * This interface and its corresponding implementation {@link com.liferay.portal.model.impl.ResourceTypePermissionModelImpl} 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.ResourceTypePermissionImpl}.
031     * </p>
032     *
033     * @author Brian Wing Shun Chan
034     * @see ResourceTypePermission
035     * @see com.liferay.portal.model.impl.ResourceTypePermissionImpl
036     * @see com.liferay.portal.model.impl.ResourceTypePermissionModelImpl
037     * @generated
038     */
039    @ProviderType
040    public interface ResourceTypePermissionModel extends BaseModel<ResourceTypePermission>,
041            MVCCModel, ShardedModel {
042            /*
043             * NOTE FOR DEVELOPERS:
044             *
045             * Never modify or reference this interface directly. All methods that expect a resource type permission model instance should use the {@link ResourceTypePermission} interface instead.
046             */
047    
048            /**
049             * Returns the primary key of this resource type permission.
050             *
051             * @return the primary key of this resource type permission
052             */
053            public long getPrimaryKey();
054    
055            /**
056             * Sets the primary key of this resource type permission.
057             *
058             * @param primaryKey the primary key of this resource type permission
059             */
060            public void setPrimaryKey(long primaryKey);
061    
062            /**
063             * Returns the mvcc version of this resource type permission.
064             *
065             * @return the mvcc version of this resource type permission
066             */
067            @Override
068            public long getMvccVersion();
069    
070            /**
071             * Sets the mvcc version of this resource type permission.
072             *
073             * @param mvccVersion the mvcc version of this resource type permission
074             */
075            @Override
076            public void setMvccVersion(long mvccVersion);
077    
078            /**
079             * Returns the resource type permission ID of this resource type permission.
080             *
081             * @return the resource type permission ID of this resource type permission
082             */
083            public long getResourceTypePermissionId();
084    
085            /**
086             * Sets the resource type permission ID of this resource type permission.
087             *
088             * @param resourceTypePermissionId the resource type permission ID of this resource type permission
089             */
090            public void setResourceTypePermissionId(long resourceTypePermissionId);
091    
092            /**
093             * Returns the company ID of this resource type permission.
094             *
095             * @return the company ID of this resource type permission
096             */
097            @Override
098            public long getCompanyId();
099    
100            /**
101             * Sets the company ID of this resource type permission.
102             *
103             * @param companyId the company ID of this resource type permission
104             */
105            @Override
106            public void setCompanyId(long companyId);
107    
108            /**
109             * Returns the group ID of this resource type permission.
110             *
111             * @return the group ID of this resource type permission
112             */
113            public long getGroupId();
114    
115            /**
116             * Sets the group ID of this resource type permission.
117             *
118             * @param groupId the group ID of this resource type permission
119             */
120            public void setGroupId(long groupId);
121    
122            /**
123             * Returns the name of this resource type permission.
124             *
125             * @return the name of this resource type permission
126             */
127            @AutoEscape
128            public String getName();
129    
130            /**
131             * Sets the name of this resource type permission.
132             *
133             * @param name the name of this resource type permission
134             */
135            public void setName(String name);
136    
137            /**
138             * Returns the role ID of this resource type permission.
139             *
140             * @return the role ID of this resource type permission
141             */
142            public long getRoleId();
143    
144            /**
145             * Sets the role ID of this resource type permission.
146             *
147             * @param roleId the role ID of this resource type permission
148             */
149            public void setRoleId(long roleId);
150    
151            /**
152             * Returns the action IDs of this resource type permission.
153             *
154             * @return the action IDs of this resource type permission
155             */
156            public long getActionIds();
157    
158            /**
159             * Sets the action IDs of this resource type permission.
160             *
161             * @param actionIds the action IDs of this resource type permission
162             */
163            public void setActionIds(long actionIds);
164    
165            @Override
166            public boolean isNew();
167    
168            @Override
169            public void setNew(boolean n);
170    
171            @Override
172            public boolean isCachedModel();
173    
174            @Override
175            public void setCachedModel(boolean cachedModel);
176    
177            @Override
178            public boolean isEscapedModel();
179    
180            @Override
181            public Serializable getPrimaryKeyObj();
182    
183            @Override
184            public void setPrimaryKeyObj(Serializable primaryKeyObj);
185    
186            @Override
187            public ExpandoBridge getExpandoBridge();
188    
189            @Override
190            public void setExpandoBridgeAttributes(BaseModel<?> baseModel);
191    
192            @Override
193            public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge);
194    
195            @Override
196            public void setExpandoBridgeAttributes(ServiceContext serviceContext);
197    
198            @Override
199            public Object clone();
200    
201            @Override
202            public int compareTo(
203                    com.liferay.portal.model.ResourceTypePermission resourceTypePermission);
204    
205            @Override
206            public int hashCode();
207    
208            @Override
209            public CacheModel<com.liferay.portal.model.ResourceTypePermission> toCacheModel();
210    
211            @Override
212            public com.liferay.portal.model.ResourceTypePermission toEscapedModel();
213    
214            @Override
215            public com.liferay.portal.model.ResourceTypePermission toUnescapedModel();
216    
217            @Override
218            public String toString();
219    
220            @Override
221            public String toXmlString();
222    }