Class ServerParameters
- java.lang.Object
-
- org.gcube.datatransfer.resolver.gis.entity.ServerParameters
-
- All Implemented Interfaces:
Serializable
public class ServerParameters extends Object implements Serializable
The Class ServerParameters.- Author:
- Francesco Mangiacrapa francesco.mangiacrapa@isti.cnr.it May 16, 2017
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ServerParameters()Instantiates a new server parameters.ServerParameters(String url, String user, String password)Instantiates a new server parameters.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetPassword()Gets the password.StringgetUrl()Gets the url.StringgetUser()Gets the user.voidsetPassword(String password)Sets the password.voidsetUrl(String url)Sets the url.voidsetUser(String user)Sets the user.StringtoString()
-
-
-
Method Detail
-
getUrl
public String getUrl()
Gets the url.- Returns:
- the url
-
setUrl
public void setUrl(String url)
Sets the url.- Parameters:
url- the url to set
-
getUser
public String getUser()
Gets the user.- Returns:
- the user
-
setUser
public void setUser(String user)
Sets the user.- Parameters:
user- the user to set
-
getPassword
public String getPassword()
Gets the password.- Returns:
- the password
-
setPassword
public void setPassword(String password)
Sets the password.- Parameters:
password- the password to set
-
-