Methods Summary |
---|
public AuthenticationHandler | getAuthenticationHandler()Returns an AuthenticationHandler object which can be used to
authenticate within this realm.
This method return null always, since AuthenticationHandlers
are generally not supported by iAS realms. Subclass can override
if necessary.
_logger.warning("iasrealm.noauth");
return null;
|
public java.util.Enumeration | getGroupNames()Returns names of all the groups in this particular realm.
This method always throws a BadRealmException since by default
this operation is not supported. Subclasses which support this
method can override.
String msg = sm.getString("iasrealm.notsupported");
throw new BadRealmException(msg);
|
public User | getUser(java.lang.String name)Returns the information recorded about a particular named user.
This method always throws a BadRealmException since by default
this operation is not supported. Subclasses which support this
method can override.
String msg = sm.getString("iasrealm.notsupported");
throw new BadRealmException(msg);
|
public java.util.Enumeration | getUserNames()Returns names of all the users in this particular realm.
This method always throws a BadRealmException since by default
this operation is not supported. Subclasses which support this
method can override.
String msg = sm.getString("iasrealm.notsupported");
throw new BadRealmException(msg);
|
public void | refresh()Refreshes the realm data so that new users/groups are visible.
This method always throws a BadRealmException since by default
this operation is not supported. Subclasses which support this
method can override.
String msg = sm.getString("iasrealm.notsupported");
throw new BadRealmException(msg);
|