org.jafer.interfaces
Interface Authentication

All Known Implementing Classes:
AbstractClient, SRWClient, ZClient

public interface Authentication

Interface for methods to set user credentials *


Method Summary
 java.lang.String getGroup()
          Get the group name set for accessing the datasource
 java.lang.String getPassword()
          Get the password set for accessing the datasource
 java.lang.String getUsername()
          Get the username set for accessing the datasource
 void setGroup(java.lang.String Group)
          Set group name for accessing the data source
 void setPassword(java.lang.String password)
          Set password for accessing the datasource
 void setUsername(java.lang.String username)
          Set username for access to the data source
 

Method Detail

setUsername

void setUsername(java.lang.String username)
Set username for access to the data source

Parameters:
username - Username to set

getUsername

java.lang.String getUsername()
Get the username set for accessing the datasource

Returns:
Username set

setPassword

void setPassword(java.lang.String password)
Set password for accessing the datasource

Parameters:
password - Password to set

getPassword

java.lang.String getPassword()
Get the password set for accessing the datasource

Returns:
Password set

setGroup

void setGroup(java.lang.String Group)
Set group name for accessing the data source

Parameters:
Group - Group name to set

getGroup

java.lang.String getGroup()
Get the group name set for accessing the datasource

Returns:
Group name set