1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * The contents of this file are subject to the terms of the Liferay Enterprise
5    * Subscription License ("License"). You may not use this file except in
6    * compliance with the License. You can obtain a copy of the License by
7    * contacting Liferay, Inc. See the License for the specific language governing
8    * permissions and limitations under the License, including but not limited to
9    * distribution rights of the Software.
10   *
11   *
12   *
13   */
14  
15  package com.liferay.portal.model;
16  
17  /**
18   * <a href="WebDAVPropsSoap.java.html"><b><i>View Source</i></b></a>
19   *
20   * <p>
21   * ServiceBuilder generated this class. Modifications in this class will be
22   * overwritten the next time is generated.
23   * </p>
24   *
25   * <p>
26   * This class is a wrapper for {@link WebDAVProps}.
27   * </p>
28   *
29   * @author    Brian Wing Shun Chan
30   * @see       WebDAVProps
31   * @generated
32   */
33  public class WebDAVPropsWrapper implements WebDAVProps {
34      public WebDAVPropsWrapper(WebDAVProps webDAVProps) {
35          _webDAVProps = webDAVProps;
36      }
37  
38      public long getPrimaryKey() {
39          return _webDAVProps.getPrimaryKey();
40      }
41  
42      public void setPrimaryKey(long pk) {
43          _webDAVProps.setPrimaryKey(pk);
44      }
45  
46      public long getWebDavPropsId() {
47          return _webDAVProps.getWebDavPropsId();
48      }
49  
50      public void setWebDavPropsId(long webDavPropsId) {
51          _webDAVProps.setWebDavPropsId(webDavPropsId);
52      }
53  
54      public long getCompanyId() {
55          return _webDAVProps.getCompanyId();
56      }
57  
58      public void setCompanyId(long companyId) {
59          _webDAVProps.setCompanyId(companyId);
60      }
61  
62      public java.util.Date getCreateDate() {
63          return _webDAVProps.getCreateDate();
64      }
65  
66      public void setCreateDate(java.util.Date createDate) {
67          _webDAVProps.setCreateDate(createDate);
68      }
69  
70      public java.util.Date getModifiedDate() {
71          return _webDAVProps.getModifiedDate();
72      }
73  
74      public void setModifiedDate(java.util.Date modifiedDate) {
75          _webDAVProps.setModifiedDate(modifiedDate);
76      }
77  
78      public java.lang.String getClassName() {
79          return _webDAVProps.getClassName();
80      }
81  
82      public long getClassNameId() {
83          return _webDAVProps.getClassNameId();
84      }
85  
86      public void setClassNameId(long classNameId) {
87          _webDAVProps.setClassNameId(classNameId);
88      }
89  
90      public long getClassPK() {
91          return _webDAVProps.getClassPK();
92      }
93  
94      public void setClassPK(long classPK) {
95          _webDAVProps.setClassPK(classPK);
96      }
97  
98      public java.lang.String getProps() {
99          return _webDAVProps.getProps();
100     }
101 
102     public void setProps(java.lang.String props) {
103         _webDAVProps.setProps(props);
104     }
105 
106     public boolean isNew() {
107         return _webDAVProps.isNew();
108     }
109 
110     public boolean setNew(boolean n) {
111         return _webDAVProps.setNew(n);
112     }
113 
114     public boolean isCachedModel() {
115         return _webDAVProps.isCachedModel();
116     }
117 
118     public void setCachedModel(boolean cachedModel) {
119         _webDAVProps.setCachedModel(cachedModel);
120     }
121 
122     public boolean isEscapedModel() {
123         return _webDAVProps.isEscapedModel();
124     }
125 
126     public void setEscapedModel(boolean escapedModel) {
127         _webDAVProps.setEscapedModel(escapedModel);
128     }
129 
130     public java.io.Serializable getPrimaryKeyObj() {
131         return _webDAVProps.getPrimaryKeyObj();
132     }
133 
134     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
135         return _webDAVProps.getExpandoBridge();
136     }
137 
138     public void setExpandoBridgeAttributes(
139         com.liferay.portal.service.ServiceContext serviceContext) {
140         _webDAVProps.setExpandoBridgeAttributes(serviceContext);
141     }
142 
143     public java.lang.Object clone() {
144         return _webDAVProps.clone();
145     }
146 
147     public int compareTo(com.liferay.portal.model.WebDAVProps webDAVProps) {
148         return _webDAVProps.compareTo(webDAVProps);
149     }
150 
151     public int hashCode() {
152         return _webDAVProps.hashCode();
153     }
154 
155     public com.liferay.portal.model.WebDAVProps toEscapedModel() {
156         return _webDAVProps.toEscapedModel();
157     }
158 
159     public java.lang.String toString() {
160         return _webDAVProps.toString();
161     }
162 
163     public java.lang.String toXmlString() {
164         return _webDAVProps.toXmlString();
165     }
166 
167     public java.util.Set<com.liferay.portal.kernel.util.Tuple> getPropsSet()
168         throws java.lang.Exception {
169         return _webDAVProps.getPropsSet();
170     }
171 
172     public java.lang.String getText(java.lang.String name,
173         java.lang.String prefix, java.lang.String uri)
174         throws java.lang.Exception {
175         return _webDAVProps.getText(name, prefix, uri);
176     }
177 
178     public void addProp(java.lang.String name, java.lang.String prefix,
179         java.lang.String uri) throws java.lang.Exception {
180         _webDAVProps.addProp(name, prefix, uri);
181     }
182 
183     public void addProp(java.lang.String name, java.lang.String prefix,
184         java.lang.String uri, java.lang.String text) throws java.lang.Exception {
185         _webDAVProps.addProp(name, prefix, uri, text);
186     }
187 
188     public void removeProp(java.lang.String name, java.lang.String prefix,
189         java.lang.String uri) throws java.lang.Exception {
190         _webDAVProps.removeProp(name, prefix, uri);
191     }
192 
193     public void store() throws java.lang.Exception {
194         _webDAVProps.store();
195     }
196 
197     public WebDAVProps getWrappedWebDAVProps() {
198         return _webDAVProps;
199     }
200 
201     private WebDAVProps _webDAVProps;
202 }