Package jetbrains.buildServer.users.impl
Interface UserFactoryEx
-
- All Superinterfaces:
UserFactory
- All Known Implementing Classes:
UserFactoryImpl
public interface UserFactoryEx extends UserFactory
- Author:
- Sergey.Anchipolevsky Date: 19.09.2007
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UserExcreateAssociatedUser(long id, FeatureProvider featureProvider, String featureType)UserExcreateGuest(UserDataLoader userDataLoader)UserExcreatePermissionsRestrictedUser(UserEx delegate, PermissionsHolder permissionsHolder)UserExcreateSuperUser()UserExcreateUser(long id, String realm, String account, String name, String email, Date lastLoginTimestamp, boolean hasPassword, UserDataLoader userDataLoader)
-
-
-
Method Detail
-
createUser
@NotNull UserEx createUser(long id, String realm, String account, String name, String email, Date lastLoginTimestamp, boolean hasPassword, @NotNull UserDataLoader userDataLoader)
- Specified by:
createUserin interfaceUserFactory
-
createPermissionsRestrictedUser
@NotNull UserEx createPermissionsRestrictedUser(@NotNull UserEx delegate, @NotNull PermissionsHolder permissionsHolder)
-
createGuest
@NotNull UserEx createGuest(@NotNull UserDataLoader userDataLoader)
- Specified by:
createGuestin interfaceUserFactory
-
createSuperUser
@NotNull UserEx createSuperUser()
- Specified by:
createSuperUserin interfaceUserFactory
-
createAssociatedUser
@NotNull UserEx createAssociatedUser(long id, FeatureProvider featureProvider, @NotNull String featureType)
-
-