Package fi.tut.mei.resdescapi.rescatapi
Interface IResCatConfigureServer
- 
- All Superinterfaces:
- IResCatConfigureLocal
 
 public interface IResCatConfigureServer extends IResCatConfigureLocal Interface for interacting with a Resource Catalogue Storing location and configuring it. These are methods used to configure the type of a Resource Catalogue Storage requiring server connection.- Author:
- Niko Siltala
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetFolderLocationForARDs_URL()Gets the URL location for ARDs.StringgetFolderLocationForRDs_URL()Gets the URL location for RDs.StringgetServerLocation()Gets the URL of the server location.StringgetUsername()Gets the user name used for this server connection.voidsetFolderLocationForARDs_URL(String urlLocationForARDs)Sets the URL location for ARDs.voidsetFolderLocationForRDs_URL(String urlLocationForRDs)Sets the URL location for RDs.voidsetPassword(String password)Sets the password to be used to connect the server.voidsetServerLocation(String urlToServerRoot)Sets the URL of the server location.voidsetUsername(String username)Sets the user name to be used to connect the server.- 
Methods inherited from interface fi.tut.mei.resdescapi.rescatapi.IResCatConfigureLocalclearRegisters, getFolderLocationForARDs, getFolderLocationForRDs, setFolderLocationForARDs, setFolderLocationForRDs, updateRegister
 
- 
 
- 
- 
- 
Method Detail- 
getFolderLocationForARDs_URLString getFolderLocationForARDs_URL() Gets the URL location for ARDs. Is the absolute URL path.- Returns:
- the URL path to ARDs folder location.
 
 - 
setFolderLocationForARDs_URLvoid setFolderLocationForARDs_URL(String urlLocationForARDs) Sets the URL location for ARDs. Can be absolute or relative to the server's root URL location.- Parameters:
- urlLocationForARDs- the URL path to ARDs folder location to be set.
 
 - 
getFolderLocationForRDs_URLString getFolderLocationForRDs_URL() Gets the URL location for RDs. Is the absolute URL path.- Returns:
- the URL path to RDs folder location.
 
 - 
setFolderLocationForRDs_URLvoid setFolderLocationForRDs_URL(String urlLocationForRDs) Sets the URL location for RDs. Can be absolute or relative to the server's root URL location.- Parameters:
- urlLocationForRDs- the URL path to RDs folder location to be set.
 
 - 
getServerLocationString getServerLocation() Gets the URL of the server location.- Returns:
- URL to server's root location.
 
 - 
setServerLocationvoid setServerLocation(String urlToServerRoot) Sets the URL of the server location.- Parameters:
- urlToServerRoot- URL to server's root location to be set.
 
 - 
getUsernameString getUsername() Gets the user name used for this server connection.- Returns:
- user name
 
 - 
setUsernamevoid setUsername(String username) Sets the user name to be used to connect the server.- Parameters:
- username- user name to be set.
 
 - 
setPasswordvoid setPassword(String password) Sets the password to be used to connect the server.- Parameters:
- password- Password in open form.
 
 
- 
 
-