1
22
23 package com.liferay.portal.service;
24
25
26
50 public interface UserIdMapperLocalService {
51 public com.liferay.portal.model.UserIdMapper addUserIdMapper(
52 com.liferay.portal.model.UserIdMapper userIdMapper)
53 throws com.liferay.portal.SystemException;
54
55 public com.liferay.portal.model.UserIdMapper createUserIdMapper(
56 long userIdMapperId);
57
58 public void deleteUserIdMapper(long userIdMapperId)
59 throws com.liferay.portal.SystemException,
60 com.liferay.portal.PortalException;
61
62 public void deleteUserIdMapper(
63 com.liferay.portal.model.UserIdMapper userIdMapper)
64 throws com.liferay.portal.SystemException;
65
66 public java.util.List<Object> dynamicQuery(
67 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
68 throws com.liferay.portal.SystemException;
69
70 public java.util.List<Object> dynamicQuery(
71 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
72 int end) throws com.liferay.portal.SystemException;
73
74 public com.liferay.portal.model.UserIdMapper getUserIdMapper(
75 long userIdMapperId)
76 throws com.liferay.portal.SystemException,
77 com.liferay.portal.PortalException;
78
79 public java.util.List<com.liferay.portal.model.UserIdMapper> getUserIdMappers(
80 int start, int end) throws com.liferay.portal.SystemException;
81
82 public int getUserIdMappersCount()
83 throws com.liferay.portal.SystemException;
84
85 public com.liferay.portal.model.UserIdMapper updateUserIdMapper(
86 com.liferay.portal.model.UserIdMapper userIdMapper)
87 throws com.liferay.portal.SystemException;
88
89 public void deleteUserIdMappers(long userId)
90 throws com.liferay.portal.SystemException;
91
92 public com.liferay.portal.model.UserIdMapper getUserIdMapper(long userId,
93 java.lang.String type)
94 throws com.liferay.portal.PortalException,
95 com.liferay.portal.SystemException;
96
97 public com.liferay.portal.model.UserIdMapper getUserIdMapperByExternalUserId(
98 java.lang.String type, java.lang.String externalUserId)
99 throws com.liferay.portal.PortalException,
100 com.liferay.portal.SystemException;
101
102 public java.util.List<com.liferay.portal.model.UserIdMapper> getUserIdMappers(
103 long userId) throws com.liferay.portal.SystemException;
104
105 public com.liferay.portal.model.UserIdMapper updateUserIdMapper(
106 long userId, java.lang.String type, java.lang.String description,
107 java.lang.String externalUserId)
108 throws com.liferay.portal.SystemException;
109 }