1
14
15 package com.liferay.portal.service;
16
17 import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
18
19
39 public class WorkflowInstanceLinkLocalServiceUtil {
40 public static com.liferay.portal.model.WorkflowInstanceLink addWorkflowInstanceLink(
41 com.liferay.portal.model.WorkflowInstanceLink workflowInstanceLink)
42 throws com.liferay.portal.kernel.exception.SystemException {
43 return getService().addWorkflowInstanceLink(workflowInstanceLink);
44 }
45
46 public static com.liferay.portal.model.WorkflowInstanceLink createWorkflowInstanceLink(
47 long workflowInstanceLinkId) {
48 return getService().createWorkflowInstanceLink(workflowInstanceLinkId);
49 }
50
51 public static void deleteWorkflowInstanceLink(long workflowInstanceLinkId)
52 throws com.liferay.portal.kernel.exception.PortalException,
53 com.liferay.portal.kernel.exception.SystemException {
54 getService().deleteWorkflowInstanceLink(workflowInstanceLinkId);
55 }
56
57 public static void deleteWorkflowInstanceLink(
58 com.liferay.portal.model.WorkflowInstanceLink workflowInstanceLink)
59 throws com.liferay.portal.kernel.exception.SystemException {
60 getService().deleteWorkflowInstanceLink(workflowInstanceLink);
61 }
62
63 public static java.util.List<Object> dynamicQuery(
64 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
65 throws com.liferay.portal.kernel.exception.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.kernel.exception.SystemException {
72 return getService().dynamicQuery(dynamicQuery, start, end);
73 }
74
75 public static com.liferay.portal.model.WorkflowInstanceLink getWorkflowInstanceLink(
76 long workflowInstanceLinkId)
77 throws com.liferay.portal.kernel.exception.PortalException,
78 com.liferay.portal.kernel.exception.SystemException {
79 return getService().getWorkflowInstanceLink(workflowInstanceLinkId);
80 }
81
82 public static java.util.List<com.liferay.portal.model.WorkflowInstanceLink> getWorkflowInstanceLinks(
83 int start, int end)
84 throws com.liferay.portal.kernel.exception.SystemException {
85 return getService().getWorkflowInstanceLinks(start, end);
86 }
87
88 public static int getWorkflowInstanceLinksCount()
89 throws com.liferay.portal.kernel.exception.SystemException {
90 return getService().getWorkflowInstanceLinksCount();
91 }
92
93 public static com.liferay.portal.model.WorkflowInstanceLink updateWorkflowInstanceLink(
94 com.liferay.portal.model.WorkflowInstanceLink workflowInstanceLink)
95 throws com.liferay.portal.kernel.exception.SystemException {
96 return getService().updateWorkflowInstanceLink(workflowInstanceLink);
97 }
98
99 public static com.liferay.portal.model.WorkflowInstanceLink updateWorkflowInstanceLink(
100 com.liferay.portal.model.WorkflowInstanceLink workflowInstanceLink,
101 boolean merge)
102 throws com.liferay.portal.kernel.exception.SystemException {
103 return getService()
104 .updateWorkflowInstanceLink(workflowInstanceLink, merge);
105 }
106
107 public static com.liferay.portal.model.WorkflowInstanceLink addWorkflowInstanceLink(
108 long userId, long companyId, long groupId, java.lang.String className,
109 long classPK, long workflowInstanceId)
110 throws com.liferay.portal.kernel.exception.PortalException,
111 com.liferay.portal.kernel.exception.SystemException {
112 return getService()
113 .addWorkflowInstanceLink(userId, companyId, groupId,
114 className, classPK, workflowInstanceId);
115 }
116
117 public static void deleteWorkflowInstanceLink(long companyId, long groupId,
118 java.lang.String className, long classPK)
119 throws com.liferay.portal.kernel.exception.PortalException,
120 com.liferay.portal.kernel.exception.SystemException {
121 getService()
122 .deleteWorkflowInstanceLink(companyId, groupId, className, classPK);
123 }
124
125 public static java.lang.String getState(long companyId, long groupId,
126 java.lang.String className, long classPK)
127 throws com.liferay.portal.kernel.exception.PortalException,
128 com.liferay.portal.kernel.exception.SystemException {
129 return getService().getState(companyId, groupId, className, classPK);
130 }
131
132 public static com.liferay.portal.model.WorkflowInstanceLink getWorkflowInstanceLink(
133 long companyId, long groupId, java.lang.String className, long classPK)
134 throws com.liferay.portal.kernel.exception.PortalException,
135 com.liferay.portal.kernel.exception.SystemException {
136 return getService()
137 .getWorkflowInstanceLink(companyId, groupId, className,
138 classPK);
139 }
140
141 public static boolean hasWorkflowInstanceLink(long companyId, long groupId,
142 java.lang.String className, long classPK)
143 throws com.liferay.portal.kernel.exception.PortalException,
144 com.liferay.portal.kernel.exception.SystemException {
145 return getService()
146 .hasWorkflowInstanceLink(companyId, groupId, className,
147 classPK);
148 }
149
150 public static void startWorkflowInstance(long companyId, long groupId,
151 long userId, java.lang.String className, long classPK)
152 throws com.liferay.portal.kernel.exception.PortalException,
153 com.liferay.portal.kernel.exception.SystemException {
154 getService()
155 .startWorkflowInstance(companyId, groupId, userId, className,
156 classPK);
157 }
158
159 public static WorkflowInstanceLinkLocalService getService() {
160 if (_service == null) {
161 _service = (WorkflowInstanceLinkLocalService)PortalBeanLocatorUtil.locate(WorkflowInstanceLinkLocalService.class.getName());
162 }
163
164 return _service;
165 }
166
167 public void setService(WorkflowInstanceLinkLocalService service) {
168 _service = service;
169 }
170
171 private static WorkflowInstanceLinkLocalService _service;
172 }