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 UserIdMapperLocalService}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       UserIdMapperLocalService
024     * @generated
025     */
026    public class UserIdMapperLocalServiceWrapper implements UserIdMapperLocalService {
027            public UserIdMapperLocalServiceWrapper(
028                    UserIdMapperLocalService userIdMapperLocalService) {
029                    _userIdMapperLocalService = userIdMapperLocalService;
030            }
031    
032            public com.liferay.portal.model.UserIdMapper addUserIdMapper(
033                    com.liferay.portal.model.UserIdMapper userIdMapper)
034                    throws com.liferay.portal.kernel.exception.SystemException {
035                    return _userIdMapperLocalService.addUserIdMapper(userIdMapper);
036            }
037    
038            public com.liferay.portal.model.UserIdMapper createUserIdMapper(
039                    long userIdMapperId) {
040                    return _userIdMapperLocalService.createUserIdMapper(userIdMapperId);
041            }
042    
043            public void deleteUserIdMapper(long userIdMapperId)
044                    throws com.liferay.portal.kernel.exception.PortalException,
045                            com.liferay.portal.kernel.exception.SystemException {
046                    _userIdMapperLocalService.deleteUserIdMapper(userIdMapperId);
047            }
048    
049            public void deleteUserIdMapper(
050                    com.liferay.portal.model.UserIdMapper userIdMapper)
051                    throws com.liferay.portal.kernel.exception.SystemException {
052                    _userIdMapperLocalService.deleteUserIdMapper(userIdMapper);
053            }
054    
055            @SuppressWarnings("unchecked")
056            public java.util.List dynamicQuery(
057                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
058                    throws com.liferay.portal.kernel.exception.SystemException {
059                    return _userIdMapperLocalService.dynamicQuery(dynamicQuery);
060            }
061    
062            @SuppressWarnings("unchecked")
063            public java.util.List dynamicQuery(
064                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
065                    int end) throws com.liferay.portal.kernel.exception.SystemException {
066                    return _userIdMapperLocalService.dynamicQuery(dynamicQuery, start, end);
067            }
068    
069            @SuppressWarnings("unchecked")
070            public java.util.List dynamicQuery(
071                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
072                    int end,
073                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
074                    throws com.liferay.portal.kernel.exception.SystemException {
075                    return _userIdMapperLocalService.dynamicQuery(dynamicQuery, start, end,
076                            orderByComparator);
077            }
078    
079            public long dynamicQueryCount(
080                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
081                    throws com.liferay.portal.kernel.exception.SystemException {
082                    return _userIdMapperLocalService.dynamicQueryCount(dynamicQuery);
083            }
084    
085            public com.liferay.portal.model.UserIdMapper getUserIdMapper(
086                    long userIdMapperId)
087                    throws com.liferay.portal.kernel.exception.PortalException,
088                            com.liferay.portal.kernel.exception.SystemException {
089                    return _userIdMapperLocalService.getUserIdMapper(userIdMapperId);
090            }
091    
092            public java.util.List<com.liferay.portal.model.UserIdMapper> getUserIdMappers(
093                    int start, int end)
094                    throws com.liferay.portal.kernel.exception.SystemException {
095                    return _userIdMapperLocalService.getUserIdMappers(start, end);
096            }
097    
098            public int getUserIdMappersCount()
099                    throws com.liferay.portal.kernel.exception.SystemException {
100                    return _userIdMapperLocalService.getUserIdMappersCount();
101            }
102    
103            public com.liferay.portal.model.UserIdMapper updateUserIdMapper(
104                    com.liferay.portal.model.UserIdMapper userIdMapper)
105                    throws com.liferay.portal.kernel.exception.SystemException {
106                    return _userIdMapperLocalService.updateUserIdMapper(userIdMapper);
107            }
108    
109            public com.liferay.portal.model.UserIdMapper updateUserIdMapper(
110                    com.liferay.portal.model.UserIdMapper userIdMapper, boolean merge)
111                    throws com.liferay.portal.kernel.exception.SystemException {
112                    return _userIdMapperLocalService.updateUserIdMapper(userIdMapper, merge);
113            }
114    
115            public void deleteUserIdMappers(long userId)
116                    throws com.liferay.portal.kernel.exception.SystemException {
117                    _userIdMapperLocalService.deleteUserIdMappers(userId);
118            }
119    
120            public com.liferay.portal.model.UserIdMapper getUserIdMapper(long userId,
121                    java.lang.String type)
122                    throws com.liferay.portal.kernel.exception.PortalException,
123                            com.liferay.portal.kernel.exception.SystemException {
124                    return _userIdMapperLocalService.getUserIdMapper(userId, type);
125            }
126    
127            public com.liferay.portal.model.UserIdMapper getUserIdMapperByExternalUserId(
128                    java.lang.String type, java.lang.String externalUserId)
129                    throws com.liferay.portal.kernel.exception.PortalException,
130                            com.liferay.portal.kernel.exception.SystemException {
131                    return _userIdMapperLocalService.getUserIdMapperByExternalUserId(type,
132                            externalUserId);
133            }
134    
135            public java.util.List<com.liferay.portal.model.UserIdMapper> getUserIdMappers(
136                    long userId) throws com.liferay.portal.kernel.exception.SystemException {
137                    return _userIdMapperLocalService.getUserIdMappers(userId);
138            }
139    
140            public com.liferay.portal.model.UserIdMapper updateUserIdMapper(
141                    long userId, java.lang.String type, java.lang.String description,
142                    java.lang.String externalUserId)
143                    throws com.liferay.portal.kernel.exception.SystemException {
144                    return _userIdMapperLocalService.updateUserIdMapper(userId, type,
145                            description, externalUserId);
146            }
147    
148            public UserIdMapperLocalService getWrappedUserIdMapperLocalService() {
149                    return _userIdMapperLocalService;
150            }
151    
152            private UserIdMapperLocalService _userIdMapperLocalService;
153    }