001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portal.service;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link ClassNameLocalService}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       ClassNameLocalService
024     * @generated
025     */
026    public class ClassNameLocalServiceWrapper implements ClassNameLocalService {
027            public ClassNameLocalServiceWrapper(
028                    ClassNameLocalService classNameLocalService) {
029                    _classNameLocalService = classNameLocalService;
030            }
031    
032            public com.liferay.portal.model.ClassName addClassName(
033                    com.liferay.portal.model.ClassName className)
034                    throws com.liferay.portal.kernel.exception.SystemException {
035                    return _classNameLocalService.addClassName(className);
036            }
037    
038            public com.liferay.portal.model.ClassName createClassName(long classNameId) {
039                    return _classNameLocalService.createClassName(classNameId);
040            }
041    
042            public void deleteClassName(long classNameId)
043                    throws com.liferay.portal.kernel.exception.PortalException,
044                            com.liferay.portal.kernel.exception.SystemException {
045                    _classNameLocalService.deleteClassName(classNameId);
046            }
047    
048            public void deleteClassName(com.liferay.portal.model.ClassName className)
049                    throws com.liferay.portal.kernel.exception.SystemException {
050                    _classNameLocalService.deleteClassName(className);
051            }
052    
053            @SuppressWarnings("unchecked")
054            public java.util.List dynamicQuery(
055                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
056                    throws com.liferay.portal.kernel.exception.SystemException {
057                    return _classNameLocalService.dynamicQuery(dynamicQuery);
058            }
059    
060            @SuppressWarnings("unchecked")
061            public java.util.List dynamicQuery(
062                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
063                    int end) throws com.liferay.portal.kernel.exception.SystemException {
064                    return _classNameLocalService.dynamicQuery(dynamicQuery, start, end);
065            }
066    
067            @SuppressWarnings("unchecked")
068            public java.util.List dynamicQuery(
069                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
070                    int end,
071                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
072                    throws com.liferay.portal.kernel.exception.SystemException {
073                    return _classNameLocalService.dynamicQuery(dynamicQuery, start, end,
074                            orderByComparator);
075            }
076    
077            public long dynamicQueryCount(
078                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
079                    throws com.liferay.portal.kernel.exception.SystemException {
080                    return _classNameLocalService.dynamicQueryCount(dynamicQuery);
081            }
082    
083            public com.liferay.portal.model.ClassName getClassName(long classNameId)
084                    throws com.liferay.portal.kernel.exception.PortalException,
085                            com.liferay.portal.kernel.exception.SystemException {
086                    return _classNameLocalService.getClassName(classNameId);
087            }
088    
089            public java.util.List<com.liferay.portal.model.ClassName> getClassNames(
090                    int start, int end)
091                    throws com.liferay.portal.kernel.exception.SystemException {
092                    return _classNameLocalService.getClassNames(start, end);
093            }
094    
095            public int getClassNamesCount()
096                    throws com.liferay.portal.kernel.exception.SystemException {
097                    return _classNameLocalService.getClassNamesCount();
098            }
099    
100            public com.liferay.portal.model.ClassName updateClassName(
101                    com.liferay.portal.model.ClassName className)
102                    throws com.liferay.portal.kernel.exception.SystemException {
103                    return _classNameLocalService.updateClassName(className);
104            }
105    
106            public com.liferay.portal.model.ClassName updateClassName(
107                    com.liferay.portal.model.ClassName className, boolean merge)
108                    throws com.liferay.portal.kernel.exception.SystemException {
109                    return _classNameLocalService.updateClassName(className, merge);
110            }
111    
112            public com.liferay.portal.model.ClassName addClassName(
113                    java.lang.String value)
114                    throws com.liferay.portal.kernel.exception.SystemException {
115                    return _classNameLocalService.addClassName(value);
116            }
117    
118            public void checkClassNames()
119                    throws com.liferay.portal.kernel.exception.SystemException {
120                    _classNameLocalService.checkClassNames();
121            }
122    
123            public com.liferay.portal.model.ClassName getClassName(
124                    java.lang.String value)
125                    throws com.liferay.portal.kernel.exception.SystemException {
126                    return _classNameLocalService.getClassName(value);
127            }
128    
129            public long getClassNameId(java.lang.Class<?> classObj) {
130                    return _classNameLocalService.getClassNameId(classObj);
131            }
132    
133            public long getClassNameId(java.lang.String value) {
134                    return _classNameLocalService.getClassNameId(value);
135            }
136    
137            public ClassNameLocalService getWrappedClassNameLocalService() {
138                    return _classNameLocalService;
139            }
140    
141            private ClassNameLocalService _classNameLocalService;
142    }