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 void deleteUserIdMapper(long userIdMapperId)
56 throws com.liferay.portal.SystemException,
57 com.liferay.portal.PortalException;
58
59 public void deleteUserIdMapper(
60 com.liferay.portal.model.UserIdMapper userIdMapper)
61 throws com.liferay.portal.SystemException;
62
63 public java.util.List<Object> dynamicQuery(
64 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
65 throws com.liferay.portal.SystemException;
66
67 public java.util.List<Object> dynamicQuery(
68 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
69 int end) throws com.liferay.portal.SystemException;
70
71 public com.liferay.portal.model.UserIdMapper getUserIdMapper(
72 long userIdMapperId)
73 throws com.liferay.portal.SystemException,
74 com.liferay.portal.PortalException;
75
76 public java.util.List<com.liferay.portal.model.UserIdMapper> getUserIdMappers(
77 int start, int end) throws com.liferay.portal.SystemException;
78
79 public int getUserIdMappersCount()
80 throws com.liferay.portal.SystemException;
81
82 public com.liferay.portal.model.UserIdMapper updateUserIdMapper(
83 com.liferay.portal.model.UserIdMapper userIdMapper)
84 throws com.liferay.portal.SystemException;
85
86 public void deleteUserIdMappers(long userId)
87 throws com.liferay.portal.SystemException;
88
89 public com.liferay.portal.model.UserIdMapper getUserIdMapper(long userId,
90 java.lang.String type)
91 throws com.liferay.portal.PortalException,
92 com.liferay.portal.SystemException;
93
94 public com.liferay.portal.model.UserIdMapper getUserIdMapperByExternalUserId(
95 java.lang.String type, java.lang.String externalUserId)
96 throws com.liferay.portal.PortalException,
97 com.liferay.portal.SystemException;
98
99 public java.util.List<com.liferay.portal.model.UserIdMapper> getUserIdMappers(
100 long userId) throws com.liferay.portal.SystemException;
101
102 public com.liferay.portal.model.UserIdMapper updateUserIdMapper(
103 long userId, java.lang.String type, java.lang.String description,
104 java.lang.String externalUserId)
105 throws com.liferay.portal.SystemException;
106 }