Class RepositoryUrl

java.lang.Object
org.apache.maven.scm.provider.git.repository.RepositoryUrl

public class RepositoryUrl extends Object
This class is a container which holds information about repository URL.
Since:
1.3
  • Field Details

    • protocol

      private String protocol
      The protocol used to access the upstream repository.
    • host

      private String host
      The server to access the upstream repository.
    • port

      private String port
      The port to access the upstream repository.
    • path

      private String path
      The path on the server to access the upstream repository.
    • userName

      private String userName
      The user name from the repository URL.
    • password

      private String password
      The password from the repository URL.
  • Constructor Details

    • RepositoryUrl

      public RepositoryUrl()
  • Method Details

    • getProtocol

      public String getProtocol()
    • setProtocol

      public void setProtocol(String protocol)
    • getHost

      public String getHost()
    • setHost

      public void setHost(String host)
    • getPort

      public String getPort()
    • setPort

      public void setPort(String port)
    • getPath

      public String getPath()
    • setPath

      public void setPath(String path)
    • getUserName

      public String getUserName()
    • setUserName

      public void setUserName(String userName)
    • getPassword

      public String getPassword()
    • setPassword

      public void setPassword(String password)