Package | Description |
---|---|
org.itracker.services |
Service Interfaces
|
org.itracker.services.authentication |
This package has something to do with Authentication ;)
|
org.itracker.services.authentication.adsson |
This package has something to do with Authentication, maybe Active Directory Service for those not using Linux for whatever reason ;)
|
org.itracker.services.implementations |
This package contains XXXService interface implementations,
named XXXServiceImpl by convention.
|
Modifier and Type | Method | Description |
---|---|---|
boolean |
UserService.allowPasswordUpdates(User user,
Object authentication,
int authType,
int reqSource) |
This method checks to see if the given user's password can be updated locally.
|
boolean |
UserService.allowPermissionUpdates(User user,
Object authentication,
int authType,
int reqSource) |
This method checks to see if the given user's permission information
can be updated locally.
|
boolean |
UserService.allowPreferenceUpdates(User user,
Object authentication,
int authType,
int reqSource) |
This method checks to see if the given user's preference information
can be updated locally.
|
boolean |
UserService.allowProfileCreation(User user,
Object authentication,
int authType,
int reqSource) |
This method checks to see if a new user profile can be created within ITracker
|
boolean |
UserService.allowProfileUpdates(User user,
Object authentication,
int authType,
int reqSource) |
This method checks to see if the given user's core user profile information
can be updated locally.
|
boolean |
UserService.allowRegistration(User user,
Object authentication,
int authType,
int reqSource) |
This method checks to see if the given user is allowed to self register.
|
User |
UserService.checkLogin(String login,
Object authentication,
int authType,
int reqSource) |
This method checks the login of a user, and returns the user if authentication was successful.
|
Modifier and Type | Method | Description |
---|---|---|
boolean |
DefaultAuthenticator.allowPasswordUpdates(User user,
Object authentication,
int authType,
int reqSource) |
The DefaultAuthenticator always allows password updates.
|
boolean |
PluggableAuthenticator.allowPasswordUpdates(User user,
Object authentication,
int authType,
int reqSource) |
This method should be implemented to determine if the particular user is allowed to perform
password updates on the system.
|
boolean |
TestAuthenticator.allowPasswordUpdates(User user,
Object authentication,
int authType,
int reqSource) |
|
boolean |
DefaultAuthenticator.allowPermissionUpdates(User user,
Object authentication,
int authType,
int reqSource) |
The DefaultAuthenticator always allows permission updates.
|
boolean |
PluggableAuthenticator.allowPermissionUpdates(User user,
Object authentication,
int authType,
int reqSource) |
This method should be implemented to determine if the particular user is allowed to perform
permissions updates on the system.
|
boolean |
DefaultAuthenticator.allowPreferenceUpdates(User user,
Object authentication,
int authType,
int reqSource) |
The DefaultAuthenticator always allows preferences updates.
|
boolean |
PluggableAuthenticator.allowPreferenceUpdates(User user,
Object authentication,
int authType,
int reqSource) |
This method should be implemented to determine if the particular user is allowed to perform
preferences updates on the system.
|
boolean |
DefaultAuthenticator.allowProfileCreation(User user,
Object authentication,
int authType,
int reqSource) |
The DefaultAuthenticator always allows new user profiles.
|
boolean |
PluggableAuthenticator.allowProfileCreation(User user,
Object authentication,
int authType,
int reqSource) |
This method should be implemented to determine if a new user profile should be allowed
to be created.
|
boolean |
DefaultAuthenticator.allowProfileUpdates(User user,
Object authentication,
int authType,
int reqSource) |
The DefaultAuthenticator always allows profile updates.
|
boolean |
PluggableAuthenticator.allowProfileUpdates(User user,
Object authentication,
int authType,
int reqSource) |
This method should be implemented to determine if the particular user is
allowed to perform profile updates on the system.
|
boolean |
TestAuthenticator.allowProfileUpdates(User user,
Object authentication,
int authType,
int reqSource) |
|
boolean |
DefaultAuthenticator.allowRegistration(User user,
Object authentication,
int authType,
int reqSource) |
The DefaultAuthenticator always allows self registered users.
|
boolean |
PluggableAuthenticator.allowRegistration(User user,
Object authentication,
int authType,
int reqSource) |
This method should be implemented to determine if a user is authorized to self register.
|
User |
DefaultAuthenticator.checkLogin(String login,
Object authentication,
int authType,
int reqSource) |
Checks the login of a user against the user profile provided in ITracker.
|
User |
PluggableAuthenticator.checkLogin(String login,
Object authentication,
int authType,
int reqSource) |
This method should be implemented to determine if a user login is successful.
|
User |
TestAuthenticator.checkLogin(String login,
Object authentication,
int authType,
int reqSource) |
|
boolean |
DefaultAuthenticator.createProfile(User user,
Object authentication,
int authType,
int reqSource) |
The DefaultAuthenticator does not make any changes to a newly created profile.
|
boolean |
PluggableAuthenticator.createProfile(User user,
Object authentication,
int authType,
int reqSource) |
This method should be implemented to perform any updates that are necessary in the authentication
system to support a new user.
|
ConfigurationService |
AbstractPluggableAuthenticator.getConfigurationService() |
Returns an ConfigurationService session bean that can be used to retreive properties
that have been set in the system.
|
List<Permission> |
DefaultAuthenticator.getUserPermissions(User user,
int reqSource) |
The DefaultAuthenticator returns a list of user permissions from the database.
|
List<Permission> |
PluggableAuthenticator.getUserPermissions(User user,
int reqSource) |
This method should return all the permissions a user has in the authentication system.
|
UserService |
AbstractPluggableAuthenticator.getUserService() |
Returns a UserService session bean that can be used to call needed methods such
as retrieving a user.
|
List<User> |
DefaultAuthenticator.getUsersWithProjectPermission(Integer projectId,
int[] permissionTypes,
boolean requireAll,
boolean activeOnly,
int reqSource) |
Deprecated.
|
List<User> |
DefaultAuthenticator.getUsersWithProjectPermission(Integer projectId,
PermissionType[] permissionTypes,
boolean requireAll,
boolean activeOnly,
int reqSource) |
Returns the list of users for a given project.
|
List<User> |
PluggableAuthenticator.getUsersWithProjectPermission(Integer projectId,
int[] permissionTypes,
boolean requireAll,
boolean activeOnly,
int reqSource) |
Deprecated.
|
List<User> |
PluggableAuthenticator.getUsersWithProjectPermission(Integer projectId,
PermissionType[] permissionTypes,
boolean requireAll,
boolean activeOnly,
int reqSource) |
This method should return an array of users that have certain permissions in the
authentication system.
|
boolean |
DefaultAuthenticator.updateProfile(User user,
int updateType,
Object authentication,
int authType,
int reqSource) |
The DefaultAuthenticator does not make any changes to an updated profile.
|
boolean |
PluggableAuthenticator.updateProfile(User user,
int updateType,
Object authentication,
int authType,
int reqSource) |
This method should be implemented to perform any updates that are necessary in the authentication
system to support the updated user information.
|
Modifier and Type | Method | Description |
---|---|---|
boolean |
WindowsSSONAuthenticator.allowPasswordUpdates(User user,
Object authentication,
int authType,
int reqSource) |
|
boolean |
WindowsSSONAuthenticator.allowProfileUpdates(User user,
Object authentication,
int authType,
int reqSource) |
|
User |
WindowsSSONAuthenticator.checkLogin(String login,
Object authentication,
int authType,
int reqSource) |
|
protected abstract User |
WindowsSSONAuthenticator.getExternalUserInfo(String login) |
|
protected User |
WindowsSSONAuthenticatorADInfo.getExternalUserInfo(String login) |
Modifier and Type | Method | Description |
---|---|---|
boolean |
UserServiceImpl.allowPasswordUpdates(User user,
Object authentication,
int authType,
int reqSource) |
|
boolean |
UserServiceImpl.allowPermissionUpdates(User user,
Object authentication,
int authType,
int reqSource) |
|
boolean |
UserServiceImpl.allowPreferenceUpdates(User user,
Object authentication,
int authType,
int reqSource) |
|
boolean |
UserServiceImpl.allowProfileCreation(User user,
Object authentication,
int authType,
int reqSource) |
|
boolean |
UserServiceImpl.allowProfileUpdates(User user,
Object authentication,
int authType,
int reqSource) |
|
boolean |
UserServiceImpl.allowRegistration(User user,
Object authentication,
int authType,
int reqSource) |
|
User |
UserServiceImpl.checkLogin(String login,
Object authentication,
int authType,
int reqSource) |
Copyright © 2002–2019 itracker. All rights reserved.