public void createUser(String realm, String user, String password,
String[] roles) throws Exception
{
try
{
RealmMgmt rlm = new RealmMgmt();
rlm.createUser(realm, user, password, roles);
}
catch (Exception e)
{
throw ExceptionHandler.getException(e, this);
}