1
22
23 package com.liferay.portal.service.persistence;
24
25
31 public class ServiceComponentUtil {
32 public static com.liferay.portal.model.ServiceComponent create(
33 long serviceComponentId) {
34 return getPersistence().create(serviceComponentId);
35 }
36
37 public static com.liferay.portal.model.ServiceComponent remove(
38 long serviceComponentId)
39 throws com.liferay.portal.NoSuchServiceComponentException,
40 com.liferay.portal.SystemException {
41 return getPersistence().remove(serviceComponentId);
42 }
43
44 public static com.liferay.portal.model.ServiceComponent remove(
45 com.liferay.portal.model.ServiceComponent serviceComponent)
46 throws com.liferay.portal.SystemException {
47 return getPersistence().remove(serviceComponent);
48 }
49
50
53 public static com.liferay.portal.model.ServiceComponent update(
54 com.liferay.portal.model.ServiceComponent serviceComponent)
55 throws com.liferay.portal.SystemException {
56 return getPersistence().update(serviceComponent);
57 }
58
59
72 public static com.liferay.portal.model.ServiceComponent update(
73 com.liferay.portal.model.ServiceComponent serviceComponent,
74 boolean merge) throws com.liferay.portal.SystemException {
75 return getPersistence().update(serviceComponent, merge);
76 }
77
78 public static com.liferay.portal.model.ServiceComponent updateImpl(
79 com.liferay.portal.model.ServiceComponent serviceComponent,
80 boolean merge) throws com.liferay.portal.SystemException {
81 return getPersistence().updateImpl(serviceComponent, merge);
82 }
83
84 public static com.liferay.portal.model.ServiceComponent findByPrimaryKey(
85 long serviceComponentId)
86 throws com.liferay.portal.NoSuchServiceComponentException,
87 com.liferay.portal.SystemException {
88 return getPersistence().findByPrimaryKey(serviceComponentId);
89 }
90
91 public static com.liferay.portal.model.ServiceComponent fetchByPrimaryKey(
92 long serviceComponentId) throws com.liferay.portal.SystemException {
93 return getPersistence().fetchByPrimaryKey(serviceComponentId);
94 }
95
96 public static java.util.List<com.liferay.portal.model.ServiceComponent> findByBuildNamespace(
97 java.lang.String buildNamespace)
98 throws com.liferay.portal.SystemException {
99 return getPersistence().findByBuildNamespace(buildNamespace);
100 }
101
102 public static java.util.List<com.liferay.portal.model.ServiceComponent> findByBuildNamespace(
103 java.lang.String buildNamespace, int begin, int end)
104 throws com.liferay.portal.SystemException {
105 return getPersistence().findByBuildNamespace(buildNamespace, begin, end);
106 }
107
108 public static java.util.List<com.liferay.portal.model.ServiceComponent> findByBuildNamespace(
109 java.lang.String buildNamespace, int begin, int end,
110 com.liferay.portal.kernel.util.OrderByComparator obc)
111 throws com.liferay.portal.SystemException {
112 return getPersistence()
113 .findByBuildNamespace(buildNamespace, begin, end, obc);
114 }
115
116 public static com.liferay.portal.model.ServiceComponent findByBuildNamespace_First(
117 java.lang.String buildNamespace,
118 com.liferay.portal.kernel.util.OrderByComparator obc)
119 throws com.liferay.portal.NoSuchServiceComponentException,
120 com.liferay.portal.SystemException {
121 return getPersistence().findByBuildNamespace_First(buildNamespace, obc);
122 }
123
124 public static com.liferay.portal.model.ServiceComponent findByBuildNamespace_Last(
125 java.lang.String buildNamespace,
126 com.liferay.portal.kernel.util.OrderByComparator obc)
127 throws com.liferay.portal.NoSuchServiceComponentException,
128 com.liferay.portal.SystemException {
129 return getPersistence().findByBuildNamespace_Last(buildNamespace, obc);
130 }
131
132 public static com.liferay.portal.model.ServiceComponent[] findByBuildNamespace_PrevAndNext(
133 long serviceComponentId, java.lang.String buildNamespace,
134 com.liferay.portal.kernel.util.OrderByComparator obc)
135 throws com.liferay.portal.NoSuchServiceComponentException,
136 com.liferay.portal.SystemException {
137 return getPersistence()
138 .findByBuildNamespace_PrevAndNext(serviceComponentId,
139 buildNamespace, obc);
140 }
141
142 public static com.liferay.portal.model.ServiceComponent findByBNS_BNU(
143 java.lang.String buildNamespace, long buildNumber)
144 throws com.liferay.portal.NoSuchServiceComponentException,
145 com.liferay.portal.SystemException {
146 return getPersistence().findByBNS_BNU(buildNamespace, buildNumber);
147 }
148
149 public static com.liferay.portal.model.ServiceComponent fetchByBNS_BNU(
150 java.lang.String buildNamespace, long buildNumber)
151 throws com.liferay.portal.SystemException {
152 return getPersistence().fetchByBNS_BNU(buildNamespace, buildNumber);
153 }
154
155 public static java.util.List<com.liferay.portal.model.ServiceComponent> findWithDynamicQuery(
156 com.liferay.portal.kernel.dao.DynamicQueryInitializer queryInitializer)
157 throws com.liferay.portal.SystemException {
158 return getPersistence().findWithDynamicQuery(queryInitializer);
159 }
160
161 public static java.util.List<com.liferay.portal.model.ServiceComponent> findWithDynamicQuery(
162 com.liferay.portal.kernel.dao.DynamicQueryInitializer queryInitializer,
163 int begin, int end) throws com.liferay.portal.SystemException {
164 return getPersistence()
165 .findWithDynamicQuery(queryInitializer, begin, end);
166 }
167
168 public static java.util.List<com.liferay.portal.model.ServiceComponent> findAll()
169 throws com.liferay.portal.SystemException {
170 return getPersistence().findAll();
171 }
172
173 public static java.util.List<com.liferay.portal.model.ServiceComponent> findAll(
174 int begin, int end) throws com.liferay.portal.SystemException {
175 return getPersistence().findAll(begin, end);
176 }
177
178 public static java.util.List<com.liferay.portal.model.ServiceComponent> findAll(
179 int begin, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
180 throws com.liferay.portal.SystemException {
181 return getPersistence().findAll(begin, end, obc);
182 }
183
184 public static void removeByBuildNamespace(java.lang.String buildNamespace)
185 throws com.liferay.portal.SystemException {
186 getPersistence().removeByBuildNamespace(buildNamespace);
187 }
188
189 public static void removeByBNS_BNU(java.lang.String buildNamespace,
190 long buildNumber)
191 throws com.liferay.portal.NoSuchServiceComponentException,
192 com.liferay.portal.SystemException {
193 getPersistence().removeByBNS_BNU(buildNamespace, buildNumber);
194 }
195
196 public static void removeAll() throws com.liferay.portal.SystemException {
197 getPersistence().removeAll();
198 }
199
200 public static int countByBuildNamespace(java.lang.String buildNamespace)
201 throws com.liferay.portal.SystemException {
202 return getPersistence().countByBuildNamespace(buildNamespace);
203 }
204
205 public static int countByBNS_BNU(java.lang.String buildNamespace,
206 long buildNumber) throws com.liferay.portal.SystemException {
207 return getPersistence().countByBNS_BNU(buildNamespace, buildNumber);
208 }
209
210 public static int countAll() throws com.liferay.portal.SystemException {
211 return getPersistence().countAll();
212 }
213
214 public static ServiceComponentPersistence getPersistence() {
215 return _getUtil()._persistence;
216 }
217
218 public void setPersistence(ServiceComponentPersistence persistence) {
219 _persistence = persistence;
220 }
221
222 private static ServiceComponentUtil _getUtil() {
223 if (_util == null) {
224 _util = (ServiceComponentUtil)com.liferay.portal.kernel.bean.BeanLocatorUtil.locate(_UTIL);
225 }
226
227 return _util;
228 }
229
230 private static final String _UTIL = ServiceComponentUtil.class.getName();
231 private static ServiceComponentUtil _util;
232 private ServiceComponentPersistence _persistence;
233 }