Class Commit
- java.lang.Object
-
- com.cdancy.bitbucket.rest.domain.commit.Commit
-
- All Implemented Interfaces:
ErrorsHolder
public abstract class Commit extends Object implements ErrorsHolder
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract Authorauthor()abstract longauthorTimestamp()abstract Authorcommitter()abstract longcommitterTimestamp()static Commitcreate(String id, String displayId, Author author, long authorTimestamp, Author committer, long committerTimestamp, String message, Map<String,com.google.gson.JsonElement> properties, List<Parents> parents, List<Error> errors)abstract StringdisplayId()abstract Stringid()abstract Stringmessage()abstract List<Parents>parents()abstract Map<String,com.google.gson.JsonElement>properties()-
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
-
id
public abstract String id()
-
displayId
public abstract String displayId()
-
author
@Nullable public abstract Author author()
-
authorTimestamp
public abstract long authorTimestamp()
-
committer
@Nullable public abstract Author committer()
-
committerTimestamp
public abstract long committerTimestamp()
-
message
@Nullable public abstract String message()
-
-