1
22
23 package com.liferay.portlet.documentlibrary.service;
24
25
26
46 public class DLFileShortcutLocalServiceUtil {
47 public static com.liferay.portlet.documentlibrary.model.DLFileShortcut addDLFileShortcut(
48 com.liferay.portlet.documentlibrary.model.DLFileShortcut dlFileShortcut)
49 throws com.liferay.portal.SystemException {
50 return getService().addDLFileShortcut(dlFileShortcut);
51 }
52
53 public static com.liferay.portlet.documentlibrary.model.DLFileShortcut createDLFileShortcut(
54 long fileShortcutId) {
55 return getService().createDLFileShortcut(fileShortcutId);
56 }
57
58 public static void deleteDLFileShortcut(long fileShortcutId)
59 throws com.liferay.portal.PortalException,
60 com.liferay.portal.SystemException {
61 getService().deleteDLFileShortcut(fileShortcutId);
62 }
63
64 public static void deleteDLFileShortcut(
65 com.liferay.portlet.documentlibrary.model.DLFileShortcut dlFileShortcut)
66 throws com.liferay.portal.SystemException {
67 getService().deleteDLFileShortcut(dlFileShortcut);
68 }
69
70 public static java.util.List<Object> dynamicQuery(
71 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
72 throws com.liferay.portal.SystemException {
73 return getService().dynamicQuery(dynamicQuery);
74 }
75
76 public static java.util.List<Object> dynamicQuery(
77 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
78 int end) throws com.liferay.portal.SystemException {
79 return getService().dynamicQuery(dynamicQuery, start, end);
80 }
81
82 public static com.liferay.portlet.documentlibrary.model.DLFileShortcut getDLFileShortcut(
83 long fileShortcutId)
84 throws com.liferay.portal.PortalException,
85 com.liferay.portal.SystemException {
86 return getService().getDLFileShortcut(fileShortcutId);
87 }
88
89 public static java.util.List<com.liferay.portlet.documentlibrary.model.DLFileShortcut> getDLFileShortcuts(
90 int start, int end) throws com.liferay.portal.SystemException {
91 return getService().getDLFileShortcuts(start, end);
92 }
93
94 public static int getDLFileShortcutsCount()
95 throws com.liferay.portal.SystemException {
96 return getService().getDLFileShortcutsCount();
97 }
98
99 public static com.liferay.portlet.documentlibrary.model.DLFileShortcut updateDLFileShortcut(
100 com.liferay.portlet.documentlibrary.model.DLFileShortcut dlFileShortcut)
101 throws com.liferay.portal.SystemException {
102 return getService().updateDLFileShortcut(dlFileShortcut);
103 }
104
105 public static com.liferay.portlet.documentlibrary.model.DLFileShortcut updateDLFileShortcut(
106 com.liferay.portlet.documentlibrary.model.DLFileShortcut dlFileShortcut,
107 boolean merge) throws com.liferay.portal.SystemException {
108 return getService().updateDLFileShortcut(dlFileShortcut, merge);
109 }
110
111 public static com.liferay.portlet.documentlibrary.model.DLFileShortcut addFileShortcut(
112 long userId, long folderId, long toFolderId, java.lang.String toName,
113 boolean addCommunityPermissions, boolean addGuestPermissions)
114 throws com.liferay.portal.PortalException,
115 com.liferay.portal.SystemException {
116 return getService()
117 .addFileShortcut(userId, folderId, toFolderId, toName,
118 addCommunityPermissions, addGuestPermissions);
119 }
120
121 public static com.liferay.portlet.documentlibrary.model.DLFileShortcut addFileShortcut(
122 java.lang.String uuid, long userId, long folderId, long toFolderId,
123 java.lang.String toName, boolean addCommunityPermissions,
124 boolean addGuestPermissions)
125 throws com.liferay.portal.PortalException,
126 com.liferay.portal.SystemException {
127 return getService()
128 .addFileShortcut(uuid, userId, folderId, toFolderId, toName,
129 addCommunityPermissions, addGuestPermissions);
130 }
131
132 public static com.liferay.portlet.documentlibrary.model.DLFileShortcut addFileShortcut(
133 long userId, long folderId, long toFolderId, java.lang.String toName,
134 java.lang.String[] communityPermissions,
135 java.lang.String[] guestPermissions)
136 throws com.liferay.portal.PortalException,
137 com.liferay.portal.SystemException {
138 return getService()
139 .addFileShortcut(userId, folderId, toFolderId, toName,
140 communityPermissions, guestPermissions);
141 }
142
143 public static com.liferay.portlet.documentlibrary.model.DLFileShortcut addFileShortcut(
144 java.lang.String uuid, long userId, long folderId, long toFolderId,
145 java.lang.String toName, java.lang.Boolean addCommunityPermissions,
146 java.lang.Boolean addGuestPermissions,
147 java.lang.String[] communityPermissions,
148 java.lang.String[] guestPermissions)
149 throws com.liferay.portal.PortalException,
150 com.liferay.portal.SystemException {
151 return getService()
152 .addFileShortcut(uuid, userId, folderId, toFolderId, toName,
153 addCommunityPermissions, addGuestPermissions, communityPermissions,
154 guestPermissions);
155 }
156
157 public static void addFileShortcutResources(long fileShortcutId,
158 boolean addCommunityPermissions, boolean addGuestPermissions)
159 throws com.liferay.portal.PortalException,
160 com.liferay.portal.SystemException {
161 getService()
162 .addFileShortcutResources(fileShortcutId, addCommunityPermissions,
163 addGuestPermissions);
164 }
165
166 public static void addFileShortcutResources(
167 com.liferay.portlet.documentlibrary.model.DLFileShortcut fileShortcut,
168 boolean addCommunityPermissions, boolean addGuestPermissions)
169 throws com.liferay.portal.PortalException,
170 com.liferay.portal.SystemException {
171 getService()
172 .addFileShortcutResources(fileShortcut, addCommunityPermissions,
173 addGuestPermissions);
174 }
175
176 public static void addFileShortcutResources(long fileShortcutId,
177 java.lang.String[] communityPermissions,
178 java.lang.String[] guestPermissions)
179 throws com.liferay.portal.PortalException,
180 com.liferay.portal.SystemException {
181 getService()
182 .addFileShortcutResources(fileShortcutId, communityPermissions,
183 guestPermissions);
184 }
185
186 public static void addFileShortcutResources(
187 com.liferay.portlet.documentlibrary.model.DLFileShortcut fileShortcut,
188 java.lang.String[] communityPermissions,
189 java.lang.String[] guestPermissions)
190 throws com.liferay.portal.PortalException,
191 com.liferay.portal.SystemException {
192 getService()
193 .addFileShortcutResources(fileShortcut, communityPermissions,
194 guestPermissions);
195 }
196
197 public static void deleteFileShortcut(long fileShortcutId)
198 throws com.liferay.portal.PortalException,
199 com.liferay.portal.SystemException {
200 getService().deleteFileShortcut(fileShortcutId);
201 }
202
203 public static void deleteFileShortcut(
204 com.liferay.portlet.documentlibrary.model.DLFileShortcut fileShortcut)
205 throws com.liferay.portal.PortalException,
206 com.liferay.portal.SystemException {
207 getService().deleteFileShortcut(fileShortcut);
208 }
209
210 public static void deleteFileShortcuts(long toFolderId,
211 java.lang.String toName)
212 throws com.liferay.portal.PortalException,
213 com.liferay.portal.SystemException {
214 getService().deleteFileShortcuts(toFolderId, toName);
215 }
216
217 public static com.liferay.portlet.documentlibrary.model.DLFileShortcut getFileShortcut(
218 long fileShortcutId)
219 throws com.liferay.portal.PortalException,
220 com.liferay.portal.SystemException {
221 return getService().getFileShortcut(fileShortcutId);
222 }
223
224 public static com.liferay.portlet.documentlibrary.model.DLFileShortcut updateFileShortcut(
225 long userId, long fileShortcutId, long folderId, long toFolderId,
226 java.lang.String toName)
227 throws com.liferay.portal.PortalException,
228 com.liferay.portal.SystemException {
229 return getService()
230 .updateFileShortcut(userId, fileShortcutId, folderId,
231 toFolderId, toName);
232 }
233
234 public static void updateFileShortcuts(long oldToFolderId,
235 java.lang.String oldToName, long newToFolderId,
236 java.lang.String newToName) throws com.liferay.portal.SystemException {
237 getService()
238 .updateFileShortcuts(oldToFolderId, oldToName, newToFolderId,
239 newToName);
240 }
241
242 public static DLFileShortcutLocalService getService() {
243 if (_service == null) {
244 throw new RuntimeException("DLFileShortcutLocalService is not set");
245 }
246
247 return _service;
248 }
249
250 public void setService(DLFileShortcutLocalService service) {
251 _service = service;
252 }
253
254 private static DLFileShortcutLocalService _service;
255 }