1   /**
2    * Copyright (c) 2000-2009 Liferay, Inc. All rights reserved.
3    *
4    * Permission is hereby granted, free of charge, to any person obtaining a copy
5    * of this software and associated documentation files (the "Software"), to deal
6    * in the Software without restriction, including without limitation the rights
7    * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8    * copies of the Software, and to permit persons to whom the Software is
9    * furnished to do so, subject to the following conditions:
10   *
11   * The above copyright notice and this permission notice shall be included in
12   * all copies or substantial portions of the Software.
13   *
14   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17   * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19   * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20   * SOFTWARE.
21   */
22  
23  package com.liferay.portlet.softwarecatalog.service;
24  
25  
26  /**
27   * <a href="SCProductVersionServiceUtil.java.html"><b><i>View Source</i></b></a>
28   *
29   * <p>
30   * ServiceBuilder generated this class. Modifications in this class will be
31   * overwritten the next time is generated.
32   * </p>
33   *
34   * <p>
35   * This class provides static methods for the
36   * {@link SCProductVersionService} bean. The static methods of
37   * this class calls the same methods of the bean instance. It's convenient to be
38   * able to just write one line to call a method on a bean instead of writing a
39   * lookup call and a method call.
40   * </p>
41   *
42   * @author    Brian Wing Shun Chan
43   * @see       SCProductVersionService
44   * @generated
45   */
46  public class SCProductVersionServiceUtil {
47      public static com.liferay.portlet.softwarecatalog.model.SCProductVersion addProductVersion(
48          long productEntryId, java.lang.String version,
49          java.lang.String changeLog, java.lang.String downloadPageURL,
50          java.lang.String directDownloadURL, boolean testDirectDownloadURL,
51          boolean repoStoreArtifact, long[] frameworkVersionIds,
52          boolean addCommunityPermissions, boolean addGuestPermissions)
53          throws com.liferay.portal.PortalException,
54              com.liferay.portal.SystemException, java.rmi.RemoteException {
55          return getService()
56                     .addProductVersion(productEntryId, version, changeLog,
57              downloadPageURL, directDownloadURL, testDirectDownloadURL,
58              repoStoreArtifact, frameworkVersionIds, addCommunityPermissions,
59              addGuestPermissions);
60      }
61  
62      public static com.liferay.portlet.softwarecatalog.model.SCProductVersion addProductVersion(
63          long productEntryId, java.lang.String version,
64          java.lang.String changeLog, java.lang.String downloadPageURL,
65          java.lang.String directDownloadURL, boolean testDirectDownloadURL,
66          boolean repoStoreArtifact, long[] frameworkVersionIds,
67          java.lang.String[] communityPermissions,
68          java.lang.String[] guestPermissions)
69          throws com.liferay.portal.PortalException,
70              com.liferay.portal.SystemException, java.rmi.RemoteException {
71          return getService()
72                     .addProductVersion(productEntryId, version, changeLog,
73              downloadPageURL, directDownloadURL, testDirectDownloadURL,
74              repoStoreArtifact, frameworkVersionIds, communityPermissions,
75              guestPermissions);
76      }
77  
78      public static void deleteProductVersion(long productVersionId)
79          throws com.liferay.portal.PortalException,
80              com.liferay.portal.SystemException, java.rmi.RemoteException {
81          getService().deleteProductVersion(productVersionId);
82      }
83  
84      public static com.liferay.portlet.softwarecatalog.model.SCProductVersion getProductVersion(
85          long productVersionId)
86          throws com.liferay.portal.PortalException,
87              com.liferay.portal.SystemException, java.rmi.RemoteException {
88          return getService().getProductVersion(productVersionId);
89      }
90  
91      public static java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductVersion> getProductVersions(
92          long productEntryId, int start, int end)
93          throws com.liferay.portal.PortalException,
94              com.liferay.portal.SystemException, java.rmi.RemoteException {
95          return getService().getProductVersions(productEntryId, start, end);
96      }
97  
98      public static int getProductVersionsCount(long productEntryId)
99          throws com.liferay.portal.PortalException,
100             com.liferay.portal.SystemException, java.rmi.RemoteException {
101         return getService().getProductVersionsCount(productEntryId);
102     }
103 
104     public static com.liferay.portlet.softwarecatalog.model.SCProductVersion updateProductVersion(
105         long productVersionId, java.lang.String version,
106         java.lang.String changeLog, java.lang.String downloadPageURL,
107         java.lang.String directDownloadURL, boolean testDirectDownloadURL,
108         boolean repoStoreArtifact, long[] frameworkVersionIds)
109         throws com.liferay.portal.PortalException,
110             com.liferay.portal.SystemException, java.rmi.RemoteException {
111         return getService()
112                    .updateProductVersion(productVersionId, version, changeLog,
113             downloadPageURL, directDownloadURL, testDirectDownloadURL,
114             repoStoreArtifact, frameworkVersionIds);
115     }
116 
117     public static SCProductVersionService getService() {
118         if (_service == null) {
119             throw new RuntimeException("SCProductVersionService is not set");
120         }
121 
122         return _service;
123     }
124 
125     public void setService(SCProductVersionService service) {
126         _service = service;
127     }
128 
129     private static SCProductVersionService _service;
130 }