Package | Description |
---|---|
org.kepler.authentication |
Modifier and Type | Method and Description |
---|---|
abstract ProxyEntity |
AuthenticationService.authenticate(Domain domain)
Authenticate a user
|
ProxyEntity |
GAMAAuthenticationService.authenticate(Domain d)
Use the GAMA authentication service to get credential returns null if the
user cancels the action.
|
ProxyEntity |
LDAPAuthenticationService.authenticate(Domain d)
Use LDAP to authenticate the user
|
ProxyEntity |
LDAPAuthenticationService.authenticate(Domain d,
java.lang.String dn,
java.lang.String password)
this method authenticates using a full dn instead of breaking it into
username and org
|
ProxyEntity |
LDAPAuthenticationService.authenticate(Domain d,
java.lang.String username,
java.lang.String password,
java.lang.String org)
this method authenticates without creating a gui popup window for the
user.
|
ProxyEntity |
AuthenticationManager.getProxy(java.lang.String domainName)
This function retrieves back the user proxy within specified domain,
adding ProxyEntity to AuthenticationManager's proxyRepository in the
process.
|
ProxyEntity |
AuthenticationManager.peekProxy(java.lang.String domainName) |
ProxyEntity |
ProxyRepository.searchProxyInRepository(Domain domain)
This function is used to search proxy with the specified domain.
|
ProxyEntity |
ProxyRepository.searchProxyInRepository(java.lang.String userName,
Domain domain)
This function is used to search proxy with the specified user name and
domain.
|
Modifier and Type | Method and Description |
---|---|
void |
AuthenticationManager.addProxyEntity(ProxyEntity pentity)
adds a proxyEntity to the entity repository if it was authenticated
outside of the AuthManager.
|
void |
ProxyRepository.insertProxy(ProxyEntity proxy)
This function is used by LoginGUI to insert the new proxy into the
proxyRepository
|
void |
ProxyRepository.removeProxy(ProxyEntity proxy) |
void |
AuthenticationManager.revokeProxy(ProxyEntity entity) |
abstract void |
AuthenticationService.unauthenticate(ProxyEntity proxy)
Unauthenticate a user
|
void |
GAMAAuthenticationService.unauthenticate(ProxyEntity pentity) |
void |
LDAPAuthenticationService.unauthenticate(ProxyEntity pentity) |