001    /**
002     * Copyright (c) 2000-2012 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.journal.service;
016    
017    import com.liferay.portal.service.ServiceWrapper;
018    
019    /**
020     * <p>
021     * This class is a wrapper for {@link JournalArticleResourceLocalService}.
022     * </p>
023     *
024     * @author    Brian Wing Shun Chan
025     * @see       JournalArticleResourceLocalService
026     * @generated
027     */
028    public class JournalArticleResourceLocalServiceWrapper
029            implements JournalArticleResourceLocalService,
030                    ServiceWrapper<JournalArticleResourceLocalService> {
031            public JournalArticleResourceLocalServiceWrapper(
032                    JournalArticleResourceLocalService journalArticleResourceLocalService) {
033                    _journalArticleResourceLocalService = journalArticleResourceLocalService;
034            }
035    
036            /**
037            * Adds the journal article resource to the database. Also notifies the appropriate model listeners.
038            *
039            * @param journalArticleResource the journal article resource
040            * @return the journal article resource that was added
041            * @throws SystemException if a system exception occurred
042            */
043            public com.liferay.portlet.journal.model.JournalArticleResource addJournalArticleResource(
044                    com.liferay.portlet.journal.model.JournalArticleResource journalArticleResource)
045                    throws com.liferay.portal.kernel.exception.SystemException {
046                    return _journalArticleResourceLocalService.addJournalArticleResource(journalArticleResource);
047            }
048    
049            /**
050            * Creates a new journal article resource with the primary key. Does not add the journal article resource to the database.
051            *
052            * @param resourcePrimKey the primary key for the new journal article resource
053            * @return the new journal article resource
054            */
055            public com.liferay.portlet.journal.model.JournalArticleResource createJournalArticleResource(
056                    long resourcePrimKey) {
057                    return _journalArticleResourceLocalService.createJournalArticleResource(resourcePrimKey);
058            }
059    
060            /**
061            * Deletes the journal article resource with the primary key from the database. Also notifies the appropriate model listeners.
062            *
063            * @param resourcePrimKey the primary key of the journal article resource
064            * @throws PortalException if a journal article resource with the primary key could not be found
065            * @throws SystemException if a system exception occurred
066            */
067            public void deleteJournalArticleResource(long resourcePrimKey)
068                    throws com.liferay.portal.kernel.exception.PortalException,
069                            com.liferay.portal.kernel.exception.SystemException {
070                    _journalArticleResourceLocalService.deleteJournalArticleResource(resourcePrimKey);
071            }
072    
073            /**
074            * Deletes the journal article resource from the database. Also notifies the appropriate model listeners.
075            *
076            * @param journalArticleResource the journal article resource
077            * @throws SystemException if a system exception occurred
078            */
079            public void deleteJournalArticleResource(
080                    com.liferay.portlet.journal.model.JournalArticleResource journalArticleResource)
081                    throws com.liferay.portal.kernel.exception.SystemException {
082                    _journalArticleResourceLocalService.deleteJournalArticleResource(journalArticleResource);
083            }
084    
085            /**
086            * Performs a dynamic query on the database and returns the matching rows.
087            *
088            * @param dynamicQuery the dynamic query
089            * @return the matching rows
090            * @throws SystemException if a system exception occurred
091            */
092            @SuppressWarnings("rawtypes")
093            public java.util.List dynamicQuery(
094                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
095                    throws com.liferay.portal.kernel.exception.SystemException {
096                    return _journalArticleResourceLocalService.dynamicQuery(dynamicQuery);
097            }
098    
099            /**
100            * Performs a dynamic query on the database and returns a range of the matching rows.
101            *
102            * <p>
103            * 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.
104            * </p>
105            *
106            * @param dynamicQuery the dynamic query
107            * @param start the lower bound of the range of model instances
108            * @param end the upper bound of the range of model instances (not inclusive)
109            * @return the range of matching rows
110            * @throws SystemException if a system exception occurred
111            */
112            @SuppressWarnings("rawtypes")
113            public java.util.List dynamicQuery(
114                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
115                    int end) throws com.liferay.portal.kernel.exception.SystemException {
116                    return _journalArticleResourceLocalService.dynamicQuery(dynamicQuery,
117                            start, end);
118            }
119    
120            /**
121            * Performs a dynamic query on the database and returns an ordered range of the matching rows.
122            *
123            * <p>
124            * 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.
125            * </p>
126            *
127            * @param dynamicQuery the dynamic query
128            * @param start the lower bound of the range of model instances
129            * @param end the upper bound of the range of model instances (not inclusive)
130            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
131            * @return the ordered range of matching rows
132            * @throws SystemException if a system exception occurred
133            */
134            @SuppressWarnings("rawtypes")
135            public java.util.List dynamicQuery(
136                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
137                    int end,
138                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
139                    throws com.liferay.portal.kernel.exception.SystemException {
140                    return _journalArticleResourceLocalService.dynamicQuery(dynamicQuery,
141                            start, end, orderByComparator);
142            }
143    
144            /**
145            * Returns the number of rows that match the dynamic query.
146            *
147            * @param dynamicQuery the dynamic query
148            * @return the number of rows that match the dynamic query
149            * @throws SystemException if a system exception occurred
150            */
151            public long dynamicQueryCount(
152                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
153                    throws com.liferay.portal.kernel.exception.SystemException {
154                    return _journalArticleResourceLocalService.dynamicQueryCount(dynamicQuery);
155            }
156    
157            public com.liferay.portlet.journal.model.JournalArticleResource fetchJournalArticleResource(
158                    long resourcePrimKey)
159                    throws com.liferay.portal.kernel.exception.SystemException {
160                    return _journalArticleResourceLocalService.fetchJournalArticleResource(resourcePrimKey);
161            }
162    
163            /**
164            * Returns the journal article resource with the primary key.
165            *
166            * @param resourcePrimKey the primary key of the journal article resource
167            * @return the journal article resource
168            * @throws PortalException if a journal article resource with the primary key could not be found
169            * @throws SystemException if a system exception occurred
170            */
171            public com.liferay.portlet.journal.model.JournalArticleResource getJournalArticleResource(
172                    long resourcePrimKey)
173                    throws com.liferay.portal.kernel.exception.PortalException,
174                            com.liferay.portal.kernel.exception.SystemException {
175                    return _journalArticleResourceLocalService.getJournalArticleResource(resourcePrimKey);
176            }
177    
178            public com.liferay.portal.model.PersistedModel getPersistedModel(
179                    java.io.Serializable primaryKeyObj)
180                    throws com.liferay.portal.kernel.exception.PortalException,
181                            com.liferay.portal.kernel.exception.SystemException {
182                    return _journalArticleResourceLocalService.getPersistedModel(primaryKeyObj);
183            }
184    
185            /**
186            * Returns the journal article resource with the UUID in the group.
187            *
188            * @param uuid the UUID of journal article resource
189            * @param groupId the group id of the journal article resource
190            * @return the journal article resource
191            * @throws PortalException if a journal article resource with the UUID in the group could not be found
192            * @throws SystemException if a system exception occurred
193            */
194            public com.liferay.portlet.journal.model.JournalArticleResource getJournalArticleResourceByUuidAndGroupId(
195                    java.lang.String uuid, long groupId)
196                    throws com.liferay.portal.kernel.exception.PortalException,
197                            com.liferay.portal.kernel.exception.SystemException {
198                    return _journalArticleResourceLocalService.getJournalArticleResourceByUuidAndGroupId(uuid,
199                            groupId);
200            }
201    
202            /**
203            * Returns a range of all the journal article resources.
204            *
205            * <p>
206            * 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.
207            * </p>
208            *
209            * @param start the lower bound of the range of journal article resources
210            * @param end the upper bound of the range of journal article resources (not inclusive)
211            * @return the range of journal article resources
212            * @throws SystemException if a system exception occurred
213            */
214            public java.util.List<com.liferay.portlet.journal.model.JournalArticleResource> getJournalArticleResources(
215                    int start, int end)
216                    throws com.liferay.portal.kernel.exception.SystemException {
217                    return _journalArticleResourceLocalService.getJournalArticleResources(start,
218                            end);
219            }
220    
221            /**
222            * Returns the number of journal article resources.
223            *
224            * @return the number of journal article resources
225            * @throws SystemException if a system exception occurred
226            */
227            public int getJournalArticleResourcesCount()
228                    throws com.liferay.portal.kernel.exception.SystemException {
229                    return _journalArticleResourceLocalService.getJournalArticleResourcesCount();
230            }
231    
232            /**
233            * Updates the journal article resource in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
234            *
235            * @param journalArticleResource the journal article resource
236            * @return the journal article resource that was updated
237            * @throws SystemException if a system exception occurred
238            */
239            public com.liferay.portlet.journal.model.JournalArticleResource updateJournalArticleResource(
240                    com.liferay.portlet.journal.model.JournalArticleResource journalArticleResource)
241                    throws com.liferay.portal.kernel.exception.SystemException {
242                    return _journalArticleResourceLocalService.updateJournalArticleResource(journalArticleResource);
243            }
244    
245            /**
246            * Updates the journal article resource in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
247            *
248            * @param journalArticleResource the journal article resource
249            * @param merge whether to merge the journal article resource 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.
250            * @return the journal article resource that was updated
251            * @throws SystemException if a system exception occurred
252            */
253            public com.liferay.portlet.journal.model.JournalArticleResource updateJournalArticleResource(
254                    com.liferay.portlet.journal.model.JournalArticleResource journalArticleResource,
255                    boolean merge)
256                    throws com.liferay.portal.kernel.exception.SystemException {
257                    return _journalArticleResourceLocalService.updateJournalArticleResource(journalArticleResource,
258                            merge);
259            }
260    
261            /**
262            * Returns the Spring bean ID for this bean.
263            *
264            * @return the Spring bean ID for this bean
265            */
266            public java.lang.String getBeanIdentifier() {
267                    return _journalArticleResourceLocalService.getBeanIdentifier();
268            }
269    
270            /**
271            * Sets the Spring bean ID for this bean.
272            *
273            * @param beanIdentifier the Spring bean ID for this bean
274            */
275            public void setBeanIdentifier(java.lang.String beanIdentifier) {
276                    _journalArticleResourceLocalService.setBeanIdentifier(beanIdentifier);
277            }
278    
279            public void deleteArticleResource(long groupId, java.lang.String articleId)
280                    throws com.liferay.portal.kernel.exception.PortalException,
281                            com.liferay.portal.kernel.exception.SystemException {
282                    _journalArticleResourceLocalService.deleteArticleResource(groupId,
283                            articleId);
284            }
285    
286            public com.liferay.portlet.journal.model.JournalArticleResource getArticleResource(
287                    long articleResourcePrimKey)
288                    throws com.liferay.portal.kernel.exception.PortalException,
289                            com.liferay.portal.kernel.exception.SystemException {
290                    return _journalArticleResourceLocalService.getArticleResource(articleResourcePrimKey);
291            }
292    
293            public long getArticleResourcePrimKey(long groupId,
294                    java.lang.String articleId)
295                    throws com.liferay.portal.kernel.exception.SystemException {
296                    return _journalArticleResourceLocalService.getArticleResourcePrimKey(groupId,
297                            articleId);
298            }
299    
300            public long getArticleResourcePrimKey(java.lang.String uuid, long groupId,
301                    java.lang.String articleId)
302                    throws com.liferay.portal.kernel.exception.SystemException {
303                    return _journalArticleResourceLocalService.getArticleResourcePrimKey(uuid,
304                            groupId, articleId);
305            }
306    
307            public java.util.List<com.liferay.portlet.journal.model.JournalArticleResource> getArticleResources(
308                    long groupId)
309                    throws com.liferay.portal.kernel.exception.SystemException {
310                    return _journalArticleResourceLocalService.getArticleResources(groupId);
311            }
312    
313            /**
314             * @deprecated Renamed to {@link #getWrappedService}
315             */
316            public JournalArticleResourceLocalService getWrappedJournalArticleResourceLocalService() {
317                    return _journalArticleResourceLocalService;
318            }
319    
320            /**
321             * @deprecated Renamed to {@link #setWrappedService}
322             */
323            public void setWrappedJournalArticleResourceLocalService(
324                    JournalArticleResourceLocalService journalArticleResourceLocalService) {
325                    _journalArticleResourceLocalService = journalArticleResourceLocalService;
326            }
327    
328            public JournalArticleResourceLocalService getWrappedService() {
329                    return _journalArticleResourceLocalService;
330            }
331    
332            public void setWrappedService(
333                    JournalArticleResourceLocalService journalArticleResourceLocalService) {
334                    _journalArticleResourceLocalService = journalArticleResourceLocalService;
335            }
336    
337            private JournalArticleResourceLocalService _journalArticleResourceLocalService;
338    }