1 21 package org.jacorb.orb.policies; 22 23 import org.omg.CORBA.Policy ; 24 import org.omg.Messaging.REBIND_POLICY_TYPE; 25 import org.omg.Messaging._RebindPolicyLocalBase; 26 27 public class RebindPolicy extends _RebindPolicyLocalBase 28 { 29 private short rebind_mode; 30 31 public RebindPolicy (short rebind_mode) 32 { 33 this.rebind_mode = rebind_mode; 34 } 35 36 public RebindPolicy (org.omg.CORBA.Any value) 37 { 38 this.rebind_mode = value.extract_short(); 39 } 40 41 public short rebind_mode() 42 { 43 return rebind_mode; 44 } 45 46 public int policy_type() 47 { 48 return REBIND_POLICY_TYPE.value; 49 } 50 51 public Policy copy() 52 { 53 return new RebindPolicy (rebind_mode); 54 } 55 56 public void destroy() 57 { 58 } 59 60 } 61 | Popular Tags |