1
22
23 package com.liferay.portal.service;
24
25
26
47 public class UserIdMapperLocalServiceUtil {
48 public static com.liferay.portal.model.UserIdMapper addUserIdMapper(
49 com.liferay.portal.model.UserIdMapper userIdMapper)
50 throws com.liferay.portal.SystemException {
51 return _service.addUserIdMapper(userIdMapper);
52 }
53
54 public static void deleteUserIdMapper(long userIdMapperId)
55 throws com.liferay.portal.PortalException,
56 com.liferay.portal.SystemException {
57 _service.deleteUserIdMapper(userIdMapperId);
58 }
59
60 public static void deleteUserIdMapper(
61 com.liferay.portal.model.UserIdMapper userIdMapper)
62 throws com.liferay.portal.SystemException {
63 _service.deleteUserIdMapper(userIdMapper);
64 }
65
66 public static java.util.List<Object> dynamicQuery(
67 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
68 throws com.liferay.portal.SystemException {
69 return _service.dynamicQuery(dynamicQuery);
70 }
71
72 public static java.util.List<Object> dynamicQuery(
73 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
74 int end) throws com.liferay.portal.SystemException {
75 return _service.dynamicQuery(dynamicQuery, start, end);
76 }
77
78 public static com.liferay.portal.model.UserIdMapper getUserIdMapper(
79 long userIdMapperId)
80 throws com.liferay.portal.PortalException,
81 com.liferay.portal.SystemException {
82 return _service.getUserIdMapper(userIdMapperId);
83 }
84
85 public static java.util.List<com.liferay.portal.model.UserIdMapper> getUserIdMappers(
86 int start, int end) throws com.liferay.portal.SystemException {
87 return _service.getUserIdMappers(start, end);
88 }
89
90 public static int getUserIdMappersCount()
91 throws com.liferay.portal.SystemException {
92 return _service.getUserIdMappersCount();
93 }
94
95 public static com.liferay.portal.model.UserIdMapper updateUserIdMapper(
96 com.liferay.portal.model.UserIdMapper userIdMapper)
97 throws com.liferay.portal.SystemException {
98 return _service.updateUserIdMapper(userIdMapper);
99 }
100
101 public static void deleteUserIdMappers(long userId)
102 throws com.liferay.portal.SystemException {
103 _service.deleteUserIdMappers(userId);
104 }
105
106 public static com.liferay.portal.model.UserIdMapper getUserIdMapper(
107 long userId, java.lang.String type)
108 throws com.liferay.portal.PortalException,
109 com.liferay.portal.SystemException {
110 return _service.getUserIdMapper(userId, type);
111 }
112
113 public static com.liferay.portal.model.UserIdMapper getUserIdMapperByExternalUserId(
114 java.lang.String type, java.lang.String externalUserId)
115 throws com.liferay.portal.PortalException,
116 com.liferay.portal.SystemException {
117 return _service.getUserIdMapperByExternalUserId(type, externalUserId);
118 }
119
120 public static java.util.List<com.liferay.portal.model.UserIdMapper> getUserIdMappers(
121 long userId) throws com.liferay.portal.SystemException {
122 return _service.getUserIdMappers(userId);
123 }
124
125 public static com.liferay.portal.model.UserIdMapper updateUserIdMapper(
126 long userId, java.lang.String type, java.lang.String description,
127 java.lang.String externalUserId)
128 throws com.liferay.portal.SystemException {
129 return _service.updateUserIdMapper(userId, type, description,
130 externalUserId);
131 }
132
133 public static UserIdMapperLocalService getService() {
134 return _service;
135 }
136
137 public void setService(UserIdMapperLocalService service) {
138 _service = service;
139 }
140
141 private static UserIdMapperLocalService _service;
142 }