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