001    /**
002     * Copyright (c) 2000-present 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            MVCCModel {
044            /*
045             * NOTE FOR DEVELOPERS:
046             *
047             * 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.
048             */
049    
050            /**
051             * Returns the primary key of this web d a v props.
052             *
053             * @return the primary key of this web d a v props
054             */
055            public long getPrimaryKey();
056    
057            /**
058             * Sets the primary key of this web d a v props.
059             *
060             * @param primaryKey the primary key of this web d a v props
061             */
062            public void setPrimaryKey(long primaryKey);
063    
064            /**
065             * Returns the mvcc version of this web d a v props.
066             *
067             * @return the mvcc version of this web d a v props
068             */
069            @Override
070            public long getMvccVersion();
071    
072            /**
073             * Sets the mvcc version of this web d a v props.
074             *
075             * @param mvccVersion the mvcc version of this web d a v props
076             */
077            @Override
078            public void setMvccVersion(long mvccVersion);
079    
080            /**
081             * Returns the web dav props ID of this web d a v props.
082             *
083             * @return the web dav props ID of this web d a v props
084             */
085            public long getWebDavPropsId();
086    
087            /**
088             * Sets the web dav props ID of this web d a v props.
089             *
090             * @param webDavPropsId the web dav props ID of this web d a v props
091             */
092            public void setWebDavPropsId(long webDavPropsId);
093    
094            /**
095             * Returns the company ID of this web d a v props.
096             *
097             * @return the company ID of this web d a v props
098             */
099            public long getCompanyId();
100    
101            /**
102             * Sets the company ID of this web d a v props.
103             *
104             * @param companyId the company ID of this web d a v props
105             */
106            public void setCompanyId(long companyId);
107    
108            /**
109             * Returns the create date of this web d a v props.
110             *
111             * @return the create date of this web d a v props
112             */
113            public Date getCreateDate();
114    
115            /**
116             * Sets the create date of this web d a v props.
117             *
118             * @param createDate the create date of this web d a v props
119             */
120            public void setCreateDate(Date createDate);
121    
122            /**
123             * Returns the modified date of this web d a v props.
124             *
125             * @return the modified date of this web d a v props
126             */
127            public Date getModifiedDate();
128    
129            /**
130             * Sets the modified date of this web d a v props.
131             *
132             * @param modifiedDate the modified date of this web d a v props
133             */
134            public void setModifiedDate(Date modifiedDate);
135    
136            /**
137             * Returns the fully qualified class name of this web d a v props.
138             *
139             * @return the fully qualified class name of this web d a v props
140             */
141            @Override
142            public String getClassName();
143    
144            public void setClassName(String className);
145    
146            /**
147             * Returns the class name ID of this web d a v props.
148             *
149             * @return the class name ID of this web d a v props
150             */
151            @Override
152            public long getClassNameId();
153    
154            /**
155             * Sets the class name ID of this web d a v props.
156             *
157             * @param classNameId the class name ID of this web d a v props
158             */
159            @Override
160            public void setClassNameId(long classNameId);
161    
162            /**
163             * Returns the class p k of this web d a v props.
164             *
165             * @return the class p k of this web d a v props
166             */
167            @Override
168            public long getClassPK();
169    
170            /**
171             * Sets the class p k of this web d a v props.
172             *
173             * @param classPK the class p k of this web d a v props
174             */
175            @Override
176            public void setClassPK(long classPK);
177    
178            /**
179             * Returns the props of this web d a v props.
180             *
181             * @return the props of this web d a v props
182             */
183            @AutoEscape
184            public String getProps();
185    
186            /**
187             * Sets the props of this web d a v props.
188             *
189             * @param props the props of this web d a v props
190             */
191            public void setProps(String props);
192    
193            @Override
194            public boolean isNew();
195    
196            @Override
197            public void setNew(boolean n);
198    
199            @Override
200            public boolean isCachedModel();
201    
202            @Override
203            public void setCachedModel(boolean cachedModel);
204    
205            @Override
206            public boolean isEscapedModel();
207    
208            @Override
209            public Serializable getPrimaryKeyObj();
210    
211            @Override
212            public void setPrimaryKeyObj(Serializable primaryKeyObj);
213    
214            @Override
215            public ExpandoBridge getExpandoBridge();
216    
217            @Override
218            public void setExpandoBridgeAttributes(BaseModel<?> baseModel);
219    
220            @Override
221            public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge);
222    
223            @Override
224            public void setExpandoBridgeAttributes(ServiceContext serviceContext);
225    
226            @Override
227            public Object clone();
228    
229            @Override
230            public int compareTo(com.liferay.portal.model.WebDAVProps webDAVProps);
231    
232            @Override
233            public int hashCode();
234    
235            @Override
236            public CacheModel<com.liferay.portal.model.WebDAVProps> toCacheModel();
237    
238            @Override
239            public com.liferay.portal.model.WebDAVProps toEscapedModel();
240    
241            @Override
242            public com.liferay.portal.model.WebDAVProps toUnescapedModel();
243    
244            @Override
245            public String toString();
246    
247            @Override
248            public String toXmlString();
249    }