1
14
15 package com.liferay.portal.service;
16
17 import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
18
19
39 public class WebDAVPropsLocalServiceUtil {
40 public static com.liferay.portal.model.WebDAVProps addWebDAVProps(
41 com.liferay.portal.model.WebDAVProps webDAVProps)
42 throws com.liferay.portal.SystemException {
43 return getService().addWebDAVProps(webDAVProps);
44 }
45
46 public static com.liferay.portal.model.WebDAVProps createWebDAVProps(
47 long webDavPropsId) {
48 return getService().createWebDAVProps(webDavPropsId);
49 }
50
51 public static void deleteWebDAVProps(long webDavPropsId)
52 throws com.liferay.portal.PortalException,
53 com.liferay.portal.SystemException {
54 getService().deleteWebDAVProps(webDavPropsId);
55 }
56
57 public static void deleteWebDAVProps(
58 com.liferay.portal.model.WebDAVProps webDAVProps)
59 throws com.liferay.portal.SystemException {
60 getService().deleteWebDAVProps(webDAVProps);
61 }
62
63 public static java.util.List<Object> dynamicQuery(
64 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
65 throws com.liferay.portal.SystemException {
66 return getService().dynamicQuery(dynamicQuery);
67 }
68
69 public static 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 getService().dynamicQuery(dynamicQuery, start, end);
73 }
74
75 public static java.util.List<Object> dynamicQuery(
76 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
77 int end,
78 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
79 throws com.liferay.portal.SystemException {
80 return getService()
81 .dynamicQuery(dynamicQuery, start, end, orderByComparator);
82 }
83
84 public static int dynamicQueryCount(
85 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
86 throws com.liferay.portal.SystemException {
87 return getService().dynamicQueryCount(dynamicQuery);
88 }
89
90 public static com.liferay.portal.model.WebDAVProps getWebDAVProps(
91 long webDavPropsId)
92 throws com.liferay.portal.PortalException,
93 com.liferay.portal.SystemException {
94 return getService().getWebDAVProps(webDavPropsId);
95 }
96
97 public static java.util.List<com.liferay.portal.model.WebDAVProps> getWebDAVPropses(
98 int start, int end) throws com.liferay.portal.SystemException {
99 return getService().getWebDAVPropses(start, end);
100 }
101
102 public static int getWebDAVPropsesCount()
103 throws com.liferay.portal.SystemException {
104 return getService().getWebDAVPropsesCount();
105 }
106
107 public static com.liferay.portal.model.WebDAVProps updateWebDAVProps(
108 com.liferay.portal.model.WebDAVProps webDAVProps)
109 throws com.liferay.portal.SystemException {
110 return getService().updateWebDAVProps(webDAVProps);
111 }
112
113 public static com.liferay.portal.model.WebDAVProps updateWebDAVProps(
114 com.liferay.portal.model.WebDAVProps webDAVProps, boolean merge)
115 throws com.liferay.portal.SystemException {
116 return getService().updateWebDAVProps(webDAVProps, merge);
117 }
118
119 public static void deleteWebDAVProps(java.lang.String className,
120 long classPK) throws com.liferay.portal.SystemException {
121 getService().deleteWebDAVProps(className, classPK);
122 }
123
124 public static com.liferay.portal.model.WebDAVProps getWebDAVProps(
125 long companyId, java.lang.String className, long classPK)
126 throws com.liferay.portal.SystemException {
127 return getService().getWebDAVProps(companyId, className, classPK);
128 }
129
130 public static void storeWebDAVProps(
131 com.liferay.portal.model.WebDAVProps webDavProps)
132 throws com.liferay.portal.PortalException,
133 com.liferay.portal.SystemException {
134 getService().storeWebDAVProps(webDavProps);
135 }
136
137 public static WebDAVPropsLocalService getService() {
138 if (_service == null) {
139 _service = (WebDAVPropsLocalService)PortalBeanLocatorUtil.locate(WebDAVPropsLocalService.class.getName());
140 }
141
142 return _service;
143 }
144
145 public void setService(WebDAVPropsLocalService service) {
146 _service = service;
147 }
148
149 private static WebDAVPropsLocalService _service;
150 }