001
014
015 package com.liferay.portal.model;
016
017
026 public class WebDAVPropsWrapper implements WebDAVProps {
027 public WebDAVPropsWrapper(WebDAVProps webDAVProps) {
028 _webDAVProps = webDAVProps;
029 }
030
031 public Class<?> getModelClass() {
032 return WebDAVProps.class;
033 }
034
035 public String getModelClassName() {
036 return WebDAVProps.class.getName();
037 }
038
039
044 public long getPrimaryKey() {
045 return _webDAVProps.getPrimaryKey();
046 }
047
048
053 public void setPrimaryKey(long primaryKey) {
054 _webDAVProps.setPrimaryKey(primaryKey);
055 }
056
057
062 public long getWebDavPropsId() {
063 return _webDAVProps.getWebDavPropsId();
064 }
065
066
071 public void setWebDavPropsId(long webDavPropsId) {
072 _webDAVProps.setWebDavPropsId(webDavPropsId);
073 }
074
075
080 public long getCompanyId() {
081 return _webDAVProps.getCompanyId();
082 }
083
084
089 public void setCompanyId(long companyId) {
090 _webDAVProps.setCompanyId(companyId);
091 }
092
093
098 public java.util.Date getCreateDate() {
099 return _webDAVProps.getCreateDate();
100 }
101
102
107 public void setCreateDate(java.util.Date createDate) {
108 _webDAVProps.setCreateDate(createDate);
109 }
110
111
116 public java.util.Date getModifiedDate() {
117 return _webDAVProps.getModifiedDate();
118 }
119
120
125 public void setModifiedDate(java.util.Date modifiedDate) {
126 _webDAVProps.setModifiedDate(modifiedDate);
127 }
128
129
134 public java.lang.String getClassName() {
135 return _webDAVProps.getClassName();
136 }
137
138
143 public long getClassNameId() {
144 return _webDAVProps.getClassNameId();
145 }
146
147
152 public void setClassNameId(long classNameId) {
153 _webDAVProps.setClassNameId(classNameId);
154 }
155
156
161 public long getClassPK() {
162 return _webDAVProps.getClassPK();
163 }
164
165
170 public void setClassPK(long classPK) {
171 _webDAVProps.setClassPK(classPK);
172 }
173
174
179 public java.lang.String getProps() {
180 return _webDAVProps.getProps();
181 }
182
183
188 public void setProps(java.lang.String props) {
189 _webDAVProps.setProps(props);
190 }
191
192 public boolean isNew() {
193 return _webDAVProps.isNew();
194 }
195
196 public void setNew(boolean n) {
197 _webDAVProps.setNew(n);
198 }
199
200 public boolean isCachedModel() {
201 return _webDAVProps.isCachedModel();
202 }
203
204 public void setCachedModel(boolean cachedModel) {
205 _webDAVProps.setCachedModel(cachedModel);
206 }
207
208 public boolean isEscapedModel() {
209 return _webDAVProps.isEscapedModel();
210 }
211
212 public void setEscapedModel(boolean escapedModel) {
213 _webDAVProps.setEscapedModel(escapedModel);
214 }
215
216 public java.io.Serializable getPrimaryKeyObj() {
217 return _webDAVProps.getPrimaryKeyObj();
218 }
219
220 public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
221 _webDAVProps.setPrimaryKeyObj(primaryKeyObj);
222 }
223
224 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
225 return _webDAVProps.getExpandoBridge();
226 }
227
228 public void setExpandoBridgeAttributes(
229 com.liferay.portal.service.ServiceContext serviceContext) {
230 _webDAVProps.setExpandoBridgeAttributes(serviceContext);
231 }
232
233 @Override
234 public java.lang.Object clone() {
235 return new WebDAVPropsWrapper((WebDAVProps)_webDAVProps.clone());
236 }
237
238 public int compareTo(com.liferay.portal.model.WebDAVProps webDAVProps) {
239 return _webDAVProps.compareTo(webDAVProps);
240 }
241
242 @Override
243 public int hashCode() {
244 return _webDAVProps.hashCode();
245 }
246
247 public com.liferay.portal.model.CacheModel<com.liferay.portal.model.WebDAVProps> toCacheModel() {
248 return _webDAVProps.toCacheModel();
249 }
250
251 public com.liferay.portal.model.WebDAVProps toEscapedModel() {
252 return new WebDAVPropsWrapper(_webDAVProps.toEscapedModel());
253 }
254
255 @Override
256 public java.lang.String toString() {
257 return _webDAVProps.toString();
258 }
259
260 public java.lang.String toXmlString() {
261 return _webDAVProps.toXmlString();
262 }
263
264 public void persist()
265 throws com.liferay.portal.kernel.exception.SystemException {
266 _webDAVProps.persist();
267 }
268
269 public java.util.Set<com.liferay.portal.kernel.xml.QName> getPropsSet()
270 throws java.lang.Exception {
271 return _webDAVProps.getPropsSet();
272 }
273
274 public java.lang.String getText(java.lang.String name,
275 java.lang.String prefix, java.lang.String uri)
276 throws java.lang.Exception {
277 return _webDAVProps.getText(name, prefix, uri);
278 }
279
280 public void addProp(java.lang.String name, java.lang.String prefix,
281 java.lang.String uri) throws java.lang.Exception {
282 _webDAVProps.addProp(name, prefix, uri);
283 }
284
285 public void addProp(java.lang.String name, java.lang.String prefix,
286 java.lang.String uri, java.lang.String text) throws java.lang.Exception {
287 _webDAVProps.addProp(name, prefix, uri, text);
288 }
289
290 public void removeProp(java.lang.String name, java.lang.String prefix,
291 java.lang.String uri) throws java.lang.Exception {
292 _webDAVProps.removeProp(name, prefix, uri);
293 }
294
295 public void store() throws java.lang.Exception {
296 _webDAVProps.store();
297 }
298
299 public WebDAVProps getWrappedWebDAVProps() {
300 return _webDAVProps;
301 }
302
303 public void resetOriginalValues() {
304 _webDAVProps.resetOriginalValues();
305 }
306
307 private WebDAVProps _webDAVProps;
308 }