1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * The contents of this file are subject to the terms of the Liferay Enterprise
5    * Subscription License ("License"). You may not use this file except in
6    * compliance with the License. You can obtain a copy of the License by
7    * contacting Liferay, Inc. See the License for the specific language governing
8    * permissions and limitations under the License, including but not limited to
9    * distribution rights of the Software.
10   *
11   *
12   * 
13   */
14  
15  package com.liferay.portal.service.persistence;
16  
17  import com.liferay.portal.SystemException;
18  import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
19  import com.liferay.portal.kernel.dao.orm.DynamicQuery;
20  import com.liferay.portal.model.Portlet;
21  
22  import java.util.List;
23  
24  /**
25   * <a href="PortletUtil.java.html"><b><i>View Source</i></b></a>
26   *
27   * <p>
28   * ServiceBuilder generated this class. Modifications in this class will be
29   * overwritten the next time is generated.
30   * </p>
31   *
32   * @author    Brian Wing Shun Chan
33   * @see       PortletPersistence
34   * @see       PortletPersistenceImpl
35   * @generated
36   */
37  public class PortletUtil {
38      /**
39       * @see com.liferay.portal.service.persistence.BasePersistence#clearCache()
40       */
41      public static void clearCache() {
42          getPersistence().clearCache();
43      }
44  
45      /**
46       * @see com.liferay.portal.service.persistence.BasePersistence#findWithDynamicQuery(DynamicQuery)
47       */
48      public static List<Object> findWithDynamicQuery(DynamicQuery dynamicQuery)
49          throws SystemException {
50          return getPersistence().findWithDynamicQuery(dynamicQuery);
51      }
52  
53      /**
54       * @see com.liferay.portal.service.persistence.BasePersistence#findWithDynamicQuery(DynamicQuery, int, int)
55       */
56      public static List<Object> findWithDynamicQuery(DynamicQuery dynamicQuery,
57          int start, int end) throws SystemException {
58          return getPersistence().findWithDynamicQuery(dynamicQuery, start, end);
59      }
60  
61      /**
62       * @see com.liferay.portal.service.persistence.BasePersistence#remove(com.liferay.portal.model.BaseModel)
63       */
64      public static Portlet remove(Portlet portlet) throws SystemException {
65          return getPersistence().remove(portlet);
66      }
67  
68      /**
69       * @see com.liferay.portal.service.persistence.BasePersistence#update(com.liferay.portal.model.BaseModel, boolean)
70       */
71      public static Portlet update(Portlet portlet, boolean merge)
72          throws SystemException {
73          return getPersistence().update(portlet, merge);
74      }
75  
76      public static void cacheResult(com.liferay.portal.model.Portlet portlet) {
77          getPersistence().cacheResult(portlet);
78      }
79  
80      public static void cacheResult(
81          java.util.List<com.liferay.portal.model.Portlet> portlets) {
82          getPersistence().cacheResult(portlets);
83      }
84  
85      public static com.liferay.portal.model.Portlet create(long id) {
86          return getPersistence().create(id);
87      }
88  
89      public static com.liferay.portal.model.Portlet remove(long id)
90          throws com.liferay.portal.NoSuchPortletException,
91              com.liferay.portal.SystemException {
92          return getPersistence().remove(id);
93      }
94  
95      /**
96       * @deprecated Use {@link com.liferay.portal.service.persistence.BasePersistence.#update(com.liferay.portal.model.BaseModel, boolean)}.
97       */
98      public static com.liferay.portal.model.Portlet update(
99          com.liferay.portal.model.Portlet portlet)
100         throws com.liferay.portal.SystemException {
101         return getPersistence().update(portlet);
102     }
103 
104     public static com.liferay.portal.model.Portlet updateImpl(
105         com.liferay.portal.model.Portlet portlet, boolean merge)
106         throws com.liferay.portal.SystemException {
107         return getPersistence().updateImpl(portlet, merge);
108     }
109 
110     public static com.liferay.portal.model.Portlet findByPrimaryKey(long id)
111         throws com.liferay.portal.NoSuchPortletException,
112             com.liferay.portal.SystemException {
113         return getPersistence().findByPrimaryKey(id);
114     }
115 
116     public static com.liferay.portal.model.Portlet fetchByPrimaryKey(long id)
117         throws com.liferay.portal.SystemException {
118         return getPersistence().fetchByPrimaryKey(id);
119     }
120 
121     public static java.util.List<com.liferay.portal.model.Portlet> findByCompanyId(
122         long companyId) throws com.liferay.portal.SystemException {
123         return getPersistence().findByCompanyId(companyId);
124     }
125 
126     public static java.util.List<com.liferay.portal.model.Portlet> findByCompanyId(
127         long companyId, int start, int end)
128         throws com.liferay.portal.SystemException {
129         return getPersistence().findByCompanyId(companyId, start, end);
130     }
131 
132     public static java.util.List<com.liferay.portal.model.Portlet> findByCompanyId(
133         long companyId, int start, int end,
134         com.liferay.portal.kernel.util.OrderByComparator obc)
135         throws com.liferay.portal.SystemException {
136         return getPersistence().findByCompanyId(companyId, start, end, obc);
137     }
138 
139     public static com.liferay.portal.model.Portlet findByCompanyId_First(
140         long companyId, com.liferay.portal.kernel.util.OrderByComparator obc)
141         throws com.liferay.portal.NoSuchPortletException,
142             com.liferay.portal.SystemException {
143         return getPersistence().findByCompanyId_First(companyId, obc);
144     }
145 
146     public static com.liferay.portal.model.Portlet findByCompanyId_Last(
147         long companyId, com.liferay.portal.kernel.util.OrderByComparator obc)
148         throws com.liferay.portal.NoSuchPortletException,
149             com.liferay.portal.SystemException {
150         return getPersistence().findByCompanyId_Last(companyId, obc);
151     }
152 
153     public static com.liferay.portal.model.Portlet[] findByCompanyId_PrevAndNext(
154         long id, long companyId,
155         com.liferay.portal.kernel.util.OrderByComparator obc)
156         throws com.liferay.portal.NoSuchPortletException,
157             com.liferay.portal.SystemException {
158         return getPersistence().findByCompanyId_PrevAndNext(id, companyId, obc);
159     }
160 
161     public static com.liferay.portal.model.Portlet findByC_P(long companyId,
162         java.lang.String portletId)
163         throws com.liferay.portal.NoSuchPortletException,
164             com.liferay.portal.SystemException {
165         return getPersistence().findByC_P(companyId, portletId);
166     }
167 
168     public static com.liferay.portal.model.Portlet fetchByC_P(long companyId,
169         java.lang.String portletId) throws com.liferay.portal.SystemException {
170         return getPersistence().fetchByC_P(companyId, portletId);
171     }
172 
173     public static com.liferay.portal.model.Portlet fetchByC_P(long companyId,
174         java.lang.String portletId, boolean retrieveFromCache)
175         throws com.liferay.portal.SystemException {
176         return getPersistence()
177                    .fetchByC_P(companyId, portletId, retrieveFromCache);
178     }
179 
180     public static java.util.List<com.liferay.portal.model.Portlet> findAll()
181         throws com.liferay.portal.SystemException {
182         return getPersistence().findAll();
183     }
184 
185     public static java.util.List<com.liferay.portal.model.Portlet> findAll(
186         int start, int end) throws com.liferay.portal.SystemException {
187         return getPersistence().findAll(start, end);
188     }
189 
190     public static java.util.List<com.liferay.portal.model.Portlet> findAll(
191         int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
192         throws com.liferay.portal.SystemException {
193         return getPersistence().findAll(start, end, obc);
194     }
195 
196     public static void removeByCompanyId(long companyId)
197         throws com.liferay.portal.SystemException {
198         getPersistence().removeByCompanyId(companyId);
199     }
200 
201     public static void removeByC_P(long companyId, java.lang.String portletId)
202         throws com.liferay.portal.NoSuchPortletException,
203             com.liferay.portal.SystemException {
204         getPersistence().removeByC_P(companyId, portletId);
205     }
206 
207     public static void removeAll() throws com.liferay.portal.SystemException {
208         getPersistence().removeAll();
209     }
210 
211     public static int countByCompanyId(long companyId)
212         throws com.liferay.portal.SystemException {
213         return getPersistence().countByCompanyId(companyId);
214     }
215 
216     public static int countByC_P(long companyId, java.lang.String portletId)
217         throws com.liferay.portal.SystemException {
218         return getPersistence().countByC_P(companyId, portletId);
219     }
220 
221     public static int countAll() throws com.liferay.portal.SystemException {
222         return getPersistence().countAll();
223     }
224 
225     public static PortletPersistence getPersistence() {
226         if (_persistence == null) {
227             _persistence = (PortletPersistence)PortalBeanLocatorUtil.locate(PortletPersistence.class.getName());
228         }
229 
230         return _persistence;
231     }
232 
233     public void setPersistence(PortletPersistence persistence) {
234         _persistence = persistence;
235     }
236 
237     private static PortletPersistence _persistence;
238 }