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