Package com.enonic.xp.dump
Class RepoDumpResult
- java.lang.Object
-
- com.enonic.xp.dump.RepoDumpResult
-
- All Implemented Interfaces:
Iterable<BranchDumpResult>
public class RepoDumpResult extends Object implements Iterable<BranchDumpResult>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
RepoDumpResult.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RepoDumpResult.Builder
create(RepoDumpResult source)
static RepoDumpResult.Builder
create(RepositoryId repositoryId)
BranchDumpResult
get(Branch branch)
List<BranchDumpResult>
getBranchResults()
RepositoryId
getRepositoryId()
Long
getVersions()
List<DumpError>
getVersionsErrors()
Iterator<BranchDumpResult>
iterator()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Method Detail
-
getBranchResults
public List<BranchDumpResult> getBranchResults()
-
getRepositoryId
public RepositoryId getRepositoryId()
-
getVersions
public Long getVersions()
-
get
public BranchDumpResult get(Branch branch)
-
iterator
public Iterator<BranchDumpResult> iterator()
- Specified by:
iterator
in interfaceIterable<BranchDumpResult>
-
create
public static RepoDumpResult.Builder create(RepositoryId repositoryId)
-
create
public static RepoDumpResult.Builder create(RepoDumpResult source)
-
-