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