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 com.liferay.portal.model.UserIdMapper getUserIdMapper(
76 long userIdMapperId)
77 throws com.liferay.portal.PortalException,
78 com.liferay.portal.SystemException {
79 return _userIdMapperLocalService.getUserIdMapper(userIdMapperId);
80 }
81
82 public java.util.List<com.liferay.portal.model.UserIdMapper> getUserIdMappers(
83 int start, int end) throws com.liferay.portal.SystemException {
84 return _userIdMapperLocalService.getUserIdMappers(start, end);
85 }
86
87 public int getUserIdMappersCount()
88 throws com.liferay.portal.SystemException {
89 return _userIdMapperLocalService.getUserIdMappersCount();
90 }
91
92 public com.liferay.portal.model.UserIdMapper updateUserIdMapper(
93 com.liferay.portal.model.UserIdMapper userIdMapper)
94 throws com.liferay.portal.SystemException {
95 return _userIdMapperLocalService.updateUserIdMapper(userIdMapper);
96 }
97
98 public com.liferay.portal.model.UserIdMapper updateUserIdMapper(
99 com.liferay.portal.model.UserIdMapper userIdMapper, boolean merge)
100 throws com.liferay.portal.SystemException {
101 return _userIdMapperLocalService.updateUserIdMapper(userIdMapper, merge);
102 }
103
104 public void deleteUserIdMappers(long userId)
105 throws com.liferay.portal.SystemException {
106 _userIdMapperLocalService.deleteUserIdMappers(userId);
107 }
108
109 public com.liferay.portal.model.UserIdMapper getUserIdMapper(long userId,
110 java.lang.String type)
111 throws com.liferay.portal.PortalException,
112 com.liferay.portal.SystemException {
113 return _userIdMapperLocalService.getUserIdMapper(userId, type);
114 }
115
116 public com.liferay.portal.model.UserIdMapper getUserIdMapperByExternalUserId(
117 java.lang.String type, java.lang.String externalUserId)
118 throws com.liferay.portal.PortalException,
119 com.liferay.portal.SystemException {
120 return _userIdMapperLocalService.getUserIdMapperByExternalUserId(type,
121 externalUserId);
122 }
123
124 public java.util.List<com.liferay.portal.model.UserIdMapper> getUserIdMappers(
125 long userId) throws com.liferay.portal.SystemException {
126 return _userIdMapperLocalService.getUserIdMappers(userId);
127 }
128
129 public com.liferay.portal.model.UserIdMapper updateUserIdMapper(
130 long userId, java.lang.String type, java.lang.String description,
131 java.lang.String externalUserId)
132 throws com.liferay.portal.SystemException {
133 return _userIdMapperLocalService.updateUserIdMapper(userId, type,
134 description, externalUserId);
135 }
136
137 public UserIdMapperLocalService getWrappedUserIdMapperLocalService() {
138 return _userIdMapperLocalService;
139 }
140
141 private UserIdMapperLocalService _userIdMapperLocalService;
142 }