Class BranchModel
- java.lang.Object
-
- com.cdancy.bitbucket.rest.domain.branch.BranchModel
-
- All Implemented Interfaces:
ErrorsHolder
public abstract class BranchModel extends java.lang.Object implements ErrorsHolder
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static BranchModelcreate(Branch development, Branch production, java.util.List<Type> types, java.util.List<Error> errors)abstract Branchdevelopment()abstract Branchproduction()abstract java.util.List<Type>types()-
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
-
development
@Nullable public abstract Branch development()
-
production
@Nullable public abstract Branch production()
-
types
public abstract java.util.List<Type> types()
-
create
public static BranchModel create(Branch development, Branch production, java.util.List<Type> types, java.util.List<Error> errors)
-
-