@Generated(value="OracleSDKGenerator", comments="API Version: 20160918") public final class SwiftPassword extends Object
Deprecated. Use AuthToken
instead.
Swift is the OpenStack object storage service. A SwiftPassword
is an Oracle-provided password for using a
Swift client with the Object Storage Service. This password is associated with
the user's Console login. Swift passwords never expire. A user can have up to two Swift passwords at a time.
Note:** The password is always an Oracle-generated string; you can't change it to a string of your choice.
For more information, see [Managing User Credentials](https://docs.cloud.oracle.com/Content/Identity/Tasks/managingcredentials.htm).
Note: Objects should always be created or deserialized using the SwiftPassword.Builder
. This model distinguishes fields
that are null
because they are unset from fields that are explicitly set to null
. This is done in
the setter methods of the SwiftPassword.Builder
, which maintain a set of all explicitly set fields called
__explicitlySet__
. The hashCode()
and equals(Object)
methods are implemented to take
__explicitlySet__
into account. The constructor, on the other hand, does not set __explicitlySet__
(since the constructor cannot distinguish explicit null
from unset null
).
Modifier and Type | Class and Description |
---|---|
static class |
SwiftPassword.Builder |
static class |
SwiftPassword.LifecycleState
The password’s current state.
|
Constructor and Description |
---|
SwiftPassword(String password,
String id,
String userId,
String description,
Date timeCreated,
Date expiresOn,
SwiftPassword.LifecycleState lifecycleState,
Long inactiveStatus)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static SwiftPassword.Builder |
builder()
Create a new builder.
|
boolean |
equals(Object o) |
Set<String> |
get__explicitlySet__() |
String |
getDescription()
The description you assign to the Swift password.
|
Date |
getExpiresOn()
Date and time when this password will expire, in the format defined by RFC3339.
|
String |
getId()
The OCID of the Swift password.
|
Long |
getInactiveStatus()
The detailed status of INACTIVE lifecycleState.
|
SwiftPassword.LifecycleState |
getLifecycleState()
The password’s current state.
|
String |
getPassword()
The Swift password.
|
Date |
getTimeCreated()
Date and time the
SwiftPassword object was created, in the format defined by RFC3339. |
String |
getUserId()
The OCID of the user the password belongs to.
|
int |
hashCode() |
SwiftPassword.Builder |
toBuilder() |
String |
toString() |
@Deprecated @ConstructorProperties(value={"password","id","userId","description","timeCreated","expiresOn","lifecycleState","inactiveStatus"}) public SwiftPassword(String password, String id, String userId, String description, Date timeCreated, Date expiresOn, SwiftPassword.LifecycleState lifecycleState, Long inactiveStatus)
public static SwiftPassword.Builder builder()
Create a new builder.
public SwiftPassword.Builder toBuilder()
public String getPassword()
The Swift password. The value is available only in the response for CreateSwiftPassword
, and not
for ListSwiftPasswords
or UpdateSwiftPassword
.
public String getId()
The OCID of the Swift password.
public String getUserId()
The OCID of the user the password belongs to.
public String getDescription()
The description you assign to the Swift password. Does not have to be unique, and it’s changeable.
public Date getTimeCreated()
Date and time the SwiftPassword
object was created, in the format defined by RFC3339.
Example: 2016-08-25T21:10:29.600Z
public Date getExpiresOn()
Date and time when this password will expire, in the format defined by RFC3339. Null if it never expires.
Example: 2016-08-25T21:10:29.600Z
public SwiftPassword.LifecycleState getLifecycleState()
The password’s current state. After creating a password, make sure its lifecycleState
changes from
CREATING to ACTIVE before using it.
public Long getInactiveStatus()
The detailed status of INACTIVE lifecycleState.
Copyright © 2016–2022. All rights reserved.