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