109110111112113114115
} public final void activateObject(byte[] id, Servant servant) throws WrongPolicy, ServantAlreadyActive, ObjectAlreadyActive { throw new WrongPolicy(); }
114115116117118119120
throw new WrongPolicy(); } public Servant deactivateObject( byte[] id ) throws ObjectNotActive, WrongPolicy { throw new WrongPolicy(); }
119120121122123124125
throw new WrongPolicy(); } public byte[] servantToId( Servant servant ) throws ServantNotActive, WrongPolicy { throw new WrongPolicy(); }
76777879808182
// NO-OP } public ServantManager getServantManager() throws WrongPolicy { throw new WrongPolicy(); }
81828384858687
throw new WrongPolicy(); } public void setServantManager( ServantManager servantManager ) throws WrongPolicy { throw new WrongPolicy(); }
134135136137138139140141142143144
} public synchronized byte[] newSystemId() throws WrongPolicy { if (!isSystemId) throw new WrongPolicy() ; byte[] array = new byte[8]; ORBUtility.intToBytes(++sysIdCounter, array, 0); ORBUtility.intToBytes( poa.getPOAId(), array, 4); return array;
85868788899091
90919293949596