1 28 29 30 package org.objectweb.ccm.runtime; 31 32 import org.objectweb.corba.runtime.*; 33 34 39 public class SegmentedSession2ContextImpl 40 extends org.omg.CORBA.LocalObject 41 implements org.omg.Components.SegmentedSession2Context, org.coach.ECM.ECMContext 42 { 43 static private String _class_name = "SegSegmentedSession2ContextImpl"; 45 private HomeSegmentedSession2ContextImpl _delegate; 46 private org.omg.Components.LocalEvents _events; 47 private org.omg.Components.LocalReceptacles _receptacles; 48 49 protected 51 SegmentedSession2ContextImpl() 52 { 53 _delegate = null; 55 _events = null; 56 _receptacles = null; 57 } 58 59 protected 61 SegmentedSession2ContextImpl(HomeSegmentedSession2ContextImpl del, byte[] mainsegid) 62 { 63 _delegate = del; 65 _events = new LocalEventsImpl(del.getLocalEvents(), mainsegid); 66 _receptacles = new LocalReceptaclesImpl(del.getLocalReceptacles(), mainsegid); 67 } 68 69 73 final public org.omg.Components.CCMHome 74 get_CCM_home() 75 { 76 return _delegate.get_CCM_home(); 77 } 78 79 83 final public org.omg.Components.HomeRegistrationLocal 84 get_home_registration() 85 { 86 return _delegate.get_home_registration(); 87 } 88 89 final public void 90 req_passivate() 91 throws org.omg.Components.IllegalState, 92 org.omg.Components.PolicyMismatch 93 { 94 _delegate.req_passivate(); 95 } 96 97 final public org.omg.Components.LocalEvents 98 get_events() 99 { 100 return _events; 101 } 102 103 final public org.omg.Components.LocalReceptacles 104 get_receptacles() 105 { 106 return _receptacles; 107 } 108 109 final public void 110 remove_component(org.omg.Components.CCMObject comp) 111 { 112 _delegate.remove_component(comp); 113 } 114 115 final public void 116 register_valuefactory(String repid, org.omg.CORBA.portable.ValueFactory vfact) 117 { 118 _delegate.register_valuefactory(repid, vfact); 119 } 120 121 final public org.omg.CORBA.Any 122 create_any() 123 { 124 return _delegate.create_any(); 125 } 126 127 131 final public org.omg.CORBA.Object 132 get_CCM_object() 133 throws org.omg.Components.IllegalState 134 { 135 return _delegate.get_CCM_object(); 136 } 137 138 142 final public org.omg.Components.ComponentId 143 get_component_id() 144 throws org.omg.Components.IllegalState 145 { 146 return _delegate.get_component_id(); 147 } 148 149 final public org.omg.Components.ComponentId 150 create_main_segment(org.omg.Components.SegmentDescr[] descrs) 151 { 152 return _delegate.create_main_segment(descrs); 153 } 154 155 final public org.omg.CORBA.Object 156 create_ref_from_cid(String repid, 157 org.omg.Components.ComponentId cid) 158 { 159 return _delegate.create_ref_from_cid(repid, cid); 160 } 161 162 final public org.omg.Components.ComponentId 163 get_cid_from_ref(org.omg.CORBA.Object ref) 164 throws org.omg.Components.BadComponentReference 165 { 166 return _delegate.get_cid_from_ref(ref); 167 } 168 169 173 final public org.omg.CORBA.Object 174 get_service_internal(String sid, String siid) 175 throws org.coach.ECM.UnknownService, 176 org.coach.ECM.UnknownServiceInternal 177 { 178 return _delegate.get_service_internal(sid, siid); 179 } 180 } 181 | Popular Tags |