1
22
23 package com.liferay.portlet.imagegallery.service;
24
25
26
47 public class IGFolderLocalServiceUtil {
48 public static com.liferay.portlet.imagegallery.model.IGFolder addIGFolder(
49 com.liferay.portlet.imagegallery.model.IGFolder igFolder)
50 throws com.liferay.portal.SystemException {
51 return getService().addIGFolder(igFolder);
52 }
53
54 public static com.liferay.portlet.imagegallery.model.IGFolder createIGFolder(
55 long folderId) {
56 return getService().createIGFolder(folderId);
57 }
58
59 public static void deleteIGFolder(long folderId)
60 throws com.liferay.portal.PortalException,
61 com.liferay.portal.SystemException {
62 getService().deleteIGFolder(folderId);
63 }
64
65 public static void deleteIGFolder(
66 com.liferay.portlet.imagegallery.model.IGFolder igFolder)
67 throws com.liferay.portal.SystemException {
68 getService().deleteIGFolder(igFolder);
69 }
70
71 public static java.util.List<Object> dynamicQuery(
72 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
73 throws com.liferay.portal.SystemException {
74 return getService().dynamicQuery(dynamicQuery);
75 }
76
77 public static java.util.List<Object> dynamicQuery(
78 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
79 int end) throws com.liferay.portal.SystemException {
80 return getService().dynamicQuery(dynamicQuery, start, end);
81 }
82
83 public static com.liferay.portlet.imagegallery.model.IGFolder getIGFolder(
84 long folderId)
85 throws com.liferay.portal.PortalException,
86 com.liferay.portal.SystemException {
87 return getService().getIGFolder(folderId);
88 }
89
90 public static java.util.List<com.liferay.portlet.imagegallery.model.IGFolder> getIGFolders(
91 int start, int end) throws com.liferay.portal.SystemException {
92 return getService().getIGFolders(start, end);
93 }
94
95 public static int getIGFoldersCount()
96 throws com.liferay.portal.SystemException {
97 return getService().getIGFoldersCount();
98 }
99
100 public static com.liferay.portlet.imagegallery.model.IGFolder updateIGFolder(
101 com.liferay.portlet.imagegallery.model.IGFolder igFolder)
102 throws com.liferay.portal.SystemException {
103 return getService().updateIGFolder(igFolder);
104 }
105
106 public static com.liferay.portlet.imagegallery.model.IGFolder updateIGFolder(
107 com.liferay.portlet.imagegallery.model.IGFolder igFolder, boolean merge)
108 throws com.liferay.portal.SystemException {
109 return getService().updateIGFolder(igFolder, merge);
110 }
111
112 public static com.liferay.portlet.imagegallery.model.IGFolder addFolder(
113 long userId, long parentFolderId, java.lang.String name,
114 java.lang.String description,
115 com.liferay.portal.service.ServiceContext serviceContext)
116 throws com.liferay.portal.PortalException,
117 com.liferay.portal.SystemException {
118 return getService()
119 .addFolder(userId, parentFolderId, name, description,
120 serviceContext);
121 }
122
123 public static com.liferay.portlet.imagegallery.model.IGFolder addFolder(
124 java.lang.String uuid, long userId, long parentFolderId,
125 java.lang.String name, java.lang.String description,
126 com.liferay.portal.service.ServiceContext serviceContext)
127 throws com.liferay.portal.PortalException,
128 com.liferay.portal.SystemException {
129 return getService()
130 .addFolder(uuid, userId, parentFolderId, name, description,
131 serviceContext);
132 }
133
134 public static void addFolderResources(long folderId,
135 boolean addCommunityPermissions, boolean addGuestPermissions)
136 throws com.liferay.portal.PortalException,
137 com.liferay.portal.SystemException {
138 getService()
139 .addFolderResources(folderId, addCommunityPermissions,
140 addGuestPermissions);
141 }
142
143 public static void addFolderResources(
144 com.liferay.portlet.imagegallery.model.IGFolder folder,
145 boolean addCommunityPermissions, boolean addGuestPermissions)
146 throws com.liferay.portal.PortalException,
147 com.liferay.portal.SystemException {
148 getService()
149 .addFolderResources(folder, addCommunityPermissions,
150 addGuestPermissions);
151 }
152
153 public static void addFolderResources(long folderId,
154 java.lang.String[] communityPermissions,
155 java.lang.String[] guestPermissions)
156 throws com.liferay.portal.PortalException,
157 com.liferay.portal.SystemException {
158 getService()
159 .addFolderResources(folderId, communityPermissions, guestPermissions);
160 }
161
162 public static void addFolderResources(
163 com.liferay.portlet.imagegallery.model.IGFolder folder,
164 java.lang.String[] communityPermissions,
165 java.lang.String[] guestPermissions)
166 throws com.liferay.portal.PortalException,
167 com.liferay.portal.SystemException {
168 getService()
169 .addFolderResources(folder, communityPermissions, guestPermissions);
170 }
171
172 public static void deleteFolder(long folderId)
173 throws com.liferay.portal.PortalException,
174 com.liferay.portal.SystemException {
175 getService().deleteFolder(folderId);
176 }
177
178 public static void deleteFolder(
179 com.liferay.portlet.imagegallery.model.IGFolder folder)
180 throws com.liferay.portal.PortalException,
181 com.liferay.portal.SystemException {
182 getService().deleteFolder(folder);
183 }
184
185 public static void deleteFolders(long groupId)
186 throws com.liferay.portal.PortalException,
187 com.liferay.portal.SystemException {
188 getService().deleteFolders(groupId);
189 }
190
191 public static com.liferay.portlet.imagegallery.model.IGFolder getFolder(
192 long folderId)
193 throws com.liferay.portal.PortalException,
194 com.liferay.portal.SystemException {
195 return getService().getFolder(folderId);
196 }
197
198 public static com.liferay.portlet.imagegallery.model.IGFolder getFolder(
199 long groupId, long parentFolderId, java.lang.String name)
200 throws com.liferay.portal.PortalException,
201 com.liferay.portal.SystemException {
202 return getService().getFolder(groupId, parentFolderId, name);
203 }
204
205 public static java.util.List<com.liferay.portlet.imagegallery.model.IGFolder> getFolders(
206 long groupId) throws com.liferay.portal.SystemException {
207 return getService().getFolders(groupId);
208 }
209
210 public static java.util.List<com.liferay.portlet.imagegallery.model.IGFolder> getFolders(
211 long groupId, long parentFolderId)
212 throws com.liferay.portal.SystemException {
213 return getService().getFolders(groupId, parentFolderId);
214 }
215
216 public static java.util.List<com.liferay.portlet.imagegallery.model.IGFolder> getFolders(
217 long groupId, long parentFolderId, int start, int end)
218 throws com.liferay.portal.SystemException {
219 return getService().getFolders(groupId, parentFolderId, start, end);
220 }
221
222 public static int getFoldersCount(long groupId, long parentFolderId)
223 throws com.liferay.portal.SystemException {
224 return getService().getFoldersCount(groupId, parentFolderId);
225 }
226
227 public static void getSubfolderIds(java.util.List<Long> folderIds,
228 long groupId, long folderId) throws com.liferay.portal.SystemException {
229 getService().getSubfolderIds(folderIds, groupId, folderId);
230 }
231
232 public static void reIndex(java.lang.String[] ids)
233 throws com.liferay.portal.SystemException {
234 getService().reIndex(ids);
235 }
236
237 public static com.liferay.portal.kernel.search.Hits search(long companyId,
238 long groupId, long[] folderIds, java.lang.String keywords, int start,
239 int end) throws com.liferay.portal.SystemException {
240 return getService()
241 .search(companyId, groupId, folderIds, keywords, start, end);
242 }
243
244 public static com.liferay.portlet.imagegallery.model.IGFolder updateFolder(
245 long folderId, long parentFolderId, java.lang.String name,
246 java.lang.String description, boolean mergeWithParentFolder,
247 com.liferay.portal.service.ServiceContext serviceContext)
248 throws com.liferay.portal.PortalException,
249 com.liferay.portal.SystemException {
250 return getService()
251 .updateFolder(folderId, parentFolderId, name, description,
252 mergeWithParentFolder, serviceContext);
253 }
254
255 public static IGFolderLocalService getService() {
256 if (_service == null) {
257 throw new RuntimeException("IGFolderLocalService is not set");
258 }
259
260 return _service;
261 }
262
263 public void setService(IGFolderLocalService service) {
264 _service = service;
265 }
266
267 private static IGFolderLocalService _service;
268 }