Package org.jclouds.dynect.v3.domain
Class SessionCredentials
- java.lang.Object
-
- org.jclouds.domain.Credentials
-
- org.jclouds.dynect.v3.domain.SessionCredentials
-
public final class SessionCredentials extends Credentials
Session credentials for API authentication.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
SessionCredentials.Builder
-
Field Summary
-
Fields inherited from class org.jclouds.domain.Credentials
credential, identity
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SessionCredentials.Builder
builder()
boolean
equals(Object obj)
String
getCustomerName()
The security token that users must pass to the service API to use the temporary credentials.String
getPassword()
The Secret Access Key to sign requests.String
getUserName()
UserName ID that identifies the temporary credentials.int
hashCode()
SessionCredentials.Builder
toBuilder()
String
toString()
-
-
-
Method Detail
-
builder
public static SessionCredentials.Builder builder()
-
toBuilder
public SessionCredentials.Builder toBuilder()
- Overrides:
toBuilder
in classCredentials
-
getUserName
public String getUserName()
UserName ID that identifies the temporary credentials.
-
getPassword
public String getPassword()
The Secret Access Key to sign requests.
-
getCustomerName
public String getCustomerName()
The security token that users must pass to the service API to use the temporary credentials.
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classCredentials
-
equals
public boolean equals(Object obj)
- Overrides:
equals
in classCredentials
-
toString
public String toString()
- Overrides:
toString
in classCredentials
-
-