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    /**
019     * <p>
020     * This class is a wrapper for {@link ClassNameLocalService}.
021     * </p>
022     *
023     * @author    Brian Wing Shun Chan
024     * @see       ClassNameLocalService
025     * @generated
026     */
027    public class ClassNameLocalServiceWrapper implements ClassNameLocalService {
028            public ClassNameLocalServiceWrapper(
029                    ClassNameLocalService classNameLocalService) {
030                    _classNameLocalService = classNameLocalService;
031            }
032    
033            public com.liferay.portal.model.ClassName addClassName(
034                    com.liferay.portal.model.ClassName className)
035                    throws com.liferay.portal.kernel.exception.SystemException {
036                    return _classNameLocalService.addClassName(className);
037            }
038    
039            public com.liferay.portal.model.ClassName createClassName(long classNameId) {
040                    return _classNameLocalService.createClassName(classNameId);
041            }
042    
043            public void deleteClassName(long classNameId)
044                    throws com.liferay.portal.kernel.exception.PortalException,
045                            com.liferay.portal.kernel.exception.SystemException {
046                    _classNameLocalService.deleteClassName(classNameId);
047            }
048    
049            public void deleteClassName(com.liferay.portal.model.ClassName className)
050                    throws com.liferay.portal.kernel.exception.SystemException {
051                    _classNameLocalService.deleteClassName(className);
052            }
053    
054            @SuppressWarnings("unchecked")
055            public java.util.List dynamicQuery(
056                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
057                    throws com.liferay.portal.kernel.exception.SystemException {
058                    return _classNameLocalService.dynamicQuery(dynamicQuery);
059            }
060    
061            @SuppressWarnings("unchecked")
062            public java.util.List dynamicQuery(
063                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
064                    int end) throws com.liferay.portal.kernel.exception.SystemException {
065                    return _classNameLocalService.dynamicQuery(dynamicQuery, start, end);
066            }
067    
068            @SuppressWarnings("unchecked")
069            public java.util.List dynamicQuery(
070                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
071                    int end,
072                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
073                    throws com.liferay.portal.kernel.exception.SystemException {
074                    return _classNameLocalService.dynamicQuery(dynamicQuery, start, end,
075                            orderByComparator);
076            }
077    
078            public long dynamicQueryCount(
079                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
080                    throws com.liferay.portal.kernel.exception.SystemException {
081                    return _classNameLocalService.dynamicQueryCount(dynamicQuery);
082            }
083    
084            public com.liferay.portal.model.ClassName getClassName(long classNameId)
085                    throws com.liferay.portal.kernel.exception.PortalException,
086                            com.liferay.portal.kernel.exception.SystemException {
087                    return _classNameLocalService.getClassName(classNameId);
088            }
089    
090            public java.util.List<com.liferay.portal.model.ClassName> getClassNames(
091                    int start, int end)
092                    throws com.liferay.portal.kernel.exception.SystemException {
093                    return _classNameLocalService.getClassNames(start, end);
094            }
095    
096            public int getClassNamesCount()
097                    throws com.liferay.portal.kernel.exception.SystemException {
098                    return _classNameLocalService.getClassNamesCount();
099            }
100    
101            public com.liferay.portal.model.ClassName updateClassName(
102                    com.liferay.portal.model.ClassName className)
103                    throws com.liferay.portal.kernel.exception.SystemException {
104                    return _classNameLocalService.updateClassName(className);
105            }
106    
107            public com.liferay.portal.model.ClassName updateClassName(
108                    com.liferay.portal.model.ClassName className, boolean merge)
109                    throws com.liferay.portal.kernel.exception.SystemException {
110                    return _classNameLocalService.updateClassName(className, merge);
111            }
112    
113            public com.liferay.portal.model.ClassName addClassName(
114                    java.lang.String value)
115                    throws com.liferay.portal.kernel.exception.SystemException {
116                    return _classNameLocalService.addClassName(value);
117            }
118    
119            public void checkClassNames()
120                    throws com.liferay.portal.kernel.exception.SystemException {
121                    _classNameLocalService.checkClassNames();
122            }
123    
124            public com.liferay.portal.model.ClassName getClassName(
125                    java.lang.String value)
126                    throws com.liferay.portal.kernel.exception.SystemException {
127                    return _classNameLocalService.getClassName(value);
128            }
129    
130            public long getClassNameId(java.lang.Class<?> classObj) {
131                    return _classNameLocalService.getClassNameId(classObj);
132            }
133    
134            public long getClassNameId(java.lang.String value) {
135                    return _classNameLocalService.getClassNameId(value);
136            }
137    
138            public ClassNameLocalService getWrappedClassNameLocalService() {
139                    return _classNameLocalService;
140            }
141    
142            private ClassNameLocalService _classNameLocalService;
143    }