}
public org.cafesip.jiplet.console.client.rpc.RealmElement viewRealmProperty(
String realmName) throws Exception
{
RealmElement src = getRealmProperty(realmName);
if (src == null)
{
throw new Exception("Realm not found");
}
if (src.getDeployDir() == null)
{
src.setDeployDir("System Realm");
}
org.cafesip.jiplet.console.client.rpc.RealmElement dest = new org.cafesip.jiplet.console.client.rpc.RealmElement();
dest.setDefaultRealm(src.isDefaultRealm());
dest.setDeployDir(src.getDeployDir());
dest.setName(src.getName());
dest.setParamsMap(src.getParams());
return dest;
}