corba/src/java.corba/share/classes/com/sun/corba/se/impl/oa/poa/POAPolicyMediatorImpl_R_USM.java
changeset 37620 230612715768
parent 33680 56aa0b79bf5a
equal deleted inserted replaced
37396:8d78fb40648d 37620:230612715768
   300     public void setDefaultServant( Servant servant ) throws WrongPolicy
   300     public void setDefaultServant( Servant servant ) throws WrongPolicy
   301     {
   301     {
   302         throw new WrongPolicy();
   302         throw new WrongPolicy();
   303     }
   303     }
   304 
   304 
   305     class Etherealizer extends sun.misc.ManagedLocalsThread {
   305     class Etherealizer extends Thread {
   306         private POAPolicyMediatorImpl_R_USM mediator ;
   306         private POAPolicyMediatorImpl_R_USM mediator ;
   307         private ActiveObjectMap.Key key ;
   307         private ActiveObjectMap.Key key ;
   308         private AOMEntry entry ;
   308         private AOMEntry entry ;
   309         private Servant servant ;
   309         private Servant servant ;
   310         private boolean debug ;
   310         private boolean debug ;
   312 
   312 
   313         public Etherealizer( POAPolicyMediatorImpl_R_USM mediator,
   313         public Etherealizer( POAPolicyMediatorImpl_R_USM mediator,
   314             ActiveObjectMap.Key key, AOMEntry entry, Servant servant,
   314             ActiveObjectMap.Key key, AOMEntry entry, Servant servant,
   315             boolean debug )
   315             boolean debug )
   316         {
   316         {
       
   317             super(null, null, "PAO-Etherealizer-Thread", 0, false);
   317             this.mediator = mediator ;
   318             this.mediator = mediator ;
   318             this.key = key ;
   319             this.key = key ;
   319             this.entry = entry;
   320             this.entry = entry;
   320             this.servant = servant;
   321             this.servant = servant;
   321             this.debug = debug ;
   322             this.debug = debug ;