public class CreateProjectResult
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Represents the result of a create project request.
Modifier and Type | Field and Description |
---|---|
private Project |
project
The newly created project.
|
Constructor and Description |
---|
CreateProjectResult() |
Modifier and Type | Method and Description |
---|---|
CreateProjectResult |
clone() |
boolean |
equals(java.lang.Object obj) |
Project |
getProject()
The newly created project.
|
int |
hashCode() |
void |
setProject(Project project)
The newly created project.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
CreateProjectResult |
withProject(Project project)
The newly created project.
|
private Project project
The newly created project.
public void setProject(Project project)
The newly created project.
project
- The newly created project.public Project getProject()
The newly created project.
public CreateProjectResult withProject(Project project)
The newly created project.
project
- The newly created project.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 CreateProjectResult clone()
clone
in class java.lang.Object