1 package org.jacorb.poa.policy; 2 3 22 23 29 30 public class ServantRetentionPolicy 31 extends org.omg.PortableServer._ServantRetentionPolicyLocalBase 32 { 33 private org.omg.PortableServer.ServantRetentionPolicyValue value; 34 35 private ServantRetentionPolicy() { 36 } 37 38 public ServantRetentionPolicy(org.omg.PortableServer.ServantRetentionPolicyValue _value) { 39 value = _value; 40 } 41 42 public org.omg.CORBA.Policy copy() { 43 return new ServantRetentionPolicy(value()); 44 } 45 46 public void destroy() { 47 } 48 49 50 public int policy_type() { 51 return org.omg.PortableServer.SERVANT_RETENTION_POLICY_ID.value; 52 } 53 54 public org.omg.PortableServer.ServantRetentionPolicyValue value() { 55 return value; 56 } 57 } 58 59 60 61 62 63 64 | Popular Tags |