Uses of Interface
org.xiruss.snapcm.api.helpers.SnapshotMap

Packages that use SnapshotMap
org.xiruss.repository.api Defines the repository-level interfaces common to clients and servers. 
org.xiruss.repository.common Holds implementation classes usable by both clients and servers. 
org.xiruss.repository.server Implementation classes for the core server-side objects that make up a SnapCM repository. 
org.xiruss.snapcm.api Defines the SnapCM API as a set of interfaces and exception types. 
org.xiruss.snapcm.api.helpers Defines types that are not part of the core SnapCM data model but that make working with SnapCM objects more convenient. 
org.xiruss.xirussrepository.client This package provides client-side proxies that implement all the relevant Repository and XirussRepository APIs and manage all communication with the HTTP Xiruss Repository API (provided by the JettyXirussHttpApiRunner class. 
org.xiruss.xirussrepository.server.jetty.apiserver Implements the Xiruss HTTP API handler and repository-object-type specific Jetty Resources that manage the translation of specific Xiruss Repository objects into HTTP actions that result in XML API response messages (i.e., the data contents of a version or a list of resources or whatever. 
 

Uses of SnapshotMap in org.xiruss.repository.api
 

Fields in org.xiruss.repository.api declared as SnapshotMap
static SnapshotMap Repository.nullSnapshotMap
           
 

Methods in org.xiruss.repository.api that return SnapshotMap
 SnapshotMap Repository.getMutableSnapshots()
           
 SnapshotMap NullRepository.getMutableSnapshots()
           
 SnapshotMap Repository.getSnapShots()
           
 SnapshotMap NullRepository.getSnapShots()
           
 

Uses of SnapshotMap in org.xiruss.repository.common
 

Classes in org.xiruss.repository.common that implement SnapshotMap
 class SnapshotMapImpl
          Mapping of IDs to Snapshots
 

Constructors in org.xiruss.repository.common with parameters of type SnapshotMap
SnapshotMapImpl(SnapshotMap snapshotsById)
           
 

Uses of SnapshotMap in org.xiruss.repository.server
 

Fields in org.xiruss.repository.server declared as SnapshotMap
protected  SnapshotMap RepositoryBase.mutableSnapshots
           
(package private)  SnapshotMap BranchBase.snapshotsById
           
protected  SnapshotMap RepositoryBase.snapshotsById
           
 

Methods in org.xiruss.repository.server that return SnapshotMap
 SnapshotMap BranchBase.getMutableSnapshots()
           
 SnapshotMap RepositoryBase.getMutableSnapshots()
           
 SnapshotMap BranchBase.getSnapshots()
          Get a map of all the snapshots on the branch, indexed by ID.
 SnapshotMap RepositoryBase.getSnapShots()
           
 SnapshotMap BranchBase.getSnapshots(long startIndex, long count)
          Get a map of all the snapshots on the branch, indexed by ID.
 

Uses of SnapshotMap in org.xiruss.snapcm.api
 

Methods in org.xiruss.snapcm.api that return SnapshotMap
 SnapshotMap Branch.getMutableSnapshots()
          Returns a map of the mutable snapshots on the branch.
 SnapshotMap NullBranch.getMutableSnapshots()
           
 SnapshotMap Branch.getSnapshots()
          Get a map of all the immutable snapshots on the branch, indexed by ID.
 SnapshotMap NullBranch.getSnapshots()
           
 SnapshotMap Branch.getSnapshots(long startIndex, long count)
          Get a map of all the immutable snapshots on the branch, indexed by ID.
 SnapshotMap NullBranch.getSnapshots(long startIndex, long count)
           
 

Uses of SnapshotMap in org.xiruss.snapcm.api.helpers
 

Classes in org.xiruss.snapcm.api.helpers that implement SnapshotMap
 class NullSnapshotMap
           
 

Uses of SnapshotMap in org.xiruss.xirussrepository.client
 

Methods in org.xiruss.xirussrepository.client that return SnapshotMap
protected  SnapshotMap XirussRepositoryProxy.constructSnapshotMap(PathString path, java.lang.reflect.Method getMethod)
           
 SnapshotMap XirussRepositoryProxy.getMutableSnapshots()
           
 SnapshotMap BranchProxy.getMutableSnapshots()
           
 SnapshotMap BranchProxy.getSnapshots()
           
 SnapshotMap XirussRepositoryProxy.getSnapShots()
           
 SnapshotMap BranchProxy.getSnapshots(long startIndex, long count)
           
 

Uses of SnapshotMap in org.xiruss.xirussrepository.server.jetty.apiserver
 

Methods in org.xiruss.xirussrepository.server.jetty.apiserver with parameters of type SnapshotMap
static XmlStringBuffer SnapshotListResource.constructSnapshotListResult(SnapshotMap snapShots, long startIndex, long count)
           
 

Constructors in org.xiruss.xirussrepository.server.jetty.apiserver with parameters of type SnapshotMap
SnapshotListResource(Repository rep, org.mortbay.http.HttpRequest request, SnapshotMap map, long startIndex, long count)