1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
13   */
14  
15  package com.liferay.portal.service;
16  
17  
18  /**
19   * <a href="WebDAVPropsLocalServiceUtil.java.html"><b><i>View Source</i></b></a>
20   *
21   * <p>
22   * ServiceBuilder generated this class. Modifications in this class will be
23   * overwritten the next time is generated.
24   * </p>
25   *
26   * <p>
27   * This class is a wrapper for {@link WebDAVPropsLocalService}.
28   * </p>
29   *
30   * @author    Brian Wing Shun Chan
31   * @see       WebDAVPropsLocalService
32   * @generated
33   */
34  public class WebDAVPropsLocalServiceWrapper implements WebDAVPropsLocalService {
35      public WebDAVPropsLocalServiceWrapper(
36          WebDAVPropsLocalService webDAVPropsLocalService) {
37          _webDAVPropsLocalService = webDAVPropsLocalService;
38      }
39  
40      public com.liferay.portal.model.WebDAVProps addWebDAVProps(
41          com.liferay.portal.model.WebDAVProps webDAVProps)
42          throws com.liferay.portal.kernel.exception.SystemException {
43          return _webDAVPropsLocalService.addWebDAVProps(webDAVProps);
44      }
45  
46      public com.liferay.portal.model.WebDAVProps createWebDAVProps(
47          long webDavPropsId) {
48          return _webDAVPropsLocalService.createWebDAVProps(webDavPropsId);
49      }
50  
51      public void deleteWebDAVProps(long webDavPropsId)
52          throws com.liferay.portal.kernel.exception.PortalException,
53              com.liferay.portal.kernel.exception.SystemException {
54          _webDAVPropsLocalService.deleteWebDAVProps(webDavPropsId);
55      }
56  
57      public void deleteWebDAVProps(
58          com.liferay.portal.model.WebDAVProps webDAVProps)
59          throws com.liferay.portal.kernel.exception.SystemException {
60          _webDAVPropsLocalService.deleteWebDAVProps(webDAVProps);
61      }
62  
63      public java.util.List<Object> dynamicQuery(
64          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
65          throws com.liferay.portal.kernel.exception.SystemException {
66          return _webDAVPropsLocalService.dynamicQuery(dynamicQuery);
67      }
68  
69      public java.util.List<Object> dynamicQuery(
70          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
71          int end) throws com.liferay.portal.kernel.exception.SystemException {
72          return _webDAVPropsLocalService.dynamicQuery(dynamicQuery, start, end);
73      }
74  
75      public com.liferay.portal.model.WebDAVProps getWebDAVProps(
76          long webDavPropsId)
77          throws com.liferay.portal.kernel.exception.PortalException,
78              com.liferay.portal.kernel.exception.SystemException {
79          return _webDAVPropsLocalService.getWebDAVProps(webDavPropsId);
80      }
81  
82      public java.util.List<com.liferay.portal.model.WebDAVProps> getWebDAVPropses(
83          int start, int end)
84          throws com.liferay.portal.kernel.exception.SystemException {
85          return _webDAVPropsLocalService.getWebDAVPropses(start, end);
86      }
87  
88      public int getWebDAVPropsesCount()
89          throws com.liferay.portal.kernel.exception.SystemException {
90          return _webDAVPropsLocalService.getWebDAVPropsesCount();
91      }
92  
93      public com.liferay.portal.model.WebDAVProps updateWebDAVProps(
94          com.liferay.portal.model.WebDAVProps webDAVProps)
95          throws com.liferay.portal.kernel.exception.SystemException {
96          return _webDAVPropsLocalService.updateWebDAVProps(webDAVProps);
97      }
98  
99      public com.liferay.portal.model.WebDAVProps updateWebDAVProps(
100         com.liferay.portal.model.WebDAVProps webDAVProps, boolean merge)
101         throws com.liferay.portal.kernel.exception.SystemException {
102         return _webDAVPropsLocalService.updateWebDAVProps(webDAVProps, merge);
103     }
104 
105     public void deleteWebDAVProps(java.lang.String className, long classPK)
106         throws com.liferay.portal.kernel.exception.SystemException {
107         _webDAVPropsLocalService.deleteWebDAVProps(className, classPK);
108     }
109 
110     public com.liferay.portal.model.WebDAVProps getWebDAVProps(long companyId,
111         java.lang.String className, long classPK)
112         throws com.liferay.portal.kernel.exception.SystemException {
113         return _webDAVPropsLocalService.getWebDAVProps(companyId, className,
114             classPK);
115     }
116 
117     public void storeWebDAVProps(
118         com.liferay.portal.model.WebDAVProps webDavProps)
119         throws com.liferay.portal.kernel.exception.PortalException,
120             com.liferay.portal.kernel.exception.SystemException {
121         _webDAVPropsLocalService.storeWebDAVProps(webDavProps);
122     }
123 
124     public WebDAVPropsLocalService getWrappedWebDAVPropsLocalService() {
125         return _webDAVPropsLocalService;
126     }
127 
128     private WebDAVPropsLocalService _webDAVPropsLocalService;
129 }