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;
16  
17  /**
18   * <a href="ClassNameLocalServiceUtil.java.html"><b><i>View Source</i></b></a>
19   *
20   * <p>
21   * ServiceBuilder generated this class. Modifications in this class will be
22   * overwritten the next time is generated.
23   * </p>
24   *
25   * <p>
26   * This class is a wrapper for {@link ClassNameLocalService}.
27   * </p>
28   *
29   * @author    Brian Wing Shun Chan
30   * @see       ClassNameLocalService
31   * @generated
32   */
33  public class ClassNameLocalServiceWrapper implements ClassNameLocalService {
34      public ClassNameLocalServiceWrapper(
35          ClassNameLocalService classNameLocalService) {
36          _classNameLocalService = classNameLocalService;
37      }
38  
39      public com.liferay.portal.model.ClassName addClassName(
40          com.liferay.portal.model.ClassName className)
41          throws com.liferay.portal.SystemException {
42          return _classNameLocalService.addClassName(className);
43      }
44  
45      public com.liferay.portal.model.ClassName createClassName(long classNameId) {
46          return _classNameLocalService.createClassName(classNameId);
47      }
48  
49      public void deleteClassName(long classNameId)
50          throws com.liferay.portal.PortalException,
51              com.liferay.portal.SystemException {
52          _classNameLocalService.deleteClassName(classNameId);
53      }
54  
55      public void deleteClassName(com.liferay.portal.model.ClassName className)
56          throws com.liferay.portal.SystemException {
57          _classNameLocalService.deleteClassName(className);
58      }
59  
60      @SuppressWarnings("rawtypes")
61      public java.util.List dynamicQuery(
62          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
63          throws com.liferay.portal.SystemException {
64          return _classNameLocalService.dynamicQuery(dynamicQuery);
65      }
66  
67      @SuppressWarnings("rawtypes")
68      public java.util.List dynamicQuery(
69          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
70          int end) throws com.liferay.portal.SystemException {
71          return _classNameLocalService.dynamicQuery(dynamicQuery, start, end);
72      }
73  
74      @SuppressWarnings("rawtypes")
75      public java.util.List dynamicQuery(
76          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
77          int end,
78          com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
79          throws com.liferay.portal.SystemException {
80          return _classNameLocalService.dynamicQuery(dynamicQuery, start, end,
81              orderByComparator);
82      }
83  
84      public int dynamicQueryCount(
85          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
86          throws com.liferay.portal.SystemException {
87          return _classNameLocalService.dynamicQueryCount(dynamicQuery);
88      }
89  
90      public com.liferay.portal.model.ClassName getClassName(long classNameId)
91          throws com.liferay.portal.PortalException,
92              com.liferay.portal.SystemException {
93          return _classNameLocalService.getClassName(classNameId);
94      }
95  
96      public java.util.List<com.liferay.portal.model.ClassName> getClassNames(
97          int start, int end) throws com.liferay.portal.SystemException {
98          return _classNameLocalService.getClassNames(start, end);
99      }
100 
101     public int getClassNamesCount() throws com.liferay.portal.SystemException {
102         return _classNameLocalService.getClassNamesCount();
103     }
104 
105     public com.liferay.portal.model.ClassName updateClassName(
106         com.liferay.portal.model.ClassName className)
107         throws com.liferay.portal.SystemException {
108         return _classNameLocalService.updateClassName(className);
109     }
110 
111     public com.liferay.portal.model.ClassName updateClassName(
112         com.liferay.portal.model.ClassName className, boolean merge)
113         throws com.liferay.portal.SystemException {
114         return _classNameLocalService.updateClassName(className, merge);
115     }
116 
117     public com.liferay.portal.model.ClassName addClassName(
118         java.lang.String value) throws com.liferay.portal.SystemException {
119         return _classNameLocalService.addClassName(value);
120     }
121 
122     public void checkClassNames() throws com.liferay.portal.SystemException {
123         _classNameLocalService.checkClassNames();
124     }
125 
126     public com.liferay.portal.model.ClassName getClassName(
127         java.lang.String value) throws com.liferay.portal.SystemException {
128         return _classNameLocalService.getClassName(value);
129     }
130 
131     public long getClassNameId(java.lang.Class<?> classObj) {
132         return _classNameLocalService.getClassNameId(classObj);
133     }
134 
135     public long getClassNameId(java.lang.String value) {
136         return _classNameLocalService.getClassNameId(value);
137     }
138 
139     public ClassNameLocalService getWrappedClassNameLocalService() {
140         return _classNameLocalService;
141     }
142 
143     private ClassNameLocalService _classNameLocalService;
144 }