Methods Summary |
---|
public int | addPrincipal(Principal value)
return this.addValue(PRINCIPAL, value);
|
public Principal | getPrincipal(int index)
return (Principal)this.getValue(PRINCIPAL, index);
|
public Principal[] | getPrincipal()
return (Principal[])this.getValues(PRINCIPAL);
|
public boolean | isBackendPrincipal()
Boolean ret = (Boolean)this.getValue(BACKEND_PRINCIPAL);
if (ret == null)
return false;
return ret.booleanValue();
|
public int | removePrincipal(Principal value)
return this.removeValue(PRINCIPAL, value);
|
public void | setBackendPrincipal(boolean value)
this.setValue(BACKEND_PRINCIPAL, Boolean.valueOf(value));
|
public void | setPrincipal(int index, Principal value)
this.setValue(PRINCIPAL, index, value);
|
public void | setPrincipal(Principal[] value)
this.setValue(PRINCIPAL, value);
|
public int | sizePrincipal()
return this.size(PRINCIPAL);
|
public boolean | verify()
return true;
|