1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
13   */
14  
15  package com.liferay.portal.service;
16  
17  
18  /**
19   * <a href="ReleaseLocalServiceUtil.java.html"><b><i>View Source</i></b></a>
20   *
21   * <p>
22   * ServiceBuilder generated this class. Modifications in this class will be
23   * overwritten the next time is generated.
24   * </p>
25   *
26   * <p>
27   * This class is a wrapper for {@link ReleaseLocalService}.
28   * </p>
29   *
30   * @author    Brian Wing Shun Chan
31   * @see       ReleaseLocalService
32   * @generated
33   */
34  public class ReleaseLocalServiceWrapper implements ReleaseLocalService {
35      public ReleaseLocalServiceWrapper(ReleaseLocalService releaseLocalService) {
36          _releaseLocalService = releaseLocalService;
37      }
38  
39      public com.liferay.portal.model.Release addRelease(
40          com.liferay.portal.model.Release release)
41          throws com.liferay.portal.SystemException {
42          return _releaseLocalService.addRelease(release);
43      }
44  
45      public com.liferay.portal.model.Release createRelease(long releaseId) {
46          return _releaseLocalService.createRelease(releaseId);
47      }
48  
49      public void deleteRelease(long releaseId)
50          throws com.liferay.portal.PortalException,
51              com.liferay.portal.SystemException {
52          _releaseLocalService.deleteRelease(releaseId);
53      }
54  
55      public void deleteRelease(com.liferay.portal.model.Release release)
56          throws com.liferay.portal.SystemException {
57          _releaseLocalService.deleteRelease(release);
58      }
59  
60      public java.util.List<Object> dynamicQuery(
61          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
62          throws com.liferay.portal.SystemException {
63          return _releaseLocalService.dynamicQuery(dynamicQuery);
64      }
65  
66      public java.util.List<Object> dynamicQuery(
67          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
68          int end) throws com.liferay.portal.SystemException {
69          return _releaseLocalService.dynamicQuery(dynamicQuery, start, end);
70      }
71  
72      public com.liferay.portal.model.Release getRelease(long releaseId)
73          throws com.liferay.portal.PortalException,
74              com.liferay.portal.SystemException {
75          return _releaseLocalService.getRelease(releaseId);
76      }
77  
78      public java.util.List<com.liferay.portal.model.Release> getReleases(
79          int start, int end) throws com.liferay.portal.SystemException {
80          return _releaseLocalService.getReleases(start, end);
81      }
82  
83      public int getReleasesCount() throws com.liferay.portal.SystemException {
84          return _releaseLocalService.getReleasesCount();
85      }
86  
87      public com.liferay.portal.model.Release updateRelease(
88          com.liferay.portal.model.Release release)
89          throws com.liferay.portal.SystemException {
90          return _releaseLocalService.updateRelease(release);
91      }
92  
93      public com.liferay.portal.model.Release updateRelease(
94          com.liferay.portal.model.Release release, boolean merge)
95          throws com.liferay.portal.SystemException {
96          return _releaseLocalService.updateRelease(release, merge);
97      }
98  
99      public com.liferay.portal.model.Release addRelease(
100         java.lang.String servletContextName, int buildNumber)
101         throws com.liferay.portal.SystemException {
102         return _releaseLocalService.addRelease(servletContextName, buildNumber);
103     }
104 
105     public void createTablesAndPopulate()
106         throws com.liferay.portal.SystemException {
107         _releaseLocalService.createTablesAndPopulate();
108     }
109 
110     public int getBuildNumberOrCreate()
111         throws com.liferay.portal.PortalException,
112             com.liferay.portal.SystemException {
113         return _releaseLocalService.getBuildNumberOrCreate();
114     }
115 
116     public com.liferay.portal.model.Release getRelease(
117         java.lang.String servletContextName, int buildNumber)
118         throws com.liferay.portal.PortalException,
119             com.liferay.portal.SystemException {
120         return _releaseLocalService.getRelease(servletContextName, buildNumber);
121     }
122 
123     public com.liferay.portal.model.Release updateRelease(long releaseId,
124         int buildNumber, java.util.Date buildDate, boolean verified)
125         throws com.liferay.portal.PortalException,
126             com.liferay.portal.SystemException {
127         return _releaseLocalService.updateRelease(releaseId, buildNumber,
128             buildDate, verified);
129     }
130 
131     public ReleaseLocalService getWrappedReleaseLocalService() {
132         return _releaseLocalService;
133     }
134 
135     private ReleaseLocalService _releaseLocalService;
136 }