public byte[] servantToId( Servant servant ) throws ServantNotActive, WrongPolicy
{
// XXX needs to handle call from an invocation on this POA
if (!isUnique && !isImplicit)
throw new WrongPolicy();
if (isUnique) {
ActiveObjectMap.Key key = activeObjectMap.getKey(servant);
if (key != null)
return key.id ;