Methods Summary |
---|
public final java.lang.Object | getInvocationServant(byte[] id, java.lang.String operation)
java.lang.Object result = internalGetServant( id, operation ) ;
return result ;
|
public final Policies | getPolicies()
return policies ;
|
public final int | getScid()
return scid ;
|
public final int | getServerId()
return serverid ;
|
protected abstract java.lang.Object | internalGetServant(byte[] id, java.lang.String operation)
|
public synchronized byte[] | newSystemId()
if (!isSystemId)
throw new WrongPolicy() ;
byte[] array = new byte[8];
ORBUtility.intToBytes(++sysIdCounter, array, 0);
ORBUtility.intToBytes( poa.getPOAId(), array, 4);
return array;
|
protected final void | setDelegate(org.omg.PortableServer.Servant servant, byte[] id)
//This new servant delegate no longer needs the id for
// its initialization.
servant._set_delegate(delegateImpl);
|