1   /**
2    * Copyright (c) 2000-2009 Liferay, Inc. All rights reserved.
3    *
4    * Permission is hereby granted, free of charge, to any person obtaining a copy
5    * of this software and associated documentation files (the "Software"), to deal
6    * in the Software without restriction, including without limitation the rights
7    * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8    * copies of the Software, and to permit persons to whom the Software is
9    * furnished to do so, subject to the following conditions:
10   *
11   * The above copyright notice and this permission notice shall be included in
12   * all copies or substantial portions of the Software.
13   *
14   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17   * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19   * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20   * SOFTWARE.
21   */
22  
23  package com.liferay.portal.model;
24  
25  
26  /**
27   * <a href="WebDAVPropsSoap.java.html"><b><i>View Source</i></b></a>
28   *
29   * <p>
30   * ServiceBuilder generated this class. Modifications in this class will be
31   * overwritten the next time is generated.
32   * </p>
33   *
34   * <p>
35   * This class is a wrapper for {@link WebDAVProps}.
36   * </p>
37   *
38   * @author    Brian Wing Shun Chan
39   * @see       WebDAVProps
40   * @generated
41   */
42  public class WebDAVPropsWrapper implements WebDAVProps {
43      public WebDAVPropsWrapper(WebDAVProps webDAVProps) {
44          _webDAVProps = webDAVProps;
45      }
46  
47      public long getPrimaryKey() {
48          return _webDAVProps.getPrimaryKey();
49      }
50  
51      public void setPrimaryKey(long pk) {
52          _webDAVProps.setPrimaryKey(pk);
53      }
54  
55      public long getWebDavPropsId() {
56          return _webDAVProps.getWebDavPropsId();
57      }
58  
59      public void setWebDavPropsId(long webDavPropsId) {
60          _webDAVProps.setWebDavPropsId(webDavPropsId);
61      }
62  
63      public long getCompanyId() {
64          return _webDAVProps.getCompanyId();
65      }
66  
67      public void setCompanyId(long companyId) {
68          _webDAVProps.setCompanyId(companyId);
69      }
70  
71      public java.util.Date getCreateDate() {
72          return _webDAVProps.getCreateDate();
73      }
74  
75      public void setCreateDate(java.util.Date createDate) {
76          _webDAVProps.setCreateDate(createDate);
77      }
78  
79      public java.util.Date getModifiedDate() {
80          return _webDAVProps.getModifiedDate();
81      }
82  
83      public void setModifiedDate(java.util.Date modifiedDate) {
84          _webDAVProps.setModifiedDate(modifiedDate);
85      }
86  
87      public java.lang.String getClassName() {
88          return _webDAVProps.getClassName();
89      }
90  
91      public long getClassNameId() {
92          return _webDAVProps.getClassNameId();
93      }
94  
95      public void setClassNameId(long classNameId) {
96          _webDAVProps.setClassNameId(classNameId);
97      }
98  
99      public long getClassPK() {
100         return _webDAVProps.getClassPK();
101     }
102 
103     public void setClassPK(long classPK) {
104         _webDAVProps.setClassPK(classPK);
105     }
106 
107     public java.lang.String getProps() {
108         return _webDAVProps.getProps();
109     }
110 
111     public void setProps(java.lang.String props) {
112         _webDAVProps.setProps(props);
113     }
114 
115     public com.liferay.portal.model.WebDAVProps toEscapedModel() {
116         return _webDAVProps.toEscapedModel();
117     }
118 
119     public boolean isNew() {
120         return _webDAVProps.isNew();
121     }
122 
123     public boolean setNew(boolean n) {
124         return _webDAVProps.setNew(n);
125     }
126 
127     public boolean isCachedModel() {
128         return _webDAVProps.isCachedModel();
129     }
130 
131     public void setCachedModel(boolean cachedModel) {
132         _webDAVProps.setCachedModel(cachedModel);
133     }
134 
135     public boolean isEscapedModel() {
136         return _webDAVProps.isEscapedModel();
137     }
138 
139     public void setEscapedModel(boolean escapedModel) {
140         _webDAVProps.setEscapedModel(escapedModel);
141     }
142 
143     public java.io.Serializable getPrimaryKeyObj() {
144         return _webDAVProps.getPrimaryKeyObj();
145     }
146 
147     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
148         return _webDAVProps.getExpandoBridge();
149     }
150 
151     public void setExpandoBridgeAttributes(
152         com.liferay.portal.service.ServiceContext serviceContext) {
153         _webDAVProps.setExpandoBridgeAttributes(serviceContext);
154     }
155 
156     public java.lang.Object clone() {
157         return _webDAVProps.clone();
158     }
159 
160     public int compareTo(com.liferay.portal.model.WebDAVProps webDAVProps) {
161         return _webDAVProps.compareTo(webDAVProps);
162     }
163 
164     public int hashCode() {
165         return _webDAVProps.hashCode();
166     }
167 
168     public java.lang.String toString() {
169         return _webDAVProps.toString();
170     }
171 
172     public java.lang.String toXmlString() {
173         return _webDAVProps.toXmlString();
174     }
175 
176     public java.util.Set<com.liferay.portal.kernel.util.Tuple> getPropsSet()
177         throws java.lang.Exception {
178         return _webDAVProps.getPropsSet();
179     }
180 
181     public java.lang.String getText(java.lang.String name,
182         java.lang.String prefix, java.lang.String uri)
183         throws java.lang.Exception {
184         return _webDAVProps.getText(name, prefix, uri);
185     }
186 
187     public void addProp(java.lang.String name, java.lang.String prefix,
188         java.lang.String uri) throws java.lang.Exception {
189         _webDAVProps.addProp(name, prefix, uri);
190     }
191 
192     public void addProp(java.lang.String name, java.lang.String prefix,
193         java.lang.String uri, java.lang.String text) throws java.lang.Exception {
194         _webDAVProps.addProp(name, prefix, uri, text);
195     }
196 
197     public void removeProp(java.lang.String name, java.lang.String prefix,
198         java.lang.String uri) throws java.lang.Exception {
199         _webDAVProps.removeProp(name, prefix, uri);
200     }
201 
202     public void store() throws java.lang.Exception {
203         _webDAVProps.store();
204     }
205 
206     public WebDAVProps getWrappedWebDAVProps() {
207         return _webDAVProps;
208     }
209 
210     private WebDAVProps _webDAVProps;
211 }