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