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  import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
26  
27  /**
28   * <a href="SCProductEntryLocalServiceUtil.java.html"><b><i>View Source</i></b></a>
29   *
30   * <p>
31   * ServiceBuilder generated this class. Modifications in this class will be
32   * overwritten the next time is generated.
33   * </p>
34   *
35   * <p>
36   * This class provides static methods for the
37   * {@link SCProductEntryLocalService} bean. The static methods of
38   * this class calls the same methods of the bean instance. It's convenient to be
39   * able to just write one line to call a method on a bean instead of writing a
40   * lookup call and a method call.
41   * </p>
42   *
43   * @author    Brian Wing Shun Chan
44   * @see       SCProductEntryLocalService
45   * @generated
46   */
47  public class SCProductEntryLocalServiceUtil {
48      public static com.liferay.portlet.softwarecatalog.model.SCProductEntry addSCProductEntry(
49          com.liferay.portlet.softwarecatalog.model.SCProductEntry scProductEntry)
50          throws com.liferay.portal.SystemException {
51          return getService().addSCProductEntry(scProductEntry);
52      }
53  
54      public static com.liferay.portlet.softwarecatalog.model.SCProductEntry createSCProductEntry(
55          long productEntryId) {
56          return getService().createSCProductEntry(productEntryId);
57      }
58  
59      public static void deleteSCProductEntry(long productEntryId)
60          throws com.liferay.portal.PortalException,
61              com.liferay.portal.SystemException {
62          getService().deleteSCProductEntry(productEntryId);
63      }
64  
65      public static void deleteSCProductEntry(
66          com.liferay.portlet.softwarecatalog.model.SCProductEntry scProductEntry)
67          throws com.liferay.portal.SystemException {
68          getService().deleteSCProductEntry(scProductEntry);
69      }
70  
71      public static java.util.List<Object> dynamicQuery(
72          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
73          throws com.liferay.portal.SystemException {
74          return getService().dynamicQuery(dynamicQuery);
75      }
76  
77      public static java.util.List<Object> dynamicQuery(
78          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
79          int end) throws com.liferay.portal.SystemException {
80          return getService().dynamicQuery(dynamicQuery, start, end);
81      }
82  
83      public static com.liferay.portlet.softwarecatalog.model.SCProductEntry getSCProductEntry(
84          long productEntryId)
85          throws com.liferay.portal.PortalException,
86              com.liferay.portal.SystemException {
87          return getService().getSCProductEntry(productEntryId);
88      }
89  
90      public static java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> getSCProductEntries(
91          int start, int end) throws com.liferay.portal.SystemException {
92          return getService().getSCProductEntries(start, end);
93      }
94  
95      public static int getSCProductEntriesCount()
96          throws com.liferay.portal.SystemException {
97          return getService().getSCProductEntriesCount();
98      }
99  
100     public static com.liferay.portlet.softwarecatalog.model.SCProductEntry updateSCProductEntry(
101         com.liferay.portlet.softwarecatalog.model.SCProductEntry scProductEntry)
102         throws com.liferay.portal.SystemException {
103         return getService().updateSCProductEntry(scProductEntry);
104     }
105 
106     public static com.liferay.portlet.softwarecatalog.model.SCProductEntry updateSCProductEntry(
107         com.liferay.portlet.softwarecatalog.model.SCProductEntry scProductEntry,
108         boolean merge) throws com.liferay.portal.SystemException {
109         return getService().updateSCProductEntry(scProductEntry, merge);
110     }
111 
112     public static com.liferay.portlet.softwarecatalog.model.SCProductEntry addProductEntry(
113         long userId, java.lang.String name, java.lang.String type,
114         java.lang.String tags, java.lang.String shortDescription,
115         java.lang.String longDescription, java.lang.String pageURL,
116         java.lang.String author, java.lang.String repoGroupId,
117         java.lang.String repoArtifactId, long[] licenseIds,
118         java.util.List<byte[]> thumbnails, java.util.List<byte[]> fullImages,
119         com.liferay.portal.service.ServiceContext serviceContext)
120         throws com.liferay.portal.PortalException,
121             com.liferay.portal.SystemException {
122         return getService()
123                    .addProductEntry(userId, name, type, tags, shortDescription,
124             longDescription, pageURL, author, repoGroupId, repoArtifactId,
125             licenseIds, thumbnails, fullImages, serviceContext);
126     }
127 
128     public static void addProductEntryResources(long productEntryId,
129         boolean addCommunityPermissions, boolean addGuestPermissions)
130         throws com.liferay.portal.PortalException,
131             com.liferay.portal.SystemException {
132         getService()
133             .addProductEntryResources(productEntryId, addCommunityPermissions,
134             addGuestPermissions);
135     }
136 
137     public static void addProductEntryResources(long productEntryId,
138         java.lang.String[] communityPermissions,
139         java.lang.String[] guestPermissions)
140         throws com.liferay.portal.PortalException,
141             com.liferay.portal.SystemException {
142         getService()
143             .addProductEntryResources(productEntryId, communityPermissions,
144             guestPermissions);
145     }
146 
147     public static void addProductEntryResources(
148         com.liferay.portlet.softwarecatalog.model.SCProductEntry productEntry,
149         boolean addCommunityPermissions, boolean addGuestPermissions)
150         throws com.liferay.portal.PortalException,
151             com.liferay.portal.SystemException {
152         getService()
153             .addProductEntryResources(productEntry, addCommunityPermissions,
154             addGuestPermissions);
155     }
156 
157     public static void addProductEntryResources(
158         com.liferay.portlet.softwarecatalog.model.SCProductEntry productEntry,
159         java.lang.String[] communityPermissions,
160         java.lang.String[] guestPermissions)
161         throws com.liferay.portal.PortalException,
162             com.liferay.portal.SystemException {
163         getService()
164             .addProductEntryResources(productEntry, communityPermissions,
165             guestPermissions);
166     }
167 
168     public static void deleteProductEntries(long groupId)
169         throws com.liferay.portal.PortalException,
170             com.liferay.portal.SystemException {
171         getService().deleteProductEntries(groupId);
172     }
173 
174     public static void deleteProductEntry(long productEntryId)
175         throws com.liferay.portal.PortalException,
176             com.liferay.portal.SystemException {
177         getService().deleteProductEntry(productEntryId);
178     }
179 
180     public static void deleteProductEntry(
181         com.liferay.portlet.softwarecatalog.model.SCProductEntry productEntry)
182         throws com.liferay.portal.PortalException,
183             com.liferay.portal.SystemException {
184         getService().deleteProductEntry(productEntry);
185     }
186 
187     public static java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> getProductEntries(
188         long groupId, int start, int end)
189         throws com.liferay.portal.SystemException {
190         return getService().getProductEntries(groupId, start, end);
191     }
192 
193     public static java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> getProductEntries(
194         long groupId, int start, int end,
195         com.liferay.portal.kernel.util.OrderByComparator obc)
196         throws com.liferay.portal.SystemException {
197         return getService().getProductEntries(groupId, start, end, obc);
198     }
199 
200     public static java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> getProductEntries(
201         long groupId, long userId, int start, int end)
202         throws com.liferay.portal.SystemException {
203         return getService().getProductEntries(groupId, userId, start, end);
204     }
205 
206     public static java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> getProductEntries(
207         long groupId, long userId, int start, int end,
208         com.liferay.portal.kernel.util.OrderByComparator obc)
209         throws com.liferay.portal.SystemException {
210         return getService().getProductEntries(groupId, userId, start, end, obc);
211     }
212 
213     public static int getProductEntriesCount(long groupId)
214         throws com.liferay.portal.SystemException {
215         return getService().getProductEntriesCount(groupId);
216     }
217 
218     public static int getProductEntriesCount(long groupId, long userId)
219         throws com.liferay.portal.SystemException {
220         return getService().getProductEntriesCount(groupId, userId);
221     }
222 
223     public static com.liferay.portlet.softwarecatalog.model.SCProductEntry getProductEntry(
224         long productEntryId)
225         throws com.liferay.portal.PortalException,
226             com.liferay.portal.SystemException {
227         return getService().getProductEntry(productEntryId);
228     }
229 
230     public static java.lang.String getRepositoryXML(long groupId,
231         java.lang.String baseImageURL, java.util.Date oldestDate,
232         int maxNumOfVersions, java.util.Properties repoSettings)
233         throws com.liferay.portal.SystemException {
234         return getService()
235                    .getRepositoryXML(groupId, baseImageURL, oldestDate,
236             maxNumOfVersions, repoSettings);
237     }
238 
239     public static java.lang.String getRepositoryXML(long groupId,
240         java.lang.String version, java.lang.String baseImageURL,
241         java.util.Date oldestDate, int maxNumOfVersions,
242         java.util.Properties repoSettings)
243         throws com.liferay.portal.SystemException {
244         return getService()
245                    .getRepositoryXML(groupId, version, baseImageURL,
246             oldestDate, maxNumOfVersions, repoSettings);
247     }
248 
249     public static void reIndex(long productEntryId)
250         throws com.liferay.portal.SystemException {
251         getService().reIndex(productEntryId);
252     }
253 
254     public static void reIndex(
255         com.liferay.portlet.softwarecatalog.model.SCProductEntry productEntry)
256         throws com.liferay.portal.SystemException {
257         getService().reIndex(productEntry);
258     }
259 
260     public static void reIndex(java.lang.String[] ids)
261         throws com.liferay.portal.SystemException {
262         getService().reIndex(ids);
263     }
264 
265     public static com.liferay.portal.kernel.search.Hits search(long companyId,
266         long groupId, java.lang.String keywords, java.lang.String type,
267         int start, int end) throws com.liferay.portal.SystemException {
268         return getService()
269                    .search(companyId, groupId, keywords, type, start, end);
270     }
271 
272     public static com.liferay.portlet.softwarecatalog.model.SCProductEntry updateProductEntry(
273         long productEntryId, java.lang.String name, java.lang.String type,
274         java.lang.String tags, java.lang.String shortDescription,
275         java.lang.String longDescription, java.lang.String pageURL,
276         java.lang.String author, java.lang.String repoGroupId,
277         java.lang.String repoArtifactId, long[] licenseIds,
278         java.util.List<byte[]> thumbnails, java.util.List<byte[]> fullImages)
279         throws com.liferay.portal.PortalException,
280             com.liferay.portal.SystemException {
281         return getService()
282                    .updateProductEntry(productEntryId, name, type, tags,
283             shortDescription, longDescription, pageURL, author, repoGroupId,
284             repoArtifactId, licenseIds, thumbnails, fullImages);
285     }
286 
287     public static SCProductEntryLocalService getService() {
288         if (_service == null) {
289             _service = (SCProductEntryLocalService)PortalBeanLocatorUtil.locate(SCProductEntryLocalService.class.getName());
290         }
291 
292         return _service;
293     }
294 
295     public void setService(SCProductEntryLocalService service) {
296         _service = service;
297     }
298 
299     private static SCProductEntryLocalService _service;
300 }