public class GetPasswordDataResult
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Contains the output of GetPasswordData.
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
instanceId
The ID of the Windows instance.
|
private java.lang.String |
passwordData
The password of the instance.
|
private java.util.Date |
timestamp
The time the data was last updated.
|
Constructor and Description |
---|
GetPasswordDataResult() |
Modifier and Type | Method and Description |
---|---|
GetPasswordDataResult |
clone() |
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getInstanceId()
The ID of the Windows instance.
|
java.lang.String |
getPasswordData()
The password of the instance.
|
java.util.Date |
getTimestamp()
The time the data was last updated.
|
int |
hashCode() |
void |
setInstanceId(java.lang.String instanceId)
The ID of the Windows instance.
|
void |
setPasswordData(java.lang.String passwordData)
The password of the instance.
|
void |
setTimestamp(java.util.Date timestamp)
The time the data was last updated.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
GetPasswordDataResult |
withInstanceId(java.lang.String instanceId)
The ID of the Windows instance.
|
GetPasswordDataResult |
withPasswordData(java.lang.String passwordData)
The password of the instance.
|
GetPasswordDataResult |
withTimestamp(java.util.Date timestamp)
The time the data was last updated.
|
private java.lang.String instanceId
The ID of the Windows instance.
private java.util.Date timestamp
The time the data was last updated.
private java.lang.String passwordData
The password of the instance.
public void setInstanceId(java.lang.String instanceId)
The ID of the Windows instance.
instanceId
- The ID of the Windows instance.public java.lang.String getInstanceId()
The ID of the Windows instance.
public GetPasswordDataResult withInstanceId(java.lang.String instanceId)
The ID of the Windows instance.
instanceId
- The ID of the Windows instance.public void setTimestamp(java.util.Date timestamp)
The time the data was last updated.
timestamp
- The time the data was last updated.public java.util.Date getTimestamp()
The time the data was last updated.
public GetPasswordDataResult withTimestamp(java.util.Date timestamp)
The time the data was last updated.
timestamp
- The time the data was last updated.public void setPasswordData(java.lang.String passwordData)
The password of the instance.
passwordData
- The password of the instance.public java.lang.String getPasswordData()
The password of the instance.
public GetPasswordDataResult withPasswordData(java.lang.String passwordData)
The password of the instance.
passwordData
- The password of the instance.public java.lang.String toString()
toString
in class java.lang.Object
Object.toString()
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public GetPasswordDataResult clone()
clone
in class java.lang.Object