*/
public interface Authenticator {
-
-
+ // No methods
}
/**
* Return the set of {@link Role}s assigned specifically to this group.
*/
- public Iterator getRoles();
+ public Iterator<Role> getRoles();
/**
/**
* Return the set of {@link User}s that are members of this group.
*/
- public Iterator getUsers();
+ public Iterator<User> getUsers();
// --------------------------------------------------------- Public Methods
* Return an Iterator containing the String names of all notes bindings
* that exist for this session.
*/
- public Iterator getNoteNames();
+ public Iterator<String> getNoteNames();
/**
/**
* Return the set of {@link Group}s to which this user belongs.
*/
- public Iterator getGroups();
+ public Iterator<Group> getGroups();
/**
/**
* Return the set of {@link Role}s assigned specifically to this user.
*/
- public Iterator getRoles();
+ public Iterator<Role> getRoles();
/**
/**
* Return the set of {@link Group}s defined in this user database.
*/
- public Iterator getGroups();
+ public Iterator<Group> getGroups();
/**
/**
* Return the set of {@link Role}s defined in this user database.
*/
- public Iterator getRoles();
+ public Iterator<Role> getRoles();
/**
* Return the set of {@link User}s defined in this user database.
*/
- public Iterator getUsers();
+ public Iterator<User> getUsers();
// --------------------------------------------------------- Public Methods