public class CreateComputerResult
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Contains the results for the CreateComputer operation.
Modifier and Type | Field and Description |
---|---|
private Computer |
computer
A Computer object that represents the computer account.
|
Constructor and Description |
---|
CreateComputerResult() |
Modifier and Type | Method and Description |
---|---|
CreateComputerResult |
clone() |
boolean |
equals(java.lang.Object obj) |
Computer |
getComputer()
A Computer object that represents the computer account.
|
int |
hashCode() |
void |
setComputer(Computer computer)
A Computer object that represents the computer account.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
CreateComputerResult |
withComputer(Computer computer)
A Computer object that represents the computer account.
|
public void setComputer(Computer computer)
A Computer object that represents the computer account.
computer
- A Computer object that represents the computer account.public Computer getComputer()
A Computer object that represents the computer account.
public CreateComputerResult withComputer(Computer computer)
A Computer object that represents the computer account.
computer
- A Computer object that represents the computer account.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 CreateComputerResult clone()
clone
in class java.lang.Object