Package com.oracle.bmc.identity.model
Class SwiftPassword.Builder
- java.lang.Object
-
- com.oracle.bmc.identity.model.SwiftPassword.Builder
-
- Enclosing class:
- SwiftPassword
public static class SwiftPassword.Builder extends Object
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SwiftPassword
build()
SwiftPassword.Builder
copy(SwiftPassword model)
SwiftPassword.Builder
description(String description)
The description you assign to the Swift password.SwiftPassword.Builder
expiresOn(Date expiresOn)
Date and time when this password will expire, in the format defined by RFC3339.SwiftPassword.Builder
id(String id)
The OCID of the Swift password.SwiftPassword.Builder
inactiveStatus(Long inactiveStatus)
The detailed status of INACTIVE lifecycleState.SwiftPassword.Builder
lifecycleState(SwiftPassword.LifecycleState lifecycleState)
The password’s current state.SwiftPassword.Builder
password(String password)
The Swift password.SwiftPassword.Builder
timeCreated(Date timeCreated)
Date and time the SwiftPassword object was created, in the format defined by RFC3339.SwiftPassword.Builder
userId(String userId)
The OCID of the user the password belongs to.
-
-
-
Method Detail
-
password
public SwiftPassword.Builder password(String password)
The Swift password.The value is available only in the response for CreateSwiftPassword, and not for ListSwiftPasswords or UpdateSwiftPassword.
- Parameters:
password
- the value to set- Returns:
- this builder
-
id
public SwiftPassword.Builder id(String id)
The OCID of the Swift password.- Parameters:
id
- the value to set- Returns:
- this builder
-
userId
public SwiftPassword.Builder userId(String userId)
The OCID of the user the password belongs to.- Parameters:
userId
- the value to set- Returns:
- this builder
-
description
public SwiftPassword.Builder description(String description)
The description you assign to the Swift password.Does not have to be unique, and it’s changeable.
- Parameters:
description
- the value to set- Returns:
- this builder
-
timeCreated
public SwiftPassword.Builder timeCreated(Date timeCreated)
Date and time the SwiftPassword object was created, in the format defined by RFC3339.Example: 2016-08-25T21:10:29.600Z
- Parameters:
timeCreated
- the value to set- Returns:
- this builder
-
expiresOn
public SwiftPassword.Builder expiresOn(Date expiresOn)
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
- Parameters:
expiresOn
- the value to set- Returns:
- this builder
-
lifecycleState
public SwiftPassword.Builder lifecycleState(SwiftPassword.LifecycleState lifecycleState)
The password’s current state.After creating a password, make sure its lifecycleState changes from CREATING to ACTIVE before using it.
- Parameters:
lifecycleState
- the value to set- Returns:
- this builder
-
inactiveStatus
public SwiftPassword.Builder inactiveStatus(Long inactiveStatus)
The detailed status of INACTIVE lifecycleState.- Parameters:
inactiveStatus
- the value to set- Returns:
- this builder
-
build
public SwiftPassword build()
-
copy
public SwiftPassword.Builder copy(SwiftPassword model)
-
-