/** * Gets the XRI authority isContact flag. If the flag was never set, this method returns the * default value (false). */ public boolean getIsContact() { if (isContact == null) return false; return isContact.booleanValue(); }
/** * Gets the XRI authority isEscrow flag. If the flag was never set, this method would return the * default (false) value. */ public boolean getIsEscrow() { if (isEscrow == null) return false; return isEscrow.booleanValue(); }