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.service;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link WebDAVPropsLocalService}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       WebDAVPropsLocalService
024     * @generated
025     */
026    public class WebDAVPropsLocalServiceWrapper implements WebDAVPropsLocalService {
027            public WebDAVPropsLocalServiceWrapper(
028                    WebDAVPropsLocalService webDAVPropsLocalService) {
029                    _webDAVPropsLocalService = webDAVPropsLocalService;
030            }
031    
032            public com.liferay.portal.model.WebDAVProps addWebDAVProps(
033                    com.liferay.portal.model.WebDAVProps webDAVProps)
034                    throws com.liferay.portal.kernel.exception.SystemException {
035                    return _webDAVPropsLocalService.addWebDAVProps(webDAVProps);
036            }
037    
038            public com.liferay.portal.model.WebDAVProps createWebDAVProps(
039                    long webDavPropsId) {
040                    return _webDAVPropsLocalService.createWebDAVProps(webDavPropsId);
041            }
042    
043            public void deleteWebDAVProps(long webDavPropsId)
044                    throws com.liferay.portal.kernel.exception.PortalException,
045                            com.liferay.portal.kernel.exception.SystemException {
046                    _webDAVPropsLocalService.deleteWebDAVProps(webDavPropsId);
047            }
048    
049            public void deleteWebDAVProps(
050                    com.liferay.portal.model.WebDAVProps webDAVProps)
051                    throws com.liferay.portal.kernel.exception.SystemException {
052                    _webDAVPropsLocalService.deleteWebDAVProps(webDAVProps);
053            }
054    
055            @SuppressWarnings("unchecked")
056            public java.util.List dynamicQuery(
057                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
058                    throws com.liferay.portal.kernel.exception.SystemException {
059                    return _webDAVPropsLocalService.dynamicQuery(dynamicQuery);
060            }
061    
062            @SuppressWarnings("unchecked")
063            public java.util.List dynamicQuery(
064                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
065                    int end) throws com.liferay.portal.kernel.exception.SystemException {
066                    return _webDAVPropsLocalService.dynamicQuery(dynamicQuery, start, end);
067            }
068    
069            @SuppressWarnings("unchecked")
070            public java.util.List dynamicQuery(
071                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
072                    int end,
073                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
074                    throws com.liferay.portal.kernel.exception.SystemException {
075                    return _webDAVPropsLocalService.dynamicQuery(dynamicQuery, start, end,
076                            orderByComparator);
077            }
078    
079            public long dynamicQueryCount(
080                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
081                    throws com.liferay.portal.kernel.exception.SystemException {
082                    return _webDAVPropsLocalService.dynamicQueryCount(dynamicQuery);
083            }
084    
085            public com.liferay.portal.model.WebDAVProps getWebDAVProps(
086                    long webDavPropsId)
087                    throws com.liferay.portal.kernel.exception.PortalException,
088                            com.liferay.portal.kernel.exception.SystemException {
089                    return _webDAVPropsLocalService.getWebDAVProps(webDavPropsId);
090            }
091    
092            public java.util.List<com.liferay.portal.model.WebDAVProps> getWebDAVPropses(
093                    int start, int end)
094                    throws com.liferay.portal.kernel.exception.SystemException {
095                    return _webDAVPropsLocalService.getWebDAVPropses(start, end);
096            }
097    
098            public int getWebDAVPropsesCount()
099                    throws com.liferay.portal.kernel.exception.SystemException {
100                    return _webDAVPropsLocalService.getWebDAVPropsesCount();
101            }
102    
103            public com.liferay.portal.model.WebDAVProps updateWebDAVProps(
104                    com.liferay.portal.model.WebDAVProps webDAVProps)
105                    throws com.liferay.portal.kernel.exception.SystemException {
106                    return _webDAVPropsLocalService.updateWebDAVProps(webDAVProps);
107            }
108    
109            public com.liferay.portal.model.WebDAVProps updateWebDAVProps(
110                    com.liferay.portal.model.WebDAVProps webDAVProps, boolean merge)
111                    throws com.liferay.portal.kernel.exception.SystemException {
112                    return _webDAVPropsLocalService.updateWebDAVProps(webDAVProps, merge);
113            }
114    
115            public void deleteWebDAVProps(java.lang.String className, long classPK)
116                    throws com.liferay.portal.kernel.exception.SystemException {
117                    _webDAVPropsLocalService.deleteWebDAVProps(className, classPK);
118            }
119    
120            public com.liferay.portal.model.WebDAVProps getWebDAVProps(long companyId,
121                    java.lang.String className, long classPK)
122                    throws com.liferay.portal.kernel.exception.SystemException {
123                    return _webDAVPropsLocalService.getWebDAVProps(companyId, className,
124                            classPK);
125            }
126    
127            public void storeWebDAVProps(
128                    com.liferay.portal.model.WebDAVProps webDavProps)
129                    throws com.liferay.portal.kernel.exception.PortalException,
130                            com.liferay.portal.kernel.exception.SystemException {
131                    _webDAVPropsLocalService.storeWebDAVProps(webDavProps);
132            }
133    
134            public WebDAVPropsLocalService getWrappedWebDAVPropsLocalService() {
135                    return _webDAVPropsLocalService;
136            }
137    
138            private WebDAVPropsLocalService _webDAVPropsLocalService;
139    }