1
14
15 package com.liferay.portal.service;
16
17
18
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.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.PortalException,
53 com.liferay.portal.SystemException {
54 _webDAVPropsLocalService.deleteWebDAVProps(webDavPropsId);
55 }
56
57 public void deleteWebDAVProps(
58 com.liferay.portal.model.WebDAVProps webDAVProps)
59 throws com.liferay.portal.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.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.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.PortalException,
78 com.liferay.portal.SystemException {
79 return _webDAVPropsLocalService.getWebDAVProps(webDavPropsId);
80 }
81
82 public java.util.List<com.liferay.portal.model.WebDAVProps> getWebDAVPropses(
83 int start, int end) throws com.liferay.portal.SystemException {
84 return _webDAVPropsLocalService.getWebDAVPropses(start, end);
85 }
86
87 public int getWebDAVPropsesCount()
88 throws com.liferay.portal.SystemException {
89 return _webDAVPropsLocalService.getWebDAVPropsesCount();
90 }
91
92 public com.liferay.portal.model.WebDAVProps updateWebDAVProps(
93 com.liferay.portal.model.WebDAVProps webDAVProps)
94 throws com.liferay.portal.SystemException {
95 return _webDAVPropsLocalService.updateWebDAVProps(webDAVProps);
96 }
97
98 public com.liferay.portal.model.WebDAVProps updateWebDAVProps(
99 com.liferay.portal.model.WebDAVProps webDAVProps, boolean merge)
100 throws com.liferay.portal.SystemException {
101 return _webDAVPropsLocalService.updateWebDAVProps(webDAVProps, merge);
102 }
103
104 public void deleteWebDAVProps(java.lang.String className, long classPK)
105 throws com.liferay.portal.SystemException {
106 _webDAVPropsLocalService.deleteWebDAVProps(className, classPK);
107 }
108
109 public com.liferay.portal.model.WebDAVProps getWebDAVProps(long companyId,
110 java.lang.String className, long classPK)
111 throws com.liferay.portal.SystemException {
112 return _webDAVPropsLocalService.getWebDAVProps(companyId, className,
113 classPK);
114 }
115
116 public void storeWebDAVProps(
117 com.liferay.portal.model.WebDAVProps webDavProps)
118 throws com.liferay.portal.PortalException,
119 com.liferay.portal.SystemException {
120 _webDAVPropsLocalService.storeWebDAVProps(webDavProps);
121 }
122
123 public WebDAVPropsLocalService getWrappedWebDAVPropsLocalService() {
124 return _webDAVPropsLocalService;
125 }
126
127 private WebDAVPropsLocalService _webDAVPropsLocalService;
128 }