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)