com.atlassian.bamboo.buildqueue
Interface RemoteAgentAuthenticationEntity

All Superinterfaces:
BambooIdProvider, BambooObject, java.lang.Cloneable, java.lang.Comparable<RemoteAgentAuthenticationEntity>, RemoteAgentAuthentication
All Known Implementing Classes:
RemoteAgentAuthenticationImpl

public interface RemoteAgentAuthenticationEntity
extends RemoteAgentAuthentication, BambooObject, java.lang.Comparable<RemoteAgentAuthenticationEntity>, java.lang.Cloneable

Represents entity with authentication data of a remote agent.

Since:
3.4

Method Summary
 java.lang.String getUuidAsString()
          UUID converted to String
 void setApproved(boolean isApproved)
          Set whether this authentication has been approved.
 void setIp(java.lang.String ip)
          Set IP address of this authentication.
 void setUuid(java.util.UUID uuid)
          Set unique ID of this authentication
 void setUuidAsString(java.lang.String uuidAsString)
          Set value of UUID from String.
 
Methods inherited from interface com.atlassian.bamboo.buildqueue.RemoteAgentAuthentication
getIp, getIpPatterns, getUuid, isApproved
 
Methods inherited from interface com.atlassian.bamboo.core.BambooObject
setId
 
Methods inherited from interface com.atlassian.bamboo.core.BambooIdProvider
getId
 
Methods inherited from interface java.lang.Comparable
compareTo
 

Method Detail

setIp

void setIp(java.lang.String ip)
Set IP address of this authentication.

Parameters:
ip - IP address

setUuid

void setUuid(java.util.UUID uuid)
Set unique ID of this authentication

Parameters:
uuid - UUID

setApproved

void setApproved(boolean isApproved)
Set whether this authentication has been approved.

Parameters:
isApproved - true, if this authentication has been approved

getUuidAsString

@Nullable
java.lang.String getUuidAsString()
UUID converted to String

Returns:
null iff uuid is null or uuid.toString()

setUuidAsString

void setUuidAsString(@Nullable
                     java.lang.String uuidAsString)
Set value of UUID from String.

Parameters:
uuidAsString - string representation of uuid


Copyright © 2012 Atlassian. All Rights Reserved.