1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
13   */
14  
15  package com.liferay.portal.service;
16  
17  
18  /**
19   * <a href="ClassNameLocalServiceUtil.java.html"><b><i>View Source</i></b></a>
20   *
21   * <p>
22   * ServiceBuilder generated this class. Modifications in this class will be
23   * overwritten the next time is generated.
24   * </p>
25   *
26   * <p>
27   * This class is a wrapper for {@link ClassNameLocalService}.
28   * </p>
29   *
30   * @author    Brian Wing Shun Chan
31   * @see       ClassNameLocalService
32   * @generated
33   */
34  public class ClassNameLocalServiceWrapper implements ClassNameLocalService {
35      public ClassNameLocalServiceWrapper(
36          ClassNameLocalService classNameLocalService) {
37          _classNameLocalService = classNameLocalService;
38      }
39  
40      public com.liferay.portal.model.ClassName addClassName(
41          com.liferay.portal.model.ClassName className)
42          throws com.liferay.portal.kernel.exception.SystemException {
43          return _classNameLocalService.addClassName(className);
44      }
45  
46      public com.liferay.portal.model.ClassName createClassName(long classNameId) {
47          return _classNameLocalService.createClassName(classNameId);
48      }
49  
50      public void deleteClassName(long classNameId)
51          throws com.liferay.portal.kernel.exception.PortalException,
52              com.liferay.portal.kernel.exception.SystemException {
53          _classNameLocalService.deleteClassName(classNameId);
54      }
55  
56      public void deleteClassName(com.liferay.portal.model.ClassName className)
57          throws com.liferay.portal.kernel.exception.SystemException {
58          _classNameLocalService.deleteClassName(className);
59      }
60  
61      public java.util.List<Object> dynamicQuery(
62          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
63          throws com.liferay.portal.kernel.exception.SystemException {
64          return _classNameLocalService.dynamicQuery(dynamicQuery);
65      }
66  
67      public java.util.List<Object> dynamicQuery(
68          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
69          int end) throws com.liferay.portal.kernel.exception.SystemException {
70          return _classNameLocalService.dynamicQuery(dynamicQuery, start, end);
71      }
72  
73      public java.util.List<Object> dynamicQuery(
74          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
75          int end,
76          com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
77          throws com.liferay.portal.kernel.exception.SystemException {
78          return _classNameLocalService.dynamicQuery(dynamicQuery, start, end,
79              orderByComparator);
80      }
81  
82      public int dynamicQueryCount(
83          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
84          throws com.liferay.portal.kernel.exception.SystemException {
85          return _classNameLocalService.dynamicQueryCount(dynamicQuery);
86      }
87  
88      public com.liferay.portal.model.ClassName getClassName(long classNameId)
89          throws com.liferay.portal.kernel.exception.PortalException,
90              com.liferay.portal.kernel.exception.SystemException {
91          return _classNameLocalService.getClassName(classNameId);
92      }
93  
94      public java.util.List<com.liferay.portal.model.ClassName> getClassNames(
95          int start, int end)
96          throws com.liferay.portal.kernel.exception.SystemException {
97          return _classNameLocalService.getClassNames(start, end);
98      }
99  
100     public int getClassNamesCount()
101         throws com.liferay.portal.kernel.exception.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.kernel.exception.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.kernel.exception.SystemException {
114         return _classNameLocalService.updateClassName(className, merge);
115     }
116 
117     public com.liferay.portal.model.ClassName addClassName(
118         java.lang.String value)
119         throws com.liferay.portal.kernel.exception.SystemException {
120         return _classNameLocalService.addClassName(value);
121     }
122 
123     public void checkClassNames()
124         throws com.liferay.portal.kernel.exception.SystemException {
125         _classNameLocalService.checkClassNames();
126     }
127 
128     public com.liferay.portal.model.ClassName getClassName(
129         java.lang.String value)
130         throws com.liferay.portal.kernel.exception.SystemException {
131         return _classNameLocalService.getClassName(value);
132     }
133 
134     public long getClassNameId(java.lang.Class<?> classObj) {
135         return _classNameLocalService.getClassNameId(classObj);
136     }
137 
138     public long getClassNameId(java.lang.String value) {
139         return _classNameLocalService.getClassNameId(value);
140     }
141 
142     public ClassNameLocalService getWrappedClassNameLocalService() {
143         return _classNameLocalService;
144     }
145 
146     private ClassNameLocalService _classNameLocalService;
147 }