001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portlet.imagegallery.service;
016    
017    import com.liferay.portal.kernel.annotation.Isolation;
018    import com.liferay.portal.kernel.annotation.Propagation;
019    import com.liferay.portal.kernel.annotation.Transactional;
020    import com.liferay.portal.kernel.exception.PortalException;
021    import com.liferay.portal.kernel.exception.SystemException;
022    
023    /**
024     * The interface for the i g folder local service.
025     *
026     * <p>
027     * Never modify or reference this interface directly. Always use {@link IGFolderLocalServiceUtil} to access the i g folder local service. Add custom service methods to {@link com.liferay.portlet.imagegallery.service.impl.IGFolderLocalServiceImpl} and rerun ServiceBuilder to automatically copy the method declarations to this interface.
028     * </p>
029     *
030     * <p>
031     * This is a local service. Methods of this service will not have security checks based on the propagated JAAS credentials because this service can only be accessed from within the same VM.
032     * </p>
033     *
034     * @author Brian Wing Shun Chan
035     * @see IGFolderLocalServiceUtil
036     * @see com.liferay.portlet.imagegallery.service.base.IGFolderLocalServiceBaseImpl
037     * @see com.liferay.portlet.imagegallery.service.impl.IGFolderLocalServiceImpl
038     * @generated
039     */
040    @Transactional(isolation = Isolation.PORTAL, rollbackFor =  {
041            PortalException.class, SystemException.class})
042    public interface IGFolderLocalService {
043            /**
044            * Adds the i g folder to the database. Also notifies the appropriate model listeners.
045            *
046            * @param igFolder the i g folder to add
047            * @return the i g folder that was added
048            * @throws SystemException if a system exception occurred
049            */
050            public com.liferay.portlet.imagegallery.model.IGFolder addIGFolder(
051                    com.liferay.portlet.imagegallery.model.IGFolder igFolder)
052                    throws com.liferay.portal.kernel.exception.SystemException;
053    
054            /**
055            * Creates a new i g folder with the primary key. Does not add the i g folder to the database.
056            *
057            * @param folderId the primary key for the new i g folder
058            * @return the new i g folder
059            */
060            public com.liferay.portlet.imagegallery.model.IGFolder createIGFolder(
061                    long folderId);
062    
063            /**
064            * Deletes the i g folder with the primary key from the database. Also notifies the appropriate model listeners.
065            *
066            * @param folderId the primary key of the i g folder to delete
067            * @throws PortalException if a i g folder with the primary key could not be found
068            * @throws SystemException if a system exception occurred
069            */
070            public void deleteIGFolder(long folderId)
071                    throws com.liferay.portal.kernel.exception.PortalException,
072                            com.liferay.portal.kernel.exception.SystemException;
073    
074            /**
075            * Deletes the i g folder from the database. Also notifies the appropriate model listeners.
076            *
077            * @param igFolder the i g folder to delete
078            * @throws SystemException if a system exception occurred
079            */
080            public void deleteIGFolder(
081                    com.liferay.portlet.imagegallery.model.IGFolder igFolder)
082                    throws com.liferay.portal.kernel.exception.SystemException;
083    
084            /**
085            * Performs a dynamic query on the database and returns the matching rows.
086            *
087            * @param dynamicQuery the dynamic query to search with
088            * @return the matching rows
089            * @throws SystemException if a system exception occurred
090            */
091            @SuppressWarnings("rawtypes")
092            public java.util.List dynamicQuery(
093                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
094                    throws com.liferay.portal.kernel.exception.SystemException;
095    
096            /**
097            * Performs a dynamic query on the database and returns a range of the matching rows.
098            *
099            * <p>
100            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
101            * </p>
102            *
103            * @param dynamicQuery the dynamic query to search with
104            * @param start the lower bound of the range of model instances to return
105            * @param end the upper bound of the range of model instances to return (not inclusive)
106            * @return the range of matching rows
107            * @throws SystemException if a system exception occurred
108            */
109            @SuppressWarnings("rawtypes")
110            public java.util.List dynamicQuery(
111                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
112                    int end) throws com.liferay.portal.kernel.exception.SystemException;
113    
114            /**
115            * Performs a dynamic query on the database and returns an ordered range of the matching rows.
116            *
117            * <p>
118            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
119            * </p>
120            *
121            * @param dynamicQuery the dynamic query to search with
122            * @param start the lower bound of the range of model instances to return
123            * @param end the upper bound of the range of model instances to return (not inclusive)
124            * @param orderByComparator the comparator to order the results by
125            * @return the ordered range of matching rows
126            * @throws SystemException if a system exception occurred
127            */
128            @SuppressWarnings("rawtypes")
129            public java.util.List dynamicQuery(
130                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
131                    int end,
132                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
133                    throws com.liferay.portal.kernel.exception.SystemException;
134    
135            /**
136            * Counts the number of rows that match the dynamic query.
137            *
138            * @param dynamicQuery the dynamic query to search with
139            * @return the number of rows that match the dynamic query
140            * @throws SystemException if a system exception occurred
141            */
142            public long dynamicQueryCount(
143                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
144                    throws com.liferay.portal.kernel.exception.SystemException;
145    
146            /**
147            * Gets the i g folder with the primary key.
148            *
149            * @param folderId the primary key of the i g folder to get
150            * @return the i g folder
151            * @throws PortalException if a i g folder with the primary key could not be found
152            * @throws SystemException if a system exception occurred
153            */
154            @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
155            public com.liferay.portlet.imagegallery.model.IGFolder getIGFolder(
156                    long folderId)
157                    throws com.liferay.portal.kernel.exception.PortalException,
158                            com.liferay.portal.kernel.exception.SystemException;
159    
160            /**
161            * Gets the i g folder with the UUID and group id.
162            *
163            * @param uuid the UUID of i g folder to get
164            * @param groupId the group id of the i g folder to get
165            * @return the i g folder
166            * @throws PortalException if a i g folder with the UUID and group id could not be found
167            * @throws SystemException if a system exception occurred
168            */
169            @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
170            public com.liferay.portlet.imagegallery.model.IGFolder getIGFolderByUuidAndGroupId(
171                    java.lang.String uuid, long groupId)
172                    throws com.liferay.portal.kernel.exception.PortalException,
173                            com.liferay.portal.kernel.exception.SystemException;
174    
175            /**
176            * Gets a range of all the i g folders.
177            *
178            * <p>
179            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
180            * </p>
181            *
182            * @param start the lower bound of the range of i g folders to return
183            * @param end the upper bound of the range of i g folders to return (not inclusive)
184            * @return the range of i g folders
185            * @throws SystemException if a system exception occurred
186            */
187            @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
188            public java.util.List<com.liferay.portlet.imagegallery.model.IGFolder> getIGFolders(
189                    int start, int end)
190                    throws com.liferay.portal.kernel.exception.SystemException;
191    
192            /**
193            * Gets the number of i g folders.
194            *
195            * @return the number of i g folders
196            * @throws SystemException if a system exception occurred
197            */
198            @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
199            public int getIGFoldersCount()
200                    throws com.liferay.portal.kernel.exception.SystemException;
201    
202            /**
203            * Updates the i g folder in the database. Also notifies the appropriate model listeners.
204            *
205            * @param igFolder the i g folder to update
206            * @return the i g folder that was updated
207            * @throws SystemException if a system exception occurred
208            */
209            public com.liferay.portlet.imagegallery.model.IGFolder updateIGFolder(
210                    com.liferay.portlet.imagegallery.model.IGFolder igFolder)
211                    throws com.liferay.portal.kernel.exception.SystemException;
212    
213            /**
214            * Updates the i g folder in the database. Also notifies the appropriate model listeners.
215            *
216            * @param igFolder the i g folder to update
217            * @param merge whether to merge the i g folder with the current session. See {@link com.liferay.portal.service.persistence.BatchSession#update(com.liferay.portal.kernel.dao.orm.Session, com.liferay.portal.model.BaseModel, boolean)} for an explanation.
218            * @return the i g folder that was updated
219            * @throws SystemException if a system exception occurred
220            */
221            public com.liferay.portlet.imagegallery.model.IGFolder updateIGFolder(
222                    com.liferay.portlet.imagegallery.model.IGFolder igFolder, boolean merge)
223                    throws com.liferay.portal.kernel.exception.SystemException;
224    
225            public com.liferay.portlet.imagegallery.model.IGFolder addFolder(
226                    long userId, long parentFolderId, java.lang.String name,
227                    java.lang.String description,
228                    com.liferay.portal.service.ServiceContext serviceContext)
229                    throws com.liferay.portal.kernel.exception.PortalException,
230                            com.liferay.portal.kernel.exception.SystemException;
231    
232            public void addFolderResources(
233                    com.liferay.portlet.imagegallery.model.IGFolder folder,
234                    boolean addCommunityPermissions, boolean addGuestPermissions)
235                    throws com.liferay.portal.kernel.exception.PortalException,
236                            com.liferay.portal.kernel.exception.SystemException;
237    
238            public void addFolderResources(
239                    com.liferay.portlet.imagegallery.model.IGFolder folder,
240                    java.lang.String[] communityPermissions,
241                    java.lang.String[] guestPermissions)
242                    throws com.liferay.portal.kernel.exception.PortalException,
243                            com.liferay.portal.kernel.exception.SystemException;
244    
245            public void addFolderResources(long folderId,
246                    boolean addCommunityPermissions, boolean addGuestPermissions)
247                    throws com.liferay.portal.kernel.exception.PortalException,
248                            com.liferay.portal.kernel.exception.SystemException;
249    
250            public void addFolderResources(long folderId,
251                    java.lang.String[] communityPermissions,
252                    java.lang.String[] guestPermissions)
253                    throws com.liferay.portal.kernel.exception.PortalException,
254                            com.liferay.portal.kernel.exception.SystemException;
255    
256            public void deleteFolder(
257                    com.liferay.portlet.imagegallery.model.IGFolder folder)
258                    throws com.liferay.portal.kernel.exception.PortalException,
259                            com.liferay.portal.kernel.exception.SystemException;
260    
261            public void deleteFolder(long folderId)
262                    throws com.liferay.portal.kernel.exception.PortalException,
263                            com.liferay.portal.kernel.exception.SystemException;
264    
265            public void deleteFolders(long groupId)
266                    throws com.liferay.portal.kernel.exception.PortalException,
267                            com.liferay.portal.kernel.exception.SystemException;
268    
269            @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
270            public java.util.List<com.liferay.portlet.imagegallery.model.IGFolder> getCompanyFolders(
271                    long companyId, int start, int end)
272                    throws com.liferay.portal.kernel.exception.SystemException;
273    
274            @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
275            public int getCompanyFoldersCount(long companyId)
276                    throws com.liferay.portal.kernel.exception.SystemException;
277    
278            @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
279            public com.liferay.portlet.imagegallery.model.IGFolder getFolder(
280                    long folderId)
281                    throws com.liferay.portal.kernel.exception.PortalException,
282                            com.liferay.portal.kernel.exception.SystemException;
283    
284            @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
285            public com.liferay.portlet.imagegallery.model.IGFolder getFolder(
286                    long groupId, long parentFolderId, java.lang.String name)
287                    throws com.liferay.portal.kernel.exception.PortalException,
288                            com.liferay.portal.kernel.exception.SystemException;
289    
290            @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
291            public java.util.List<com.liferay.portlet.imagegallery.model.IGFolder> getFolders(
292                    long groupId)
293                    throws com.liferay.portal.kernel.exception.SystemException;
294    
295            @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
296            public java.util.List<com.liferay.portlet.imagegallery.model.IGFolder> getFolders(
297                    long groupId, long parentFolderId)
298                    throws com.liferay.portal.kernel.exception.SystemException;
299    
300            @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
301            public java.util.List<com.liferay.portlet.imagegallery.model.IGFolder> getFolders(
302                    long groupId, long parentFolderId, int start, int end)
303                    throws com.liferay.portal.kernel.exception.SystemException;
304    
305            @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
306            public int getFoldersCount(long groupId, long parentFolderId)
307                    throws com.liferay.portal.kernel.exception.SystemException;
308    
309            @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
310            public void getSubfolderIds(java.util.List<java.lang.Long> folderIds,
311                    long groupId, long folderId)
312                    throws com.liferay.portal.kernel.exception.SystemException;
313    
314            public com.liferay.portlet.imagegallery.model.IGFolder updateFolder(
315                    long folderId, long parentFolderId, java.lang.String name,
316                    java.lang.String description, boolean mergeWithParentFolder,
317                    com.liferay.portal.service.ServiceContext serviceContext)
318                    throws com.liferay.portal.kernel.exception.PortalException,
319                            com.liferay.portal.kernel.exception.SystemException;
320    }