Class Task
- java.lang.Object
-
- com.cdancy.bitbucket.rest.domain.comment.Task
-
- All Implemented Interfaces:
ErrorsHolder
public abstract class Task extends Object implements ErrorsHolder
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract TaskAnchoranchor()abstract Authorauthor()static Taskcreate(TaskAnchor anchor, Author author, long createdDate, int id, String text, String state, PermittedOperations permittedOperations, List<Error> errors)abstract longcreatedDate()abstract intid()abstract PermittedOperationspermittedOperations()abstract Stringstate()abstract Stringtext()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.cdancy.bitbucket.rest.domain.common.ErrorsHolder
errors
-
-
-
-
Method Detail
-
anchor
@Nullable public abstract TaskAnchor anchor()
-
author
@Nullable public abstract Author author()
-
createdDate
public abstract long createdDate()
-
id
public abstract int id()
-
text
@Nullable public abstract String text()
-
state
@Nullable public abstract String state()
-
permittedOperations
@Nullable public abstract PermittedOperations permittedOperations()
-
create
public static Task create(TaskAnchor anchor, Author author, long createdDate, int id, String text, String state, PermittedOperations permittedOperations, List<Error> errors)
-
-