Uses of Interface
com.atlassian.bamboo.buildqueue.RemoteAgentAuthentication
-
Packages that use RemoteAgentAuthentication Package Description com.atlassian.bamboo.buildqueue com.atlassian.bamboo.buildqueue.manager com.atlassian.bamboo.configuration.agent -
-
Uses of RemoteAgentAuthentication in com.atlassian.bamboo.buildqueue
Subinterfaces of RemoteAgentAuthentication in com.atlassian.bamboo.buildqueue Modifier and Type Interface Description interface
RemoteAgentAuthenticationEntity
Represents entity with authentication data of a remote agent.Classes in com.atlassian.bamboo.buildqueue that implement RemoteAgentAuthentication Modifier and Type Class Description class
ImmutableRemoteAgentAuthentication
Immutable business object representing remote agent authentication request.class
RemoteAgentAuthenticationImpl
Default implementation ofRemoteAgentAuthenticationEntity
.Methods in com.atlassian.bamboo.buildqueue that return types with arguments of type RemoteAgentAuthentication Modifier and Type Method Description static com.google.common.base.Function<RemoteAgentAuthentication,String>
RemoteAgentAuthentications. getUuidAsString()
static com.google.common.base.Predicate<RemoteAgentAuthentication>
RemoteAgentAuthentications. isApproved()
static com.google.common.base.Predicate<RemoteAgentAuthentication>
RemoteAgentAuthentications. isPending()
static com.google.common.base.Predicate<RemoteAgentAuthentication>
RemoteAgentAuthentications. matching(@NotNull String requestIps)
Predicate checking if given authentication matches the ip.static com.google.common.base.Predicate<RemoteAgentAuthentication>
RemoteAgentAuthentications. matching(@NotNull UUID uuid)
Predicate checking if an authentication matches given uuid.static com.google.common.base.Predicate<RemoteAgentAuthentication>
RemoteAgentAuthentications. matching(@NotNull UUID uuid, @NotNull String ip)
static com.google.common.base.Predicate<RemoteAgentAuthentication>
RemoteAgentAuthentications. matchingUuidOf(@NotNull Iterable<RemoteAgentAuthentication> authentications)
static com.google.common.base.Function<RemoteAgentAuthentication,RemoteAgentAuthenticationEntity>
RemoteAgentAuthentications. toEntity(RemoteAgentAuthenticationDao agentAuthenticationDao)
Methods in com.atlassian.bamboo.buildqueue with parameters of type RemoteAgentAuthentication Modifier and Type Method Description int
ImmutableRemoteAgentAuthentication. compareTo(RemoteAgentAuthentication other)
Method parameters in com.atlassian.bamboo.buildqueue with type arguments of type RemoteAgentAuthentication Modifier and Type Method Description static com.google.common.base.Predicate<RemoteAgentAuthentication>
RemoteAgentAuthentications. matchingUuidOf(@NotNull Iterable<RemoteAgentAuthentication> authentications)
-
Uses of RemoteAgentAuthentication in com.atlassian.bamboo.buildqueue.manager
Methods in com.atlassian.bamboo.buildqueue.manager that return RemoteAgentAuthentication Modifier and Type Method Description @Nullable RemoteAgentAuthentication
RemoteAgentAuthenticationManager. getAuthentication(UUID uuid)
Get first remote agent authentication matching the IP and UUID.@Nullable RemoteAgentAuthentication
RemoteAgentAuthenticationManager. getAuthentication(UUID uuid, String ip)
Get remote agent authentication matching the IP and UUID.RemoteAgentAuthentication
RemoteAgentAuthenticationManagerImpl. getAuthentication(UUID uuid)
@Nullable RemoteAgentAuthentication
RemoteAgentAuthenticationManagerImpl. getAuthentication(UUID uuid, String ip)
Methods in com.atlassian.bamboo.buildqueue.manager that return types with arguments of type RemoteAgentAuthentication Modifier and Type Method Description @NotNull Iterable<RemoteAgentAuthentication>
RemoteAgentAuthenticationManager. getAllAuthentications()
Get all agent authentications known to this Bamboo server.@NotNull Iterable<RemoteAgentAuthentication>
RemoteAgentAuthenticationManagerImpl. getAllAuthentications()
@NotNull Iterable<RemoteAgentAuthentication>
RemoteAgentAuthenticationManager. getAuthentications(com.google.common.base.Predicate<RemoteAgentAuthentication> filter)
Get authentication filtered by given filter.@NotNull Iterable<RemoteAgentAuthentication>
RemoteAgentAuthenticationManagerImpl. getAuthentications(com.google.common.base.Predicate<RemoteAgentAuthentication> filter)
@NotNull org.apache.commons.lang3.tuple.Pair<RemoteAgentAuthentication,Boolean>
RemoteAgentAuthenticationManager. getOrCreatePendingAuthentication(@NotNull UUID uuid, @NotNull String ip, @Nullable Long agentId, boolean agentIdValidationEnabled)
Create a new pending authentication for given IP address and UUID.@NotNull org.apache.commons.lang3.tuple.Pair<RemoteAgentAuthentication,Boolean>
RemoteAgentAuthenticationManagerImpl. getOrCreatePendingAuthentication(@NotNull UUID uuid, @NotNull String ip, @Nullable Long agentId, boolean strictAuthEnabled)
Method parameters in com.atlassian.bamboo.buildqueue.manager with type arguments of type RemoteAgentAuthentication Modifier and Type Method Description void
RemoteAgentAuthenticationManager. approveAuthentications(@NotNull Iterable<RemoteAgentAuthentication> authentications)
Approve all authentications from the list.void
RemoteAgentAuthenticationManagerImpl. approveAuthentications(@NotNull Iterable<RemoteAgentAuthentication> authentications)
@NotNull Iterable<RemoteAgentAuthentication>
RemoteAgentAuthenticationManager. getAuthentications(com.google.common.base.Predicate<RemoteAgentAuthentication> filter)
Get authentication filtered by given filter.@NotNull Iterable<RemoteAgentAuthentication>
RemoteAgentAuthenticationManagerImpl. getAuthentications(com.google.common.base.Predicate<RemoteAgentAuthentication> filter)
void
RemoteAgentAuthenticationManager. revokeAgentAuthentications(@NotNull Iterable<RemoteAgentAuthentication> authentications)
Revoke approval for given agent authentications.void
RemoteAgentAuthenticationManagerImpl. revokeAgentAuthentications(@NotNull Iterable<RemoteAgentAuthentication> authentications)
-
Uses of RemoteAgentAuthentication in com.atlassian.bamboo.configuration.agent
Methods in com.atlassian.bamboo.configuration.agent that return RemoteAgentAuthentication Modifier and Type Method Description protected RemoteAgentAuthentication
AbstractRemoteAgentAuthenticationAction. findAuthentication(UUID uuid)
protected RemoteAgentAuthentication
ConfigureRemoteAgentAuthentications. findAuthentication(UUID uuid)
protected RemoteAgentAuthentication
AbstractRemoteAgentAuthenticationAction. findByUuid(String uuid)
Methods in com.atlassian.bamboo.configuration.agent that return types with arguments of type RemoteAgentAuthentication Modifier and Type Method Description Iterable<RemoteAgentAuthentication>
ViewRemoteAgentAuthentications. getAllAuthentications()
-