1
14
15 package com.liferay.portal.service;
16
17
33 public class UserIdMapperLocalServiceWrapper implements UserIdMapperLocalService {
34 public UserIdMapperLocalServiceWrapper(
35 UserIdMapperLocalService userIdMapperLocalService) {
36 _userIdMapperLocalService = userIdMapperLocalService;
37 }
38
39 public com.liferay.portal.model.UserIdMapper addUserIdMapper(
40 com.liferay.portal.model.UserIdMapper userIdMapper)
41 throws com.liferay.portal.SystemException {
42 return _userIdMapperLocalService.addUserIdMapper(userIdMapper);
43 }
44
45 public com.liferay.portal.model.UserIdMapper createUserIdMapper(
46 long userIdMapperId) {
47 return _userIdMapperLocalService.createUserIdMapper(userIdMapperId);
48 }
49
50 public void deleteUserIdMapper(long userIdMapperId)
51 throws com.liferay.portal.PortalException,
52 com.liferay.portal.SystemException {
53 _userIdMapperLocalService.deleteUserIdMapper(userIdMapperId);
54 }
55
56 public void deleteUserIdMapper(
57 com.liferay.portal.model.UserIdMapper userIdMapper)
58 throws com.liferay.portal.SystemException {
59 _userIdMapperLocalService.deleteUserIdMapper(userIdMapper);
60 }
61
62 @SuppressWarnings("rawtypes")
63 public java.util.List dynamicQuery(
64 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
65 throws com.liferay.portal.SystemException {
66 return _userIdMapperLocalService.dynamicQuery(dynamicQuery);
67 }
68
69 @SuppressWarnings("rawtypes")
70 public java.util.List dynamicQuery(
71 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
72 int end) throws com.liferay.portal.SystemException {
73 return _userIdMapperLocalService.dynamicQuery(dynamicQuery, start, end);
74 }
75
76 @SuppressWarnings("rawtypes")
77 public java.util.List dynamicQuery(
78 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
79 int end,
80 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
81 throws com.liferay.portal.SystemException {
82 return _userIdMapperLocalService.dynamicQuery(dynamicQuery, start, end,
83 orderByComparator);
84 }
85
86 public int dynamicQueryCount(
87 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
88 throws com.liferay.portal.SystemException {
89 return _userIdMapperLocalService.dynamicQueryCount(dynamicQuery);
90 }
91
92 public com.liferay.portal.model.UserIdMapper getUserIdMapper(
93 long userIdMapperId)
94 throws com.liferay.portal.PortalException,
95 com.liferay.portal.SystemException {
96 return _userIdMapperLocalService.getUserIdMapper(userIdMapperId);
97 }
98
99 public java.util.List<com.liferay.portal.model.UserIdMapper> getUserIdMappers(
100 int start, int end) throws com.liferay.portal.SystemException {
101 return _userIdMapperLocalService.getUserIdMappers(start, end);
102 }
103
104 public int getUserIdMappersCount()
105 throws com.liferay.portal.SystemException {
106 return _userIdMapperLocalService.getUserIdMappersCount();
107 }
108
109 public com.liferay.portal.model.UserIdMapper updateUserIdMapper(
110 com.liferay.portal.model.UserIdMapper userIdMapper)
111 throws com.liferay.portal.SystemException {
112 return _userIdMapperLocalService.updateUserIdMapper(userIdMapper);
113 }
114
115 public com.liferay.portal.model.UserIdMapper updateUserIdMapper(
116 com.liferay.portal.model.UserIdMapper userIdMapper, boolean merge)
117 throws com.liferay.portal.SystemException {
118 return _userIdMapperLocalService.updateUserIdMapper(userIdMapper, merge);
119 }
120
121 public void deleteUserIdMappers(long userId)
122 throws com.liferay.portal.SystemException {
123 _userIdMapperLocalService.deleteUserIdMappers(userId);
124 }
125
126 public com.liferay.portal.model.UserIdMapper getUserIdMapper(long userId,
127 java.lang.String type)
128 throws com.liferay.portal.PortalException,
129 com.liferay.portal.SystemException {
130 return _userIdMapperLocalService.getUserIdMapper(userId, type);
131 }
132
133 public com.liferay.portal.model.UserIdMapper getUserIdMapperByExternalUserId(
134 java.lang.String type, java.lang.String externalUserId)
135 throws com.liferay.portal.PortalException,
136 com.liferay.portal.SystemException {
137 return _userIdMapperLocalService.getUserIdMapperByExternalUserId(type,
138 externalUserId);
139 }
140
141 public java.util.List<com.liferay.portal.model.UserIdMapper> getUserIdMappers(
142 long userId) throws com.liferay.portal.SystemException {
143 return _userIdMapperLocalService.getUserIdMappers(userId);
144 }
145
146 public com.liferay.portal.model.UserIdMapper updateUserIdMapper(
147 long userId, java.lang.String type, java.lang.String description,
148 java.lang.String externalUserId)
149 throws com.liferay.portal.SystemException {
150 return _userIdMapperLocalService.updateUserIdMapper(userId, type,
151 description, externalUserId);
152 }
153
154 public UserIdMapperLocalService getWrappedUserIdMapperLocalService() {
155 return _userIdMapperLocalService;
156 }
157
158 private UserIdMapperLocalService _userIdMapperLocalService;
159 }