Class Repository
- java.lang.Object
-
- com.cdancy.bitbucket.rest.domain.repository.Repository
-
- All Implemented Interfaces:
ErrorsHolder,LinksHolder
public abstract class Repository extends Object implements ErrorsHolder, LinksHolder
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract boolean_public()static Repositorycreate(String slug, int id, String name, String description, String scmId, String state, String statusMessage, boolean forkable, Repository origin, Project project, boolean _public, Links links, List<Error> errors)abstract Stringdescription()abstract booleanforkable()abstract intid()abstract Stringname()abstract Repositoryorigin()abstract Projectproject()abstract StringscmId()abstract Stringslug()abstract Stringstate()abstract StringstatusMessage()-
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
-
Methods inherited from interface com.cdancy.bitbucket.rest.domain.common.LinksHolder
links
-
-
-
-
Method Detail
-
slug
@Nullable public abstract String slug()
-
id
public abstract int id()
-
name
@Nullable public abstract String name()
-
description
@Nullable public abstract String description()
-
scmId
@Nullable public abstract String scmId()
-
state
@Nullable public abstract String state()
-
statusMessage
@Nullable public abstract String statusMessage()
-
forkable
public abstract boolean forkable()
-
origin
@Nullable public abstract Repository origin()
-
project
@Nullable public abstract Project project()
-
_public
public abstract boolean _public()
-
-