Uses of Class
org.apache.jackrabbit.mk.model.Id

Packages that use Id
org.apache.jackrabbit.mk.core   
org.apache.jackrabbit.mk.model   
org.apache.jackrabbit.mk.model.tree   
org.apache.jackrabbit.mk.persistence   
org.apache.jackrabbit.mk.store   
 

Uses of Id in org.apache.jackrabbit.mk.core
 

Methods in org.apache.jackrabbit.mk.core that return Id
 Id Repository.getHeadRevision()
           
 

Methods in org.apache.jackrabbit.mk.core with parameters of type Id
 StoredCommit Repository.getCommit(Id id)
           
 CommitBuilder Repository.getCommitBuilder(Id revId, String msg)
           
 NodeState Repository.getNodeState(Id revId, String path)
           
 boolean Repository.nodeExists(Id revId, String path)
           
 

Uses of Id in org.apache.jackrabbit.mk.model
 

Fields in org.apache.jackrabbit.mk.model declared as Id
protected  Id AbstractCommit.branchRootId
           
protected  Id AbstractCommit.parentId
           
protected  Id AbstractCommit.rootNodeId
           
 

Methods in org.apache.jackrabbit.mk.model that return Id
 Id CommitBuilder.doCommit()
           
 Id CommitBuilder.doCommit(boolean createBranch)
           
 Id CommitBuilder.doMerge()
           
static Id Id.fromLong(long value)
          Creates an Id instance from a long.
static Id Id.fromString(String s)
          Creates an Id instance from its string representation as returned by toString().
 Id AbstractCommit.getBranchRootId()
           
 Id Commit.getBranchRootId()
          Returns null if this commit does not represent a branch.
 Id ChildNodeEntry.getId()
           
 Id ChildNodeEntriesTree.BucketInfo.getId()
           
 Id MutableCommit.getId()
          Return the commit id.
 Id StoredCommit.getId()
           
 Id StoredNode.getId()
           
 Id AbstractCommit.getParentId()
           
 Id Commit.getParentId()
           
 Id AbstractCommit.getRootNodeId()
           
 Id Commit.getRootNodeId()
           
 Id StagedNodeTree.merge(StoredNode ourRoot, Id newBaseRevisionId, Id commonAncestorRevisionId, RevisionStore.PutToken token)
          Performs a three-way merge merging our tree (rooted at ourRoot) and their tree (identified by newBaseRevisionId), using the common ancestor revision commonAncestorRevisionId as base reference.
 Id StagedNodeTree.persist(RevisionStore.PutToken token)
          Persists the staged nodes and returns the Id of the new root node.
 

Methods in org.apache.jackrabbit.mk.model with parameters of type Id
 void NodeDiffHandler.childNodeChanged(ChildNodeEntry changed, Id newId)
           
 int Id.compareTo(Id o)
           
static StoredCommit StoredCommit.deserialize(Id id, Binding binding)
           
 Id StagedNodeTree.merge(StoredNode ourRoot, Id newBaseRevisionId, Id commonAncestorRevisionId, RevisionStore.PutToken token)
          Performs a three-way merge merging our tree (rooted at ourRoot) and their tree (identified by newBaseRevisionId), using the common ancestor revision commonAncestorRevisionId as base reference.
 void StagedNodeTree.reset(Id newBaseRevisionId)
          Discards all staged changes and resets the base revision to the specified new revision id.
protected  ChildNodeEntriesMap ChildNodeEntriesTree.retrieveBucket(Id id)
           
 void MutableCommit.setBranchRootId(Id branchRootId)
           
 void MutableCommit.setParentId(Id parentId)
           
 void MutableCommit.setRootNodeId(Id rootNodeId)
           
 

Constructors in org.apache.jackrabbit.mk.model with parameters of type Id
ChildNodeEntriesTree.BucketInfo(Id id, int size)
           
ChildNodeEntriesTree.NodeInfo(String name, Id id)
           
ChildNodeEntry(String name, Id id)
           
CommitBuilder(Id baseRevId, String msg, RevisionStore store)
           
StagedNodeTree(RevisionStore store, Id baseRevisionId)
          Creates a new StagedNodeTree instance.
StoredCommit(Id id, Commit commit)
           
StoredCommit(Id id, Id parentId, long commitTS, Id rootNodeId, String msg, String changes, Id branchRootId)
           
StoredNode(Id id, Node node, RevisionProvider provider)
           
StoredNode(Id id, RevisionProvider provider)
           
 

Uses of Id in org.apache.jackrabbit.mk.model.tree
 

Methods in org.apache.jackrabbit.mk.model.tree that return types with arguments of type Id
 Map<String,Id> NodeDelta.getAddedChildNodes()
           
 Map<String,Id> NodeDelta.getChangedChildNodes()
           
 Map<String,Id> NodeDelta.getRemovedChildNodes()
           
 

Uses of Id in org.apache.jackrabbit.mk.persistence
 

Methods in org.apache.jackrabbit.mk.persistence that return Id
 Id[] Persistence.readIds()
          Return an array of ids, where the first is the head id (as stored with Persistence.writeHead(Id)) and the second is the highest commit id found or null.
 Id[] H2Persistence.readIds()
           
 Id[] InMemPersistence.readIds()
           
 Id Persistence.writeCNEMap(ChildNodeEntries map)
           
 Id H2Persistence.writeCNEMap(ChildNodeEntries map)
           
 Id InMemPersistence.writeCNEMap(ChildNodeEntries map)
           
 Id Persistence.writeNode(Node node)
           
 Id H2Persistence.writeNode(Node node)
           
 Id InMemPersistence.writeNode(Node node)
           
 

Methods in org.apache.jackrabbit.mk.persistence with parameters of type Id
 boolean H2Persistence.markCNEMap(Id id)
           
 boolean InMemPersistence.markCNEMap(Id id)
           
 boolean GCPersistence.markCNEMap(Id id)
          Mark a child node entry map.
 boolean H2Persistence.markCommit(Id id)
           
 boolean InMemPersistence.markCommit(Id id)
           
 boolean GCPersistence.markCommit(Id id)
          Mark a commit.
 boolean H2Persistence.markNode(Id id)
           
 boolean InMemPersistence.markNode(Id id)
           
 boolean GCPersistence.markNode(Id id)
          Mark a node.
 ChildNodeEntriesMap Persistence.readCNEMap(Id id)
           
 ChildNodeEntriesMap H2Persistence.readCNEMap(Id id)
           
 ChildNodeEntriesMap InMemPersistence.readCNEMap(Id id)
           
 StoredCommit Persistence.readCommit(Id id)
           
 StoredCommit H2Persistence.readCommit(Id id)
           
 StoredCommit InMemPersistence.readCommit(Id id)
           
 void H2Persistence.replaceCommit(Id id, Commit commit)
           
 void InMemPersistence.replaceCommit(Id id, Commit commit)
           
 void GCPersistence.replaceCommit(Id id, Commit commit)
          Replace a commit.
 void Persistence.writeCommit(Id id, Commit commit)
          Persist a commit with an id provided by the caller.
 void H2Persistence.writeCommit(Id id, Commit commit)
           
 void InMemPersistence.writeCommit(Id id, Commit commit)
           
 void Persistence.writeHead(Id id)
           
 void H2Persistence.writeHead(Id id)
           
 void InMemPersistence.writeHead(Id id)
           
 

Uses of Id in org.apache.jackrabbit.mk.store
 

Methods in org.apache.jackrabbit.mk.store that return Id
 Id DefaultRevisionStore.getHeadCommitId()
           
 Id RevisionProvider.getHeadCommitId()
           
 Id RevisionProvider.getId(NodeState node)
          Adapts the given NodeState to the corresponding identifier.
protected  Id DefaultRevisionStore.markCommits()
          Mark all commits and nodes in a garbage collection cycle.
 Id DefaultRevisionStore.putCNEMap(RevisionStore.PutToken token, ChildNodeEntries map)
           
 Id RevisionStore.putCNEMap(RevisionStore.PutToken token, ChildNodeEntries map)
           
 Id DefaultRevisionStore.putCommit(RevisionStore.PutToken token, MutableCommit commit)
           
 Id RevisionStore.putCommit(RevisionStore.PutToken token, MutableCommit commit)
          Store a new commit.
 Id DefaultRevisionStore.putHeadCommit(RevisionStore.PutToken token, MutableCommit commit, Id branchRootId, Id branchRevId)
           
 Id RevisionStore.putHeadCommit(RevisionStore.PutToken token, MutableCommit commit, Id branchRootId, Id branchRevId)
          Put a new head commit.
 Id DefaultRevisionStore.putNode(RevisionStore.PutToken token, MutableNode node)
           
 Id RevisionStore.putNode(RevisionStore.PutToken token, MutableNode node)
           
 

Methods in org.apache.jackrabbit.mk.store with parameters of type Id
 ChildNodeEntriesMap DefaultRevisionStore.getCNEMap(Id id)
           
 ChildNodeEntriesMap RevisionProvider.getCNEMap(Id id)
           
 StoredCommit DefaultRevisionStore.getCommit(Id id)
           
 StoredCommit RevisionProvider.getCommit(Id id)
           
 StoredNode DefaultRevisionStore.getNode(Id id)
           
 StoredNode RevisionProvider.getNode(Id id)
           
 StoredNode DefaultRevisionStore.getRootNode(Id commitId)
           
 StoredNode RevisionProvider.getRootNode(Id commitId)
           
 Id DefaultRevisionStore.putHeadCommit(RevisionStore.PutToken token, MutableCommit commit, Id branchRootId, Id branchRevId)
           
 Id RevisionStore.putHeadCommit(RevisionStore.PutToken token, MutableCommit commit, Id branchRootId, Id branchRevId)
          Put a new head commit.
 



Copyright © 2012 The Apache Software Foundation. All Rights Reserved.