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 ResourceCode service. Represents a row in the "ResourceCode" 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.ResourceCodeModelImpl} 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.ResourceCodeImpl}.
029     * </p>
030     *
031     * <p>
032     * Never modify or reference this interface directly. All methods that expect a resource code model instance should use the {@link ResourceCode} interface instead.
033     * </p>
034     *
035     * @author Brian Wing Shun Chan
036     * @see ResourceCode
037     * @see com.liferay.portal.model.impl.ResourceCodeImpl
038     * @see com.liferay.portal.model.impl.ResourceCodeModelImpl
039     * @generated
040     */
041    public interface ResourceCodeModel extends BaseModel<ResourceCode> {
042            /**
043             * Gets the primary key of this resource code.
044             *
045             * @return the primary key of this resource code
046             */
047            public long getPrimaryKey();
048    
049            /**
050             * Sets the primary key of this resource code
051             *
052             * @param pk the primary key of this resource code
053             */
054            public void setPrimaryKey(long pk);
055    
056            /**
057             * Gets the code id of this resource code.
058             *
059             * @return the code id of this resource code
060             */
061            public long getCodeId();
062    
063            /**
064             * Sets the code id of this resource code.
065             *
066             * @param codeId the code id of this resource code
067             */
068            public void setCodeId(long codeId);
069    
070            /**
071             * Gets the company id of this resource code.
072             *
073             * @return the company id of this resource code
074             */
075            public long getCompanyId();
076    
077            /**
078             * Sets the company id of this resource code.
079             *
080             * @param companyId the company id of this resource code
081             */
082            public void setCompanyId(long companyId);
083    
084            /**
085             * Gets the name of this resource code.
086             *
087             * @return the name of this resource code
088             */
089            @AutoEscape
090            public String getName();
091    
092            /**
093             * Sets the name of this resource code.
094             *
095             * @param name the name of this resource code
096             */
097            public void setName(String name);
098    
099            /**
100             * Gets the scope of this resource code.
101             *
102             * @return the scope of this resource code
103             */
104            public int getScope();
105    
106            /**
107             * Sets the scope of this resource code.
108             *
109             * @param scope the scope of this resource code
110             */
111            public void setScope(int scope);
112    
113            /**
114             * Gets a copy of this resource code 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 ResourceCode 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(ResourceCode resourceCode);
142    
143            public int hashCode();
144    
145            public String toString();
146    
147            public String toXmlString();
148    }