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