1
22
23 package com.liferay.portal.service.persistence;
24
25
26
39 public class WebDAVPropsUtil {
40 public static void cacheResult(
41 com.liferay.portal.model.WebDAVProps webDAVProps) {
42 getPersistence().cacheResult(webDAVProps);
43 }
44
45 public static void cacheResult(
46 java.util.List<com.liferay.portal.model.WebDAVProps> webDAVPropses) {
47 getPersistence().cacheResult(webDAVPropses);
48 }
49
50 public static void clearCache() {
51 getPersistence().clearCache();
52 }
53
54 public static com.liferay.portal.model.WebDAVProps create(
55 long webDavPropsId) {
56 return getPersistence().create(webDavPropsId);
57 }
58
59 public static com.liferay.portal.model.WebDAVProps remove(
60 long webDavPropsId)
61 throws com.liferay.portal.NoSuchWebDAVPropsException,
62 com.liferay.portal.SystemException {
63 return getPersistence().remove(webDavPropsId);
64 }
65
66 public static com.liferay.portal.model.WebDAVProps remove(
67 com.liferay.portal.model.WebDAVProps webDAVProps)
68 throws com.liferay.portal.SystemException {
69 return getPersistence().remove(webDAVProps);
70 }
71
72
75 public static com.liferay.portal.model.WebDAVProps update(
76 com.liferay.portal.model.WebDAVProps webDAVProps)
77 throws com.liferay.portal.SystemException {
78 return getPersistence().update(webDAVProps);
79 }
80
81
93 public static com.liferay.portal.model.WebDAVProps update(
94 com.liferay.portal.model.WebDAVProps webDAVProps, boolean merge)
95 throws com.liferay.portal.SystemException {
96 return getPersistence().update(webDAVProps, merge);
97 }
98
99 public static com.liferay.portal.model.WebDAVProps updateImpl(
100 com.liferay.portal.model.WebDAVProps webDAVProps, boolean merge)
101 throws com.liferay.portal.SystemException {
102 return getPersistence().updateImpl(webDAVProps, merge);
103 }
104
105 public static com.liferay.portal.model.WebDAVProps findByPrimaryKey(
106 long webDavPropsId)
107 throws com.liferay.portal.NoSuchWebDAVPropsException,
108 com.liferay.portal.SystemException {
109 return getPersistence().findByPrimaryKey(webDavPropsId);
110 }
111
112 public static com.liferay.portal.model.WebDAVProps fetchByPrimaryKey(
113 long webDavPropsId) throws com.liferay.portal.SystemException {
114 return getPersistence().fetchByPrimaryKey(webDavPropsId);
115 }
116
117 public static com.liferay.portal.model.WebDAVProps findByC_C(
118 long classNameId, long classPK)
119 throws com.liferay.portal.NoSuchWebDAVPropsException,
120 com.liferay.portal.SystemException {
121 return getPersistence().findByC_C(classNameId, classPK);
122 }
123
124 public static com.liferay.portal.model.WebDAVProps fetchByC_C(
125 long classNameId, long classPK)
126 throws com.liferay.portal.SystemException {
127 return getPersistence().fetchByC_C(classNameId, classPK);
128 }
129
130 public static com.liferay.portal.model.WebDAVProps fetchByC_C(
131 long classNameId, long classPK, boolean retrieveFromCache)
132 throws com.liferay.portal.SystemException {
133 return getPersistence()
134 .fetchByC_C(classNameId, classPK, retrieveFromCache);
135 }
136
137 public static java.util.List<Object> findWithDynamicQuery(
138 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
139 throws com.liferay.portal.SystemException {
140 return getPersistence().findWithDynamicQuery(dynamicQuery);
141 }
142
143 public static java.util.List<Object> findWithDynamicQuery(
144 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
145 int end) throws com.liferay.portal.SystemException {
146 return getPersistence().findWithDynamicQuery(dynamicQuery, start, end);
147 }
148
149 public static java.util.List<com.liferay.portal.model.WebDAVProps> findAll()
150 throws com.liferay.portal.SystemException {
151 return getPersistence().findAll();
152 }
153
154 public static java.util.List<com.liferay.portal.model.WebDAVProps> findAll(
155 int start, int end) throws com.liferay.portal.SystemException {
156 return getPersistence().findAll(start, end);
157 }
158
159 public static java.util.List<com.liferay.portal.model.WebDAVProps> findAll(
160 int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
161 throws com.liferay.portal.SystemException {
162 return getPersistence().findAll(start, end, obc);
163 }
164
165 public static void removeByC_C(long classNameId, long classPK)
166 throws com.liferay.portal.NoSuchWebDAVPropsException,
167 com.liferay.portal.SystemException {
168 getPersistence().removeByC_C(classNameId, classPK);
169 }
170
171 public static void removeAll() throws com.liferay.portal.SystemException {
172 getPersistence().removeAll();
173 }
174
175 public static int countByC_C(long classNameId, long classPK)
176 throws com.liferay.portal.SystemException {
177 return getPersistence().countByC_C(classNameId, classPK);
178 }
179
180 public static int countAll() throws com.liferay.portal.SystemException {
181 return getPersistence().countAll();
182 }
183
184 public static WebDAVPropsPersistence getPersistence() {
185 return _persistence;
186 }
187
188 public void setPersistence(WebDAVPropsPersistence persistence) {
189 _persistence = persistence;
190 }
191
192 private static WebDAVPropsPersistence _persistence;
193 }