|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
@Internal public interface RemoteAgentAuthenticationManager
Manages remote agent authentication. This manager keeps track of two types of authentication requests: the ones pending approval (not approved) and the ones already approved. ONLY approved authentications are stored persistently. Authentications are uniquely identified by their UUID, meaning there can never be two approved authentications with the same UUID, or two authentications pending approval with the same UUID. This also means that if an authentication gets approved with UUID associated with some other previously approved authentication, the latter will be replaced with the newly approved authentication. IP of approved (persisted) authentications can be updated. Wildcard characters (*,?) can be used to match authentications.
Method Summary | |
---|---|
void |
approveAuthentications(Iterable<RemoteAgentAuthentication> authentications)
Approve all authentications from the list. |
Iterable<RemoteAgentAuthentication> |
getAllAuthentications()
Get all agent authentications known to this Bamboo server. |
RemoteAgentAuthentication |
getAuthentication(UUID uuid)
Get first remote agent authentication matching the IP and UUID. |
RemoteAgentAuthentication |
getAuthentication(UUID uuid,
String ip)
Get remote agent authentication matching the IP and UUID. |
Iterable<RemoteAgentAuthentication> |
getAuthentications(com.google.common.base.Predicate<RemoteAgentAuthentication> filter)
Get authentication filtered by given filter. |
com.atlassian.fugue.Pair<RemoteAgentAuthentication,Boolean> |
getOrCreatePendingAuthentication(UUID uuid,
String ip)
Create a new pending authentication for given IP address and UUID. |
boolean |
isRemoteAgentAuthenticationEnabled()
Checks whether the remote agent authentication is currently enabled. |
void |
revokeAgentAuthentications(Iterable<RemoteAgentAuthentication> authentications)
Revoke approval for given agent authentications. |
void |
setRemoteAgentAuthenticationEnabled(boolean isAuthenticationEnabled)
Sets the remote agent authentication to globally enabled/disabled. |
void |
updateIp(UUID uuid,
String newIp)
Update IP of an approved authentication with given uuid. |
Method Detail |
---|
void setRemoteAgentAuthenticationEnabled(boolean isAuthenticationEnabled) throws Exception
isAuthenticationEnabled
- true
if remote agent authentication should be enabled, false
otherwise.
Exception
- on any errorboolean isRemoteAgentAuthenticationEnabled()
true
, if remote agent authentication is enabled, false
otherwise@NotNull Iterable<RemoteAgentAuthentication> getAllAuthentications()
@NotNull Iterable<RemoteAgentAuthentication> getAuthentications(com.google.common.base.Predicate<RemoteAgentAuthentication> filter)
filter
- predicate to filter authentications
@Nullable RemoteAgentAuthentication getAuthentication(UUID uuid, String ip)
null
will be returned.
The returned authentication (if found) will have UUID matching the uuid parameter and IP address
either equal to ip parameter or a wildcard mask that matches the ip parameter. Persisted
(approved) authentications will be queried in preference to the authentications pending approval.
uuid
- UUIDip
- IP address
null
@Nullable RemoteAgentAuthentication getAuthentication(UUID uuid)
null
will be returned.
The returned authentication (if found) will have UUID matching the uuid parameter. Persisted
(approved) authentications will be queried in preference to the authentications pending approval.
uuid
- UUID
null
@NotNull com.atlassian.fugue.Pair<RemoteAgentAuthentication,Boolean> getOrCreatePendingAuthentication(@NotNull UUID uuid, @NotNull String ip)
uuid
- UUIDip
- IP address
true
if an existing authentication (pending or approved) with the same UUID and matching IP was
found, and false
otherwise (meaning new authentication created)
NullPointerException
- if any of the arguments is null
RemoteAgentAuthentications.matching(java.util.UUID, String)
void approveAuthentications(@NotNull Iterable<RemoteAgentAuthentication> authentications)
authentications
- authentications to approvevoid revokeAgentAuthentications(@NotNull Iterable<RemoteAgentAuthentication> authentications)
authentications
- authentications to disapprovevoid updateIp(@NotNull UUID uuid, @NotNull String newIp)
uuid
- UUID of an approved authentication to updatenewIp
- new IP address of the authentication
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |