Package com.mooltiverse.oss.nyx.entities
Class GitRemoteConfiguration
- java.lang.Object
-
- com.mooltiverse.oss.nyx.entities.GitRemoteConfiguration
-
public class GitRemoteConfiguration extends Object
This object models the fields used to configure the remote Git repository.
-
-
Constructor Summary
Constructors Constructor Description GitRemoteConfiguration()Default constructor.GitRemoteConfiguration(String user, String password)Standard constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetPassword()Returns the remote password.StringgetUser()Returns the remote user name.voidsetPassword(String password)Sets the remote password.voidsetUser(String user)Sets the remote user name.
-
-
-
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.
-
-