Methods Summary |
---|
public void | addUser(java.lang.String user, java.lang.String password, java.lang.String[] groupList)
getDelegate().invoke(
"addUser",
new Object[] { user, password, groupList },
UPG_SIG );
|
public java.lang.String[] | getGroupNames()
String[] result = null;
// offline is implemented as an Attribute (as it should be)
// online is implemented (incorrectly) as an operation.
try
{
result = (String[])getDelegate().invoke( "getGroupNames", null, null );
}
catch( Exception e )
{
try
{
result = (String[])delegateGetAttributeNoThrow( "GroupNames" );
}
catch( Exception ee )
{
// may not be any for this type of realm
}
}
return result;
|
public java.lang.String[] | getUserGroupNames(java.lang.String user)
return (String[])getDelegate().invoke(
"getUserGroupNames",
new Object[] { user },
STRING_SIG );
|
public java.lang.String[] | getUserNames()
String[] result = null;
// offline is implemented as an Attribute (as it should be)
// online is implemented (incorrectly) as an operation.
try
{
result = (String[])getDelegate().invoke( "getUserNames", null, null );
}
catch( Exception e )
{
try
{
result = (String[])delegateGetAttributeNoThrow( "UserNames" );
}
catch( Exception ee )
{
// may not be any for this type of realm
}
}
return result;
|
public void | removeUser(java.lang.String user)
getDelegate().invoke( "removeUser", new Object[] { user }, STRING_SIG );
|
public void | updateUser(java.lang.String user, java.lang.String password, java.lang.String[] groupList)
getDelegate().invoke( "updateUser",
new Object[] { user, password, groupList },
UPG_SIG );
|