Uses of Interface
org.openengsb.domain.scm.CommitRef

Uses of CommitRef in org.openengsb.domain.scm
 

Subinterfaces of CommitRef in org.openengsb.domain.scm
 interface TagRef
          An abstraction for tag reference (tag-ref) to a tag id in SCM.
 

Methods in org.openengsb.domain.scm that return CommitRef
 CommitRef ScmDomain.add(String comment, File... file)
          Adds one or more File existing in the working directory to the repository and commits them with the passed comment.
 CommitRef ScmDomain.getCommitRefForTag(TagRef ref)
          Resolves and returns the CommitRef for a TagRef or null if the reference does not exist.
 CommitRef ScmDomain.getHead()
          Returns the CommitRef of the current HEAD in the repository or null.
 CommitRef ScmDomain.remove(String comment, File... file)
          Removes one or more File from the working directory of the repository and commits them with a passed comment.
 

Methods in org.openengsb.domain.scm that return types with arguments of type CommitRef
 List<CommitRef> ScmDomain.update()
          Looks up changes in a remote repository and updates the local repository or checks out a new local repository and returns a list of CommitRef with the revisions produced since the last update or null.
 

Methods in org.openengsb.domain.scm with parameters of type CommitRef
 boolean ScmDomain.exists(String fileName, CommitRef version)
          Check if file identified by its fileName exists in a revision identified by the CommitRef and returns true if it does.
 File ScmDomain.export(CommitRef ref)
          Exports the files and directories of a revision identified by the CommitRef from a repository without the SCM specific data in a compressed format.
 File ScmDomain.get(String fileName, CommitRef ref)
          Retrieves a single File from a repository identified by its fileName if it exists in the revision identified by the CommitRef.
 TagRef ScmDomain.tagRepo(String tagName, CommitRef ref)
          Tags the commit of the repository identified by the CommitRef with the passed tagName and returns the corresponding TagRef or null.
 



Copyright © 2009-2011. All Rights Reserved.