1 17 package org.apache.avalon.excalibur.component.servlet; 18 19 import org.apache.excalibur.instrument.InstrumentManager; 20 import org.apache.excalibur.instrument.Instrumentable; 21 22 31 final class InstrumentManagerReferenceProxy 32 extends AbstractReferenceProxy 33 implements InstrumentManager 34 { 35 private InstrumentManager m_instrumentManager; 36 37 40 47 InstrumentManagerReferenceProxy( InstrumentManager instrumentManager, 48 AbstractReferenceProxyLatch latch, 49 String name ) 50 { 51 super( latch, name ); 52 m_instrumentManager = instrumentManager; 53 } 54 55 58 69 public void registerInstrumentable( Instrumentable instrumentable, String instrumentableName ) 70 throws Exception 71 { 72 m_instrumentManager.registerInstrumentable( instrumentable, instrumentableName ); 73 } 74 } 75 | Popular Tags |