1
22
23 package com.liferay.portal.service;
24
25
26
53 public class WebDAVPropsLocalServiceUtil {
54 public static com.liferay.portal.model.WebDAVProps addWebDAVProps(
55 com.liferay.portal.model.WebDAVProps webDAVProps)
56 throws com.liferay.portal.SystemException {
57 WebDAVPropsLocalService webDAVPropsLocalService = WebDAVPropsLocalServiceFactory.getService();
58
59 return webDAVPropsLocalService.addWebDAVProps(webDAVProps);
60 }
61
62 public static void deleteWebDAVProps(long webDavPropsId)
63 throws com.liferay.portal.PortalException,
64 com.liferay.portal.SystemException {
65 WebDAVPropsLocalService webDAVPropsLocalService = WebDAVPropsLocalServiceFactory.getService();
66
67 webDAVPropsLocalService.deleteWebDAVProps(webDavPropsId);
68 }
69
70 public static void deleteWebDAVProps(
71 com.liferay.portal.model.WebDAVProps webDAVProps)
72 throws com.liferay.portal.SystemException {
73 WebDAVPropsLocalService webDAVPropsLocalService = WebDAVPropsLocalServiceFactory.getService();
74
75 webDAVPropsLocalService.deleteWebDAVProps(webDAVProps);
76 }
77
78 public static java.util.List<Object> dynamicQuery(
79 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
80 throws com.liferay.portal.SystemException {
81 WebDAVPropsLocalService webDAVPropsLocalService = WebDAVPropsLocalServiceFactory.getService();
82
83 return webDAVPropsLocalService.dynamicQuery(dynamicQuery);
84 }
85
86 public static java.util.List<Object> dynamicQuery(
87 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
88 int end) throws com.liferay.portal.SystemException {
89 WebDAVPropsLocalService webDAVPropsLocalService = WebDAVPropsLocalServiceFactory.getService();
90
91 return webDAVPropsLocalService.dynamicQuery(dynamicQuery, start, end);
92 }
93
94 public static com.liferay.portal.model.WebDAVProps getWebDAVProps(
95 long webDavPropsId)
96 throws com.liferay.portal.PortalException,
97 com.liferay.portal.SystemException {
98 WebDAVPropsLocalService webDAVPropsLocalService = WebDAVPropsLocalServiceFactory.getService();
99
100 return webDAVPropsLocalService.getWebDAVProps(webDavPropsId);
101 }
102
103 public static com.liferay.portal.model.WebDAVProps updateWebDAVProps(
104 com.liferay.portal.model.WebDAVProps webDAVProps)
105 throws com.liferay.portal.SystemException {
106 WebDAVPropsLocalService webDAVPropsLocalService = WebDAVPropsLocalServiceFactory.getService();
107
108 return webDAVPropsLocalService.updateWebDAVProps(webDAVProps);
109 }
110
111 public static void deleteWebDAVProps(java.lang.String className,
112 long classPK) throws com.liferay.portal.SystemException {
113 WebDAVPropsLocalService webDAVPropsLocalService = WebDAVPropsLocalServiceFactory.getService();
114
115 webDAVPropsLocalService.deleteWebDAVProps(className, classPK);
116 }
117
118 public static com.liferay.portal.model.WebDAVProps getWebDAVProps(
119 long companyId, java.lang.String className, long classPK)
120 throws com.liferay.portal.SystemException {
121 WebDAVPropsLocalService webDAVPropsLocalService = WebDAVPropsLocalServiceFactory.getService();
122
123 return webDAVPropsLocalService.getWebDAVProps(companyId, className,
124 classPK);
125 }
126
127 public static void storeWebDAVProps(
128 com.liferay.portal.model.WebDAVProps webDavProps)
129 throws com.liferay.portal.PortalException,
130 com.liferay.portal.SystemException {
131 WebDAVPropsLocalService webDAVPropsLocalService = WebDAVPropsLocalServiceFactory.getService();
132
133 webDAVPropsLocalService.storeWebDAVProps(webDavProps);
134 }
135 }