Package hudson.scm

Class SubversionSCM.External

java.lang.Object
hudson.scm.SubversionSCM.External
All Implemented Interfaces:
Serializable
Enclosing class:
SubversionSCM

public static final class SubversionSCM.External extends Object implements Serializable
Information about svn:external
See Also:
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    final String
    Relative path within the workspace where this svn:exteranls exist.
    final long
    If the svn:external link is with the -r option, its number.
    final String
    External SVN URL to be fetched.
  • Constructor Summary

    Constructors
    Constructor
    Description
    External(String path, org.tmatesoft.svn.core.SVNURL url, long revision)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Returns true if this reference is to a fixed revision.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • path

      public final String path
      Relative path within the workspace where this svn:exteranls exist.
    • url

      public final String url
      External SVN URL to be fetched.
    • revision

      public final long revision
      If the svn:external link is with the -r option, its number. Otherwise -1 to indicate that the head revision of the external repository should be fetched.
  • Constructor Details

    • External

      public External(String path, org.tmatesoft.svn.core.SVNURL url, long revision)
  • Method Details

    • isRevisionFixed

      public boolean isRevisionFixed()
      Returns true if this reference is to a fixed revision.