Class Project
- java.lang.Object
-
- com.amazonaws.services.devicefarm.model.Project
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class Project extends Object implements Serializable, Cloneable
Represents an operating-system neutral workspace for running and managing tests.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Project()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Project
clone()
boolean
equals(Object obj)
String
getArn()
The project's ARN.Date
getCreated()
When the project was created.String
getName()
The project's name.int
hashCode()
void
setArn(String arn)
The project's ARN.void
setCreated(Date created)
When the project was created.void
setName(String name)
The project's name.String
toString()
Returns a string representation of this object; useful for testing and debugging.Project
withArn(String arn)
The project's ARN.Project
withCreated(Date created)
When the project was created.Project
withName(String name)
The project's name.
-
-
-
Method Detail
-
setArn
public void setArn(String arn)
The project's ARN.
- Parameters:
arn
- The project's ARN.
-
getArn
public String getArn()
The project's ARN.
- Returns:
- The project's ARN.
-
withArn
public Project withArn(String arn)
The project's ARN.
- Parameters:
arn
- The project's ARN.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setName
public void setName(String name)
The project's name.
- Parameters:
name
- The project's name.
-
getName
public String getName()
The project's name.
- Returns:
- The project's name.
-
withName
public Project withName(String name)
The project's name.
- Parameters:
name
- The project's name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setCreated
public void setCreated(Date created)
When the project was created.
- Parameters:
created
- When the project was created.
-
getCreated
public Date getCreated()
When the project was created.
- Returns:
- When the project was created.
-
withCreated
public Project withCreated(Date created)
When the project was created.
- Parameters:
created
- When the project was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
-