001
014
015 package com.liferay.portal.service;
016
017 import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
018 import com.liferay.portal.kernel.util.ReferenceRegistry;
019
020
034 public class WorkflowDefinitionLinkLocalServiceUtil {
035
040
041
048 public static com.liferay.portal.model.WorkflowDefinitionLink addWorkflowDefinitionLink(
049 com.liferay.portal.model.WorkflowDefinitionLink workflowDefinitionLink)
050 throws com.liferay.portal.kernel.exception.SystemException {
051 return getService().addWorkflowDefinitionLink(workflowDefinitionLink);
052 }
053
054
060 public static com.liferay.portal.model.WorkflowDefinitionLink createWorkflowDefinitionLink(
061 long workflowDefinitionLinkId) {
062 return getService()
063 .createWorkflowDefinitionLink(workflowDefinitionLinkId);
064 }
065
066
074 public static com.liferay.portal.model.WorkflowDefinitionLink deleteWorkflowDefinitionLink(
075 long workflowDefinitionLinkId)
076 throws com.liferay.portal.kernel.exception.PortalException,
077 com.liferay.portal.kernel.exception.SystemException {
078 return getService()
079 .deleteWorkflowDefinitionLink(workflowDefinitionLinkId);
080 }
081
082
089 public static com.liferay.portal.model.WorkflowDefinitionLink deleteWorkflowDefinitionLink(
090 com.liferay.portal.model.WorkflowDefinitionLink workflowDefinitionLink)
091 throws com.liferay.portal.kernel.exception.SystemException {
092 return getService().deleteWorkflowDefinitionLink(workflowDefinitionLink);
093 }
094
095 public static com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
096 return getService().dynamicQuery();
097 }
098
099
106 @SuppressWarnings("rawtypes")
107 public static java.util.List dynamicQuery(
108 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
109 throws com.liferay.portal.kernel.exception.SystemException {
110 return getService().dynamicQuery(dynamicQuery);
111 }
112
113
126 @SuppressWarnings("rawtypes")
127 public static java.util.List dynamicQuery(
128 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
129 int end) throws com.liferay.portal.kernel.exception.SystemException {
130 return getService().dynamicQuery(dynamicQuery, start, end);
131 }
132
133
147 @SuppressWarnings("rawtypes")
148 public static java.util.List dynamicQuery(
149 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
150 int end,
151 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
152 throws com.liferay.portal.kernel.exception.SystemException {
153 return getService()
154 .dynamicQuery(dynamicQuery, start, end, orderByComparator);
155 }
156
157
164 public static long dynamicQueryCount(
165 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
166 throws com.liferay.portal.kernel.exception.SystemException {
167 return getService().dynamicQueryCount(dynamicQuery);
168 }
169
170
178 public static long dynamicQueryCount(
179 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
180 com.liferay.portal.kernel.dao.orm.Projection projection)
181 throws com.liferay.portal.kernel.exception.SystemException {
182 return getService().dynamicQueryCount(dynamicQuery, projection);
183 }
184
185 public static com.liferay.portal.model.WorkflowDefinitionLink fetchWorkflowDefinitionLink(
186 long workflowDefinitionLinkId)
187 throws com.liferay.portal.kernel.exception.SystemException {
188 return getService().fetchWorkflowDefinitionLink(workflowDefinitionLinkId);
189 }
190
191
199 public static com.liferay.portal.model.WorkflowDefinitionLink getWorkflowDefinitionLink(
200 long workflowDefinitionLinkId)
201 throws com.liferay.portal.kernel.exception.PortalException,
202 com.liferay.portal.kernel.exception.SystemException {
203 return getService().getWorkflowDefinitionLink(workflowDefinitionLinkId);
204 }
205
206 public static com.liferay.portal.model.PersistedModel getPersistedModel(
207 java.io.Serializable primaryKeyObj)
208 throws com.liferay.portal.kernel.exception.PortalException,
209 com.liferay.portal.kernel.exception.SystemException {
210 return getService().getPersistedModel(primaryKeyObj);
211 }
212
213
225 public static java.util.List<com.liferay.portal.model.WorkflowDefinitionLink> getWorkflowDefinitionLinks(
226 int start, int end)
227 throws com.liferay.portal.kernel.exception.SystemException {
228 return getService().getWorkflowDefinitionLinks(start, end);
229 }
230
231
237 public static int getWorkflowDefinitionLinksCount()
238 throws com.liferay.portal.kernel.exception.SystemException {
239 return getService().getWorkflowDefinitionLinksCount();
240 }
241
242
249 public static com.liferay.portal.model.WorkflowDefinitionLink updateWorkflowDefinitionLink(
250 com.liferay.portal.model.WorkflowDefinitionLink workflowDefinitionLink)
251 throws com.liferay.portal.kernel.exception.SystemException {
252 return getService().updateWorkflowDefinitionLink(workflowDefinitionLink);
253 }
254
255
260 public static java.lang.String getBeanIdentifier() {
261 return getService().getBeanIdentifier();
262 }
263
264
269 public static void setBeanIdentifier(java.lang.String beanIdentifier) {
270 getService().setBeanIdentifier(beanIdentifier);
271 }
272
273 public static com.liferay.portal.model.WorkflowDefinitionLink addWorkflowDefinitionLink(
274 long userId, long companyId, long groupId, java.lang.String className,
275 long classPK, long typePK, java.lang.String workflowDefinitionName,
276 int workflowDefinitionVersion)
277 throws com.liferay.portal.kernel.exception.PortalException,
278 com.liferay.portal.kernel.exception.SystemException {
279 return getService()
280 .addWorkflowDefinitionLink(userId, companyId, groupId,
281 className, classPK, typePK, workflowDefinitionName,
282 workflowDefinitionVersion);
283 }
284
285 public static void deleteWorkflowDefinitionLink(long companyId,
286 long groupId, java.lang.String className, long classPK, long typePK)
287 throws com.liferay.portal.kernel.exception.PortalException,
288 com.liferay.portal.kernel.exception.SystemException {
289 getService()
290 .deleteWorkflowDefinitionLink(companyId, groupId, className,
291 classPK, typePK);
292 }
293
294 public static com.liferay.portal.model.WorkflowDefinitionLink fetchDefaultWorkflowDefinitionLink(
295 long companyId, java.lang.String className, long classPK, long typePK)
296 throws com.liferay.portal.kernel.exception.SystemException {
297 return getService()
298 .fetchDefaultWorkflowDefinitionLink(companyId, className,
299 classPK, typePK);
300 }
301
302 public static com.liferay.portal.model.WorkflowDefinitionLink fetchWorkflowDefinitionLink(
303 long companyId, long groupId, java.lang.String className, long classPK,
304 long typePK)
305 throws com.liferay.portal.kernel.exception.PortalException,
306 com.liferay.portal.kernel.exception.SystemException {
307 return getService()
308 .fetchWorkflowDefinitionLink(companyId, groupId, className,
309 classPK, typePK);
310 }
311
312 public static com.liferay.portal.model.WorkflowDefinitionLink fetchWorkflowDefinitionLink(
313 long companyId, long groupId, java.lang.String className, long classPK,
314 long typePK, boolean strict)
315 throws com.liferay.portal.kernel.exception.PortalException,
316 com.liferay.portal.kernel.exception.SystemException {
317 return getService()
318 .fetchWorkflowDefinitionLink(companyId, groupId, className,
319 classPK, typePK, strict);
320 }
321
322 public static com.liferay.portal.model.WorkflowDefinitionLink getDefaultWorkflowDefinitionLink(
323 long companyId, java.lang.String className, long classPK, long typePK)
324 throws com.liferay.portal.kernel.exception.PortalException,
325 com.liferay.portal.kernel.exception.SystemException {
326 return getService()
327 .getDefaultWorkflowDefinitionLink(companyId, className,
328 classPK, typePK);
329 }
330
331 public static com.liferay.portal.model.WorkflowDefinitionLink getWorkflowDefinitionLink(
332 long companyId, long groupId, java.lang.String className, long classPK,
333 long typePK)
334 throws com.liferay.portal.kernel.exception.PortalException,
335 com.liferay.portal.kernel.exception.SystemException {
336 return getService()
337 .getWorkflowDefinitionLink(companyId, groupId, className,
338 classPK, typePK);
339 }
340
341 public static com.liferay.portal.model.WorkflowDefinitionLink getWorkflowDefinitionLink(
342 long companyId, long groupId, java.lang.String className, long classPK,
343 long typePK, boolean strict)
344 throws com.liferay.portal.kernel.exception.PortalException,
345 com.liferay.portal.kernel.exception.SystemException {
346 return getService()
347 .getWorkflowDefinitionLink(companyId, groupId, className,
348 classPK, typePK, strict);
349 }
350
351 public static int getWorkflowDefinitionLinksCount(long companyId,
352 java.lang.String workflowDefinitionName, int workflowDefinitionVersion)
353 throws com.liferay.portal.kernel.exception.SystemException {
354 return getService()
355 .getWorkflowDefinitionLinksCount(companyId,
356 workflowDefinitionName, workflowDefinitionVersion);
357 }
358
359 public static boolean hasWorkflowDefinitionLink(long companyId,
360 long groupId, java.lang.String className)
361 throws com.liferay.portal.kernel.exception.PortalException,
362 com.liferay.portal.kernel.exception.SystemException {
363 return getService()
364 .hasWorkflowDefinitionLink(companyId, groupId, className);
365 }
366
367 public static boolean hasWorkflowDefinitionLink(long companyId,
368 long groupId, java.lang.String className, long classPK)
369 throws com.liferay.portal.kernel.exception.PortalException,
370 com.liferay.portal.kernel.exception.SystemException {
371 return getService()
372 .hasWorkflowDefinitionLink(companyId, groupId, className,
373 classPK);
374 }
375
376 public static boolean hasWorkflowDefinitionLink(long companyId,
377 long groupId, java.lang.String className, long classPK, long typePK)
378 throws com.liferay.portal.kernel.exception.PortalException,
379 com.liferay.portal.kernel.exception.SystemException {
380 return getService()
381 .hasWorkflowDefinitionLink(companyId, groupId, className,
382 classPK, typePK);
383 }
384
385 public static void updateWorkflowDefinitionLink(long userId,
386 long companyId, long groupId, java.lang.String className, long classPK,
387 long typePK, java.lang.String workflowDefinition)
388 throws com.liferay.portal.kernel.exception.PortalException,
389 com.liferay.portal.kernel.exception.SystemException {
390 getService()
391 .updateWorkflowDefinitionLink(userId, companyId, groupId,
392 className, classPK, typePK, workflowDefinition);
393 }
394
395 public static com.liferay.portal.model.WorkflowDefinitionLink updateWorkflowDefinitionLink(
396 long userId, long companyId, long groupId, java.lang.String className,
397 long classPK, long typePK, java.lang.String workflowDefinitionName,
398 int workflowDefinitionVersion)
399 throws com.liferay.portal.kernel.exception.PortalException,
400 com.liferay.portal.kernel.exception.SystemException {
401 return getService()
402 .updateWorkflowDefinitionLink(userId, companyId, groupId,
403 className, classPK, typePK, workflowDefinitionName,
404 workflowDefinitionVersion);
405 }
406
407 public static void updateWorkflowDefinitionLinks(long userId,
408 long companyId, long groupId, java.lang.String className, long classPK,
409 java.util.List<com.liferay.portal.kernel.util.ObjectValuePair<java.lang.Long, java.lang.String>> workflowDefinitionOVPs)
410 throws com.liferay.portal.kernel.exception.PortalException,
411 com.liferay.portal.kernel.exception.SystemException {
412 getService()
413 .updateWorkflowDefinitionLinks(userId, companyId, groupId,
414 className, classPK, workflowDefinitionOVPs);
415 }
416
417 public static WorkflowDefinitionLinkLocalService getService() {
418 if (_service == null) {
419 _service = (WorkflowDefinitionLinkLocalService)PortalBeanLocatorUtil.locate(WorkflowDefinitionLinkLocalService.class.getName());
420
421 ReferenceRegistry.registerReference(WorkflowDefinitionLinkLocalServiceUtil.class,
422 "_service");
423 }
424
425 return _service;
426 }
427
428
431 public void setService(WorkflowDefinitionLinkLocalService service) {
432 }
433
434 private static WorkflowDefinitionLinkLocalService _service;
435 }