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 Permission service. Represents a row in the "Permission_" 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.PermissionModelImpl} 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.PermissionImpl}.
029     * </p>
030     *
031     * <p>
032     * Never modify or reference this interface directly. All methods that expect a permission model instance should use the {@link Permission} interface instead.
033     * </p>
034     *
035     * @author Brian Wing Shun Chan
036     * @see Permission
037     * @see com.liferay.portal.model.impl.PermissionImpl
038     * @see com.liferay.portal.model.impl.PermissionModelImpl
039     * @generated
040     */
041    public interface PermissionModel extends BaseModel<Permission> {
042            /**
043             * Gets the primary key of this permission.
044             *
045             * @return the primary key of this permission
046             */
047            public long getPrimaryKey();
048    
049            /**
050             * Sets the primary key of this permission
051             *
052             * @param pk the primary key of this permission
053             */
054            public void setPrimaryKey(long pk);
055    
056            /**
057             * Gets the permission id of this permission.
058             *
059             * @return the permission id of this permission
060             */
061            public long getPermissionId();
062    
063            /**
064             * Sets the permission id of this permission.
065             *
066             * @param permissionId the permission id of this permission
067             */
068            public void setPermissionId(long permissionId);
069    
070            /**
071             * Gets the company id of this permission.
072             *
073             * @return the company id of this permission
074             */
075            public long getCompanyId();
076    
077            /**
078             * Sets the company id of this permission.
079             *
080             * @param companyId the company id of this permission
081             */
082            public void setCompanyId(long companyId);
083    
084            /**
085             * Gets the action id of this permission.
086             *
087             * @return the action id of this permission
088             */
089            @AutoEscape
090            public String getActionId();
091    
092            /**
093             * Sets the action id of this permission.
094             *
095             * @param actionId the action id of this permission
096             */
097            public void setActionId(String actionId);
098    
099            /**
100             * Gets the resource id of this permission.
101             *
102             * @return the resource id of this permission
103             */
104            public long getResourceId();
105    
106            /**
107             * Sets the resource id of this permission.
108             *
109             * @param resourceId the resource id of this permission
110             */
111            public void setResourceId(long resourceId);
112    
113            /**
114             * Gets a copy of this permission as an escaped model instance by wrapping it with an {@link com.liferay.portal.kernel.bean.AutoEscapeBeanHandler}.
115             *
116             * @return the escaped model instance
117             * @see com.liferay.portal.kernel.bean.AutoEscapeBeanHandler
118             */
119            public Permission toEscapedModel();
120    
121            public boolean isNew();
122    
123            public void setNew(boolean n);
124    
125            public boolean isCachedModel();
126    
127            public void setCachedModel(boolean cachedModel);
128    
129            public boolean isEscapedModel();
130    
131            public void setEscapedModel(boolean escapedModel);
132    
133            public Serializable getPrimaryKeyObj();
134    
135            public ExpandoBridge getExpandoBridge();
136    
137            public void setExpandoBridgeAttributes(ServiceContext serviceContext);
138    
139            public Object clone();
140    
141            public int compareTo(Permission permission);
142    
143            public int hashCode();
144    
145            public String toString();
146    
147            public String toXmlString();
148    }