1 28 29 30 package org.objectweb.ccm.logservice; 31 32 import org.objectweb.corba.runtime.*; 33 import org.objectweb.corba.logservice.*; 34 35 38 public class LogPolicyImpl 39 extends org.omg.CORBA.LocalObject 40 implements LogPolicy 41 { 42 private String _scheme; 44 45 public 46 LogPolicyImpl(String scheme) 47 { 48 _scheme = scheme; 49 } 50 51 55 final public int 56 policy_type() 57 { 58 return LOG_POLICY_TYPE.value; 59 } 60 61 final public org.omg.CORBA.Policy 62 copy() 63 { 64 return new LogPolicyImpl(_scheme); 65 } 66 67 final public void 68 destroy() 69 { 70 } 71 72 76 final public String 77 log_scheme() 78 { 79 return _scheme; 80 } 81 } 82 | Popular Tags |