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.portal.service.persistence;
24  
25  /**
26   * <a href="ClassNameUtil.java.html"><b><i>View Source</i></b></a>
27   *
28   * @author Brian Wing Shun Chan
29   *
30   */
31  public class ClassNameUtil {
32      public static com.liferay.portal.model.ClassName create(long classNameId) {
33          return getPersistence().create(classNameId);
34      }
35  
36      public static com.liferay.portal.model.ClassName remove(long classNameId)
37          throws com.liferay.portal.NoSuchClassNameException,
38              com.liferay.portal.SystemException {
39          return getPersistence().remove(classNameId);
40      }
41  
42      public static com.liferay.portal.model.ClassName remove(
43          com.liferay.portal.model.ClassName className)
44          throws com.liferay.portal.SystemException {
45          return getPersistence().remove(className);
46      }
47  
48      /**
49       * @deprecated Use <code>update(ClassName className, boolean merge)</code>.
50       */
51      public static com.liferay.portal.model.ClassName update(
52          com.liferay.portal.model.ClassName className)
53          throws com.liferay.portal.SystemException {
54          return getPersistence().update(className);
55      }
56  
57      /**
58       * Add, update, or merge, the entity. This method also calls the model
59       * listeners to trigger the proper events associated with adding, deleting,
60       * or updating an entity.
61       *
62       * @param        className the entity to add, update, or merge
63       * @param        merge boolean value for whether to merge the entity. The
64       *                default value is false. Setting merge to true is more
65       *                expensive and should only be true when className is
66       *                transient. See LEP-5473 for a detailed discussion of this
67       *                method.
68       * @return        true if the portlet can be displayed via Ajax
69       */
70      public static com.liferay.portal.model.ClassName update(
71          com.liferay.portal.model.ClassName className, boolean merge)
72          throws com.liferay.portal.SystemException {
73          return getPersistence().update(className, merge);
74      }
75  
76      public static com.liferay.portal.model.ClassName updateImpl(
77          com.liferay.portal.model.ClassName className, boolean merge)
78          throws com.liferay.portal.SystemException {
79          return getPersistence().updateImpl(className, merge);
80      }
81  
82      public static com.liferay.portal.model.ClassName findByPrimaryKey(
83          long classNameId)
84          throws com.liferay.portal.NoSuchClassNameException,
85              com.liferay.portal.SystemException {
86          return getPersistence().findByPrimaryKey(classNameId);
87      }
88  
89      public static com.liferay.portal.model.ClassName fetchByPrimaryKey(
90          long classNameId) throws com.liferay.portal.SystemException {
91          return getPersistence().fetchByPrimaryKey(classNameId);
92      }
93  
94      public static com.liferay.portal.model.ClassName findByValue(
95          java.lang.String value)
96          throws com.liferay.portal.NoSuchClassNameException,
97              com.liferay.portal.SystemException {
98          return getPersistence().findByValue(value);
99      }
100 
101     public static com.liferay.portal.model.ClassName fetchByValue(
102         java.lang.String value) throws com.liferay.portal.SystemException {
103         return getPersistence().fetchByValue(value);
104     }
105 
106     public static java.util.List<Object> findWithDynamicQuery(
107         com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
108         throws com.liferay.portal.SystemException {
109         return getPersistence().findWithDynamicQuery(dynamicQuery);
110     }
111 
112     public static java.util.List<Object> findWithDynamicQuery(
113         com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
114         int end) throws com.liferay.portal.SystemException {
115         return getPersistence().findWithDynamicQuery(dynamicQuery, start, end);
116     }
117 
118     public static java.util.List<com.liferay.portal.model.ClassName> findAll()
119         throws com.liferay.portal.SystemException {
120         return getPersistence().findAll();
121     }
122 
123     public static java.util.List<com.liferay.portal.model.ClassName> findAll(
124         int start, int end) throws com.liferay.portal.SystemException {
125         return getPersistence().findAll(start, end);
126     }
127 
128     public static java.util.List<com.liferay.portal.model.ClassName> findAll(
129         int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
130         throws com.liferay.portal.SystemException {
131         return getPersistence().findAll(start, end, obc);
132     }
133 
134     public static void removeByValue(java.lang.String value)
135         throws com.liferay.portal.NoSuchClassNameException,
136             com.liferay.portal.SystemException {
137         getPersistence().removeByValue(value);
138     }
139 
140     public static void removeAll() throws com.liferay.portal.SystemException {
141         getPersistence().removeAll();
142     }
143 
144     public static int countByValue(java.lang.String value)
145         throws com.liferay.portal.SystemException {
146         return getPersistence().countByValue(value);
147     }
148 
149     public static int countAll() throws com.liferay.portal.SystemException {
150         return getPersistence().countAll();
151     }
152 
153     public static ClassNamePersistence getPersistence() {
154         return _persistence;
155     }
156 
157     public void setPersistence(ClassNamePersistence persistence) {
158         _persistence = persistence;
159     }
160 
161     private static ClassNamePersistence _persistence;
162 }