001    /**
002     * Copyright (c) 2000-2010 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    
018    /**
019     * <p>
020     * This class is a wrapper for {@link WebDAVProps}.
021     * </p>
022     *
023     * @author    Brian Wing Shun Chan
024     * @see       WebDAVProps
025     * @generated
026     */
027    public class WebDAVPropsWrapper implements WebDAVProps {
028            public WebDAVPropsWrapper(WebDAVProps webDAVProps) {
029                    _webDAVProps = webDAVProps;
030            }
031    
032            public long getPrimaryKey() {
033                    return _webDAVProps.getPrimaryKey();
034            }
035    
036            public void setPrimaryKey(long pk) {
037                    _webDAVProps.setPrimaryKey(pk);
038            }
039    
040            public long getWebDavPropsId() {
041                    return _webDAVProps.getWebDavPropsId();
042            }
043    
044            public void setWebDavPropsId(long webDavPropsId) {
045                    _webDAVProps.setWebDavPropsId(webDavPropsId);
046            }
047    
048            public long getCompanyId() {
049                    return _webDAVProps.getCompanyId();
050            }
051    
052            public void setCompanyId(long companyId) {
053                    _webDAVProps.setCompanyId(companyId);
054            }
055    
056            public java.util.Date getCreateDate() {
057                    return _webDAVProps.getCreateDate();
058            }
059    
060            public void setCreateDate(java.util.Date createDate) {
061                    _webDAVProps.setCreateDate(createDate);
062            }
063    
064            public java.util.Date getModifiedDate() {
065                    return _webDAVProps.getModifiedDate();
066            }
067    
068            public void setModifiedDate(java.util.Date modifiedDate) {
069                    _webDAVProps.setModifiedDate(modifiedDate);
070            }
071    
072            public java.lang.String getClassName() {
073                    return _webDAVProps.getClassName();
074            }
075    
076            public long getClassNameId() {
077                    return _webDAVProps.getClassNameId();
078            }
079    
080            public void setClassNameId(long classNameId) {
081                    _webDAVProps.setClassNameId(classNameId);
082            }
083    
084            public long getClassPK() {
085                    return _webDAVProps.getClassPK();
086            }
087    
088            public void setClassPK(long classPK) {
089                    _webDAVProps.setClassPK(classPK);
090            }
091    
092            public java.lang.String getProps() {
093                    return _webDAVProps.getProps();
094            }
095    
096            public void setProps(java.lang.String props) {
097                    _webDAVProps.setProps(props);
098            }
099    
100            public com.liferay.portal.model.WebDAVProps toEscapedModel() {
101                    return _webDAVProps.toEscapedModel();
102            }
103    
104            public boolean isNew() {
105                    return _webDAVProps.isNew();
106            }
107    
108            public void setNew(boolean n) {
109                    _webDAVProps.setNew(n);
110            }
111    
112            public boolean isCachedModel() {
113                    return _webDAVProps.isCachedModel();
114            }
115    
116            public void setCachedModel(boolean cachedModel) {
117                    _webDAVProps.setCachedModel(cachedModel);
118            }
119    
120            public boolean isEscapedModel() {
121                    return _webDAVProps.isEscapedModel();
122            }
123    
124            public void setEscapedModel(boolean escapedModel) {
125                    _webDAVProps.setEscapedModel(escapedModel);
126            }
127    
128            public java.io.Serializable getPrimaryKeyObj() {
129                    return _webDAVProps.getPrimaryKeyObj();
130            }
131    
132            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
133                    return _webDAVProps.getExpandoBridge();
134            }
135    
136            public void setExpandoBridgeAttributes(
137                    com.liferay.portal.service.ServiceContext serviceContext) {
138                    _webDAVProps.setExpandoBridgeAttributes(serviceContext);
139            }
140    
141            public java.lang.Object clone() {
142                    return _webDAVProps.clone();
143            }
144    
145            public int compareTo(com.liferay.portal.model.WebDAVProps webDAVProps) {
146                    return _webDAVProps.compareTo(webDAVProps);
147            }
148    
149            public int hashCode() {
150                    return _webDAVProps.hashCode();
151            }
152    
153            public java.lang.String toString() {
154                    return _webDAVProps.toString();
155            }
156    
157            public java.lang.String toXmlString() {
158                    return _webDAVProps.toXmlString();
159            }
160    
161            public java.util.Set<com.liferay.portal.kernel.util.Tuple> getPropsSet()
162                    throws java.lang.Exception {
163                    return _webDAVProps.getPropsSet();
164            }
165    
166            public java.lang.String getText(java.lang.String name,
167                    java.lang.String prefix, java.lang.String uri)
168                    throws java.lang.Exception {
169                    return _webDAVProps.getText(name, prefix, uri);
170            }
171    
172            public void addProp(java.lang.String name, java.lang.String prefix,
173                    java.lang.String uri) throws java.lang.Exception {
174                    _webDAVProps.addProp(name, prefix, uri);
175            }
176    
177            public void addProp(java.lang.String name, java.lang.String prefix,
178                    java.lang.String uri, java.lang.String text) throws java.lang.Exception {
179                    _webDAVProps.addProp(name, prefix, uri, text);
180            }
181    
182            public void removeProp(java.lang.String name, java.lang.String prefix,
183                    java.lang.String uri) throws java.lang.Exception {
184                    _webDAVProps.removeProp(name, prefix, uri);
185            }
186    
187            public void store() throws java.lang.Exception {
188                    _webDAVProps.store();
189            }
190    
191            public WebDAVProps getWrappedWebDAVProps() {
192                    return _webDAVProps;
193            }
194    
195            private WebDAVProps _webDAVProps;
196    }