001 /** 002 * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved. 003 * 004 * The contents of this file are subject to the terms of the Liferay Enterprise 005 * Subscription License ("License"). You may not use this file except in 006 * compliance with the License. You can obtain a copy of the License by 007 * contacting Liferay, Inc. See the License for the specific language governing 008 * permissions and limitations under the License, including but not limited to 009 * distribution rights of the Software. 010 * 011 * 012 * 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 public boolean isNew(); 157 158 public void setNew(boolean n); 159 160 public boolean isCachedModel(); 161 162 public void setCachedModel(boolean cachedModel); 163 164 public boolean isEscapedModel(); 165 166 public void setEscapedModel(boolean escapedModel); 167 168 public Serializable getPrimaryKeyObj(); 169 170 public ExpandoBridge getExpandoBridge(); 171 172 public void setExpandoBridgeAttributes(ServiceContext serviceContext); 173 174 public Object clone(); 175 176 public int compareTo(ResourcePermission resourcePermission); 177 178 public int hashCode(); 179 180 public ResourcePermission toEscapedModel(); 181 182 public String toString(); 183 184 public String toXmlString(); 185 }