Class GitRemoteConfiguration


  • public class GitRemoteConfiguration
    extends Object
    This object models the fields used to configure the remote Git repository.
    • Constructor Detail

      • GitRemoteConfiguration

        public GitRemoteConfiguration()
        Default constructor.
      • GitRemoteConfiguration

        public GitRemoteConfiguration​(String user,
                                      String password)
        Standard constructor.
        Parameters:
        user - the remote user name.
        password - the remote password.
    • Method Detail

      • getUser

        public String getUser()
        Returns the remote user name.
        Returns:
        the remote user name.
      • setUser

        public void setUser​(String user)
        Sets the remote user name.
        Parameters:
        user - the remote user name.
      • getPassword

        public String getPassword()
        Returns the remote password.
        Returns:
        the remote password.
      • setPassword

        public void setPassword​(String password)
        Sets the remote password.
        Parameters:
        password - the remote password.