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 Projectclone()booleanequals(Object obj)StringgetArn()The project's ARN.DategetCreated()When the project was created.StringgetName()The project's name.inthashCode()voidsetArn(String arn)The project's ARN.voidsetCreated(Date created)When the project was created.voidsetName(String name)The project's name.StringtoString()Returns a string representation of this object; useful for testing and debugging.ProjectwithArn(String arn)The project's ARN.ProjectwithCreated(Date created)When the project was created.ProjectwithName(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:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
-