Class VcsRootXmlConverter.CheckedOutDir
- java.lang.Object
-
- jetbrains.buildServer.serverSide.versioning.converters.VcsRootXmlConverter.CheckedOutDir
-
- All Implemented Interfaces:
Comparable<VcsRootXmlConverter.CheckedOutDir>
- Enclosing class:
- VcsRootXmlConverter
public static class VcsRootXmlConverter.CheckedOutDir extends Object implements Comparable<VcsRootXmlConverter.CheckedOutDir>
Contains information about from what vcs root sources are checking out and where they are checking out to. Do not put this object as key to TreeMap because its equals does not correspond to compareTo method.
-
-
Constructor Summary
Constructors Constructor Description CheckedOutDir(VcsRootXmlConverter.VcsRoot root, IncludeRule rule)
Creates new object
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
compareTo(VcsRootXmlConverter.CheckedOutDir o)
boolean
equals(Object o)
VcsRootXmlConverter.VcsRoot
getRoot()
Sources location description.IncludeRule
getRule()
Include rule describes what part of the described repository should be checked out and where it should be checked out to.int
hashCode()
String
toString()
-
-
-
Constructor Detail
-
CheckedOutDir
public CheckedOutDir(VcsRootXmlConverter.VcsRoot root, IncludeRule rule)
Creates new object- Parameters:
root
- vcs settings checked out from.rule
- assotiated checkout rule.
-
-
Method Detail
-
getRoot
public VcsRootXmlConverter.VcsRoot getRoot()
Sources location description.- Returns:
- vcs root containing vcs settings.
-
getRule
public IncludeRule getRule()
Include rule describes what part of the described repository should be checked out and where it should be checked out to.- Returns:
- description of what part of the described repository should be checked out and where it should be checked out to.
-
compareTo
public int compareTo(VcsRootXmlConverter.CheckedOutDir o)
- Specified by:
compareTo
in interfaceComparable<VcsRootXmlConverter.CheckedOutDir>
-
-