001    /**
002     * Copyright (c) 2000-2010 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 com.liferay.portal.kernel.annotation.AutoEscape;
018    import com.liferay.portal.service.ServiceContext;
019    
020    import com.liferay.portlet.expando.model.ExpandoBridge;
021    
022    import java.io.Serializable;
023    
024    /**
025     * The base model interface for the ResourcePermission service. Represents a row in the "ResourcePermission" database table, with each column mapped to a property of this class.
026     *
027     * <p>
028     * This interface and its corresponding implementation {@link com.liferay.portal.model.impl.ResourcePermissionModelImpl} 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.ResourcePermissionImpl}.
029     * </p>
030     *
031     * <p>
032     * Never modify or reference this interface directly. All methods that expect a resource permission model instance should use the {@link ResourcePermission} interface instead.
033     * </p>
034     *
035     * @author Brian Wing Shun Chan
036     * @see ResourcePermission
037     * @see com.liferay.portal.model.impl.ResourcePermissionImpl
038     * @see com.liferay.portal.model.impl.ResourcePermissionModelImpl
039     * @generated
040     */
041    public interface ResourcePermissionModel extends BaseModel<ResourcePermission> {
042            /**
043             * Gets the primary key of this resource permission.
044             *
045             * @return the primary key of this resource permission
046             */
047            public long getPrimaryKey();
048    
049            /**
050             * Sets the primary key of this resource permission
051             *
052             * @param pk the primary key of this resource permission
053             */
054            public void setPrimaryKey(long pk);
055    
056            /**
057             * Gets the resource permission id of this resource permission.
058             *
059             * @return the resource permission id of this resource permission
060             */
061            public long getResourcePermissionId();
062    
063            /**
064             * Sets the resource permission id of this resource permission.
065             *
066             * @param resourcePermissionId the resource permission id of this resource permission
067             */
068            public void setResourcePermissionId(long resourcePermissionId);
069    
070            /**
071             * Gets the company id of this resource permission.
072             *
073             * @return the company id of this resource permission
074             */
075            public long getCompanyId();
076    
077            /**
078             * Sets the company id of this resource permission.
079             *
080             * @param companyId the company id of this resource permission
081             */
082            public void setCompanyId(long companyId);
083    
084            /**
085             * Gets the name of this resource permission.
086             *
087             * @return the name of this resource permission
088             */
089            @AutoEscape
090            public String getName();
091    
092            /**
093             * Sets the name of this resource permission.
094             *
095             * @param name the name of this resource permission
096             */
097            public void setName(String name);
098    
099            /**
100             * Gets the scope of this resource permission.
101             *
102             * @return the scope of this resource permission
103             */
104            public int getScope();
105    
106            /**
107             * Sets the scope of this resource permission.
108             *
109             * @param scope the scope of this resource permission
110             */
111            public void setScope(int scope);
112    
113            /**
114             * Gets the prim key of this resource permission.
115             *
116             * @return the prim key of this resource permission
117             */
118            @AutoEscape
119            public String getPrimKey();
120    
121            /**
122             * Sets the prim key of this resource permission.
123             *
124             * @param primKey the prim key of this resource permission
125             */
126            public void setPrimKey(String primKey);
127    
128            /**
129             * Gets the role id of this resource permission.
130             *
131             * @return the role id of this resource permission
132             */
133            public long getRoleId();
134    
135            /**
136             * Sets the role id of this resource permission.
137             *
138             * @param roleId the role id of this resource permission
139             */
140            public void setRoleId(long roleId);
141    
142            /**
143             * Gets the action ids of this resource permission.
144             *
145             * @return the action ids of this resource permission
146             */
147            public long getActionIds();
148    
149            /**
150             * Sets the action ids of this resource permission.
151             *
152             * @param actionIds the action ids of this resource permission
153             */
154            public void setActionIds(long actionIds);
155    
156            /**
157             * Gets a copy of this resource permission as an escaped model instance by wrapping it with an {@link com.liferay.portal.kernel.bean.AutoEscapeBeanHandler}.
158             *
159             * @return the escaped model instance
160             * @see com.liferay.portal.kernel.bean.AutoEscapeBeanHandler
161             */
162            public ResourcePermission toEscapedModel();
163    
164            public boolean isNew();
165    
166            public void setNew(boolean n);
167    
168            public boolean isCachedModel();
169    
170            public void setCachedModel(boolean cachedModel);
171    
172            public boolean isEscapedModel();
173    
174            public void setEscapedModel(boolean escapedModel);
175    
176            public Serializable getPrimaryKeyObj();
177    
178            public ExpandoBridge getExpandoBridge();
179    
180            public void setExpandoBridgeAttributes(ServiceContext serviceContext);
181    
182            public Object clone();
183    
184            public int compareTo(ResourcePermission resourcePermission);
185    
186            public int hashCode();
187    
188            public String toString();
189    
190            public String toXmlString();
191    }