1
22
23 package com.liferay.portlet.bookmarks.service;
24
25 import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
26
27
47 public class BookmarksFolderLocalServiceUtil {
48 public static com.liferay.portlet.bookmarks.model.BookmarksFolder addBookmarksFolder(
49 com.liferay.portlet.bookmarks.model.BookmarksFolder bookmarksFolder)
50 throws com.liferay.portal.SystemException {
51 return getService().addBookmarksFolder(bookmarksFolder);
52 }
53
54 public static com.liferay.portlet.bookmarks.model.BookmarksFolder createBookmarksFolder(
55 long folderId) {
56 return getService().createBookmarksFolder(folderId);
57 }
58
59 public static void deleteBookmarksFolder(long folderId)
60 throws com.liferay.portal.PortalException,
61 com.liferay.portal.SystemException {
62 getService().deleteBookmarksFolder(folderId);
63 }
64
65 public static void deleteBookmarksFolder(
66 com.liferay.portlet.bookmarks.model.BookmarksFolder bookmarksFolder)
67 throws com.liferay.portal.SystemException {
68 getService().deleteBookmarksFolder(bookmarksFolder);
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.bookmarks.model.BookmarksFolder getBookmarksFolder(
84 long folderId)
85 throws com.liferay.portal.PortalException,
86 com.liferay.portal.SystemException {
87 return getService().getBookmarksFolder(folderId);
88 }
89
90 public static java.util.List<com.liferay.portlet.bookmarks.model.BookmarksFolder> getBookmarksFolders(
91 int start, int end) throws com.liferay.portal.SystemException {
92 return getService().getBookmarksFolders(start, end);
93 }
94
95 public static int getBookmarksFoldersCount()
96 throws com.liferay.portal.SystemException {
97 return getService().getBookmarksFoldersCount();
98 }
99
100 public static com.liferay.portlet.bookmarks.model.BookmarksFolder updateBookmarksFolder(
101 com.liferay.portlet.bookmarks.model.BookmarksFolder bookmarksFolder)
102 throws com.liferay.portal.SystemException {
103 return getService().updateBookmarksFolder(bookmarksFolder);
104 }
105
106 public static com.liferay.portlet.bookmarks.model.BookmarksFolder updateBookmarksFolder(
107 com.liferay.portlet.bookmarks.model.BookmarksFolder bookmarksFolder,
108 boolean merge) throws com.liferay.portal.SystemException {
109 return getService().updateBookmarksFolder(bookmarksFolder, merge);
110 }
111
112 public static com.liferay.portlet.bookmarks.model.BookmarksFolder 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.bookmarks.model.BookmarksFolder 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(
135 com.liferay.portlet.bookmarks.model.BookmarksFolder folder,
136 boolean addCommunityPermissions, boolean addGuestPermissions)
137 throws com.liferay.portal.PortalException,
138 com.liferay.portal.SystemException {
139 getService()
140 .addFolderResources(folder, addCommunityPermissions,
141 addGuestPermissions);
142 }
143
144 public static void addFolderResources(
145 com.liferay.portlet.bookmarks.model.BookmarksFolder folder,
146 java.lang.String[] communityPermissions,
147 java.lang.String[] guestPermissions)
148 throws com.liferay.portal.PortalException,
149 com.liferay.portal.SystemException {
150 getService()
151 .addFolderResources(folder, communityPermissions, guestPermissions);
152 }
153
154 public static void addFolderResources(long folderId,
155 boolean addCommunityPermissions, boolean addGuestPermissions)
156 throws com.liferay.portal.PortalException,
157 com.liferay.portal.SystemException {
158 getService()
159 .addFolderResources(folderId, addCommunityPermissions,
160 addGuestPermissions);
161 }
162
163 public static void addFolderResources(long folderId,
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(folderId, communityPermissions, guestPermissions);
170 }
171
172 public static void deleteFolder(
173 com.liferay.portlet.bookmarks.model.BookmarksFolder folder)
174 throws com.liferay.portal.PortalException,
175 com.liferay.portal.SystemException {
176 getService().deleteFolder(folder);
177 }
178
179 public static void deleteFolder(long folderId)
180 throws com.liferay.portal.PortalException,
181 com.liferay.portal.SystemException {
182 getService().deleteFolder(folderId);
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.bookmarks.model.BookmarksFolder 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 java.util.List<com.liferay.portlet.bookmarks.model.BookmarksFolder> getFolders(
199 long groupId, long parentFolderId, int start, int end)
200 throws com.liferay.portal.SystemException {
201 return getService().getFolders(groupId, parentFolderId, start, end);
202 }
203
204 public static int getFoldersCount(long groupId, long parentFolderId)
205 throws com.liferay.portal.SystemException {
206 return getService().getFoldersCount(groupId, parentFolderId);
207 }
208
209 public static void getSubfolderIds(java.util.List<Long> folderIds,
210 long groupId, long folderId) throws com.liferay.portal.SystemException {
211 getService().getSubfolderIds(folderIds, groupId, folderId);
212 }
213
214 public static void reIndex(java.lang.String[] ids)
215 throws com.liferay.portal.SystemException {
216 getService().reIndex(ids);
217 }
218
219 public static com.liferay.portal.kernel.search.Hits search(long companyId,
220 long groupId, long userId, long[] folderIds, java.lang.String keywords,
221 int start, int end) throws com.liferay.portal.SystemException {
222 return getService()
223 .search(companyId, groupId, userId, folderIds, keywords,
224 start, end);
225 }
226
227 public static com.liferay.portlet.bookmarks.model.BookmarksFolder updateFolder(
228 long folderId, long parentFolderId, java.lang.String name,
229 java.lang.String description, boolean mergeWithParentFolder,
230 com.liferay.portal.service.ServiceContext serviceContext)
231 throws com.liferay.portal.PortalException,
232 com.liferay.portal.SystemException {
233 return getService()
234 .updateFolder(folderId, parentFolderId, name, description,
235 mergeWithParentFolder, serviceContext);
236 }
237
238 public static BookmarksFolderLocalService getService() {
239 if (_service == null) {
240 _service = (BookmarksFolderLocalService)PortalBeanLocatorUtil.locate(BookmarksFolderLocalService.class.getName());
241 }
242
243 return _service;
244 }
245
246 public void setService(BookmarksFolderLocalService service) {
247 _service = service;
248 }
249
250 private static BookmarksFolderLocalService _service;
251 }