Package com.aspose.tasks
Class ProjectInfo
- java.lang.Object
-
- com.aspose.tasks.ProjectInfo
-
public final class ProjectInfo extends Object
Brief info about the published project available on Project Online.
-
-
Constructor Summary
Constructors Constructor Description ProjectInfo()
Initializes a new instance of theProjectInfo
class.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Date
getCreatedDate()
Gets the date and time when the project was created.String
getDescription()
Gets the description of the project.UUID
getId()
Gets the unique identifier of the project.Date
getLastPublishedDate()
Gets the most recent date when the project was published.Date
getLastSavedDate()
Gets the most recent date when the project was saved.String
getName()
Gets the name of the project.boolean
isCheckedOut()
Gets a value indicating whether the project is checked out.
-
-
-
Constructor Detail
-
ProjectInfo
public ProjectInfo()
Initializes a new instance of the
ProjectInfo
class.
-
-
Method Detail
-
getCreatedDate
public final Date getCreatedDate()
Gets the date and time when the project was created.
- Returns:
- the date and time when the project was created.
-
getDescription
public final String getDescription()
Gets the description of the project.
- Returns:
- the description of the project.
-
getId
public final UUID getId()
Gets the unique identifier of the project.
- Returns:
- the unique identifier of the project.
-
getLastPublishedDate
public final Date getLastPublishedDate()
Gets the most recent date when the project was published.
- Returns:
- the most recent date when the project was published.
-
getLastSavedDate
public final Date getLastSavedDate()
Gets the most recent date when the project was saved.
- Returns:
- the most recent date when the project was saved.
-
getName
public final String getName()
Gets the name of the project.
- Returns:
- the name of the project.
-
isCheckedOut
public final boolean isCheckedOut()
Gets a value indicating whether the project is checked out.
- Returns:
- a value indicating whether the project is checked out.
-
-