*/
public interface AuthenticationDataSource
{
- public String ROLE = AuthenticationDataSource.class.getName();
-
String getPrincipal();
boolean isEnforcePasswordChange();
*/
public interface LdapConnectionFactory
{
- String ROLE = LdapConnectionFactory.class.getName();
-
LdapConnection getConnection()
throws LdapException;
*/
public interface DataManagementTool
{
- /**
- * Plexus role.
- */
- String ROLE = DataManagementTool.class.getName();
void backupRBACDatabase( RBACManager manager, File backupDirectory )
throws RbacManagerException, IOException, XMLStreamException;
*/
public interface MailGenerator
{
- String ROLE = MailGenerator.class.getName();
-
String generateMail( String templateName, AuthenticationKey authkey, String baseUrl );
}
*/
public interface MockComponent
{
- String ROLE = MockComponent.class.getName();
-
void displayResult( String result );
}
*/
public interface SecureApplication
{
- String ROLE = SecureApplication.class.getName();
+ //
}