001    /**
002     * Copyright (c) 2000-2013 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    import java.util.Date;
027    
028    /**
029     * The base model interface for the WebDAVProps service. Represents a row in the "WebDAVProps" database table, with each column mapped to a property of this class.
030     *
031     * <p>
032     * This interface and its corresponding implementation {@link com.liferay.portal.model.impl.WebDAVPropsModelImpl} 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.WebDAVPropsImpl}.
033     * </p>
034     *
035     * @author Brian Wing Shun Chan
036     * @see WebDAVProps
037     * @see com.liferay.portal.model.impl.WebDAVPropsImpl
038     * @see com.liferay.portal.model.impl.WebDAVPropsModelImpl
039     * @generated
040     */
041    @ProviderType
042    public interface WebDAVPropsModel extends AttachedModel, BaseModel<WebDAVProps> {
043            /*
044             * NOTE FOR DEVELOPERS:
045             *
046             * Never modify or reference this interface directly. All methods that expect a web d a v props model instance should use the {@link WebDAVProps} interface instead.
047             */
048    
049            /**
050             * Returns the primary key of this web d a v props.
051             *
052             * @return the primary key of this web d a v props
053             */
054            public long getPrimaryKey();
055    
056            /**
057             * Sets the primary key of this web d a v props.
058             *
059             * @param primaryKey the primary key of this web d a v props
060             */
061            public void setPrimaryKey(long primaryKey);
062    
063            /**
064             * Returns the web dav props ID of this web d a v props.
065             *
066             * @return the web dav props ID of this web d a v props
067             */
068            public long getWebDavPropsId();
069    
070            /**
071             * Sets the web dav props ID of this web d a v props.
072             *
073             * @param webDavPropsId the web dav props ID of this web d a v props
074             */
075            public void setWebDavPropsId(long webDavPropsId);
076    
077            /**
078             * Returns the company ID of this web d a v props.
079             *
080             * @return the company ID of this web d a v props
081             */
082            public long getCompanyId();
083    
084            /**
085             * Sets the company ID of this web d a v props.
086             *
087             * @param companyId the company ID of this web d a v props
088             */
089            public void setCompanyId(long companyId);
090    
091            /**
092             * Returns the create date of this web d a v props.
093             *
094             * @return the create date of this web d a v props
095             */
096            public Date getCreateDate();
097    
098            /**
099             * Sets the create date of this web d a v props.
100             *
101             * @param createDate the create date of this web d a v props
102             */
103            public void setCreateDate(Date createDate);
104    
105            /**
106             * Returns the modified date of this web d a v props.
107             *
108             * @return the modified date of this web d a v props
109             */
110            public Date getModifiedDate();
111    
112            /**
113             * Sets the modified date of this web d a v props.
114             *
115             * @param modifiedDate the modified date of this web d a v props
116             */
117            public void setModifiedDate(Date modifiedDate);
118    
119            /**
120             * Returns the fully qualified class name of this web d a v props.
121             *
122             * @return the fully qualified class name of this web d a v props
123             */
124            @Override
125            public String getClassName();
126    
127            public void setClassName(String className);
128    
129            /**
130             * Returns the class name ID of this web d a v props.
131             *
132             * @return the class name ID of this web d a v props
133             */
134            @Override
135            public long getClassNameId();
136    
137            /**
138             * Sets the class name ID of this web d a v props.
139             *
140             * @param classNameId the class name ID of this web d a v props
141             */
142            @Override
143            public void setClassNameId(long classNameId);
144    
145            /**
146             * Returns the class p k of this web d a v props.
147             *
148             * @return the class p k of this web d a v props
149             */
150            @Override
151            public long getClassPK();
152    
153            /**
154             * Sets the class p k of this web d a v props.
155             *
156             * @param classPK the class p k of this web d a v props
157             */
158            @Override
159            public void setClassPK(long classPK);
160    
161            /**
162             * Returns the props of this web d a v props.
163             *
164             * @return the props of this web d a v props
165             */
166            @AutoEscape
167            public String getProps();
168    
169            /**
170             * Sets the props of this web d a v props.
171             *
172             * @param props the props of this web d a v props
173             */
174            public void setProps(String props);
175    
176            @Override
177            public boolean isNew();
178    
179            @Override
180            public void setNew(boolean n);
181    
182            @Override
183            public boolean isCachedModel();
184    
185            @Override
186            public void setCachedModel(boolean cachedModel);
187    
188            @Override
189            public boolean isEscapedModel();
190    
191            @Override
192            public Serializable getPrimaryKeyObj();
193    
194            @Override
195            public void setPrimaryKeyObj(Serializable primaryKeyObj);
196    
197            @Override
198            public ExpandoBridge getExpandoBridge();
199    
200            @Override
201            public void setExpandoBridgeAttributes(BaseModel<?> baseModel);
202    
203            @Override
204            public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge);
205    
206            @Override
207            public void setExpandoBridgeAttributes(ServiceContext serviceContext);
208    
209            @Override
210            public Object clone();
211    
212            @Override
213            public int compareTo(WebDAVProps webDAVProps);
214    
215            @Override
216            public int hashCode();
217    
218            @Override
219            public CacheModel<WebDAVProps> toCacheModel();
220    
221            @Override
222            public WebDAVProps toEscapedModel();
223    
224            @Override
225            public WebDAVProps toUnescapedModel();
226    
227            @Override
228            public String toString();
229    
230            @Override
231            public String toXmlString();
232    }