1 23 24 29 package com.sun.enterprise.management.config; 30 31 import com.sun.enterprise.management.support.AMXAttributeNameMapper; 32 33 import com.sun.enterprise.management.support.Delegate; 34 import com.sun.enterprise.management.config.AMXConfigImplBase; 35 36 39 public final class CustomMBeanConfigImpl extends AMXConfigImplBase 40 { 42 public 43 CustomMBeanConfigImpl( Delegate delegate ) 44 { 45 super( delegate ); 46 } 47 48 protected void 49 addCustomMappings( final AMXAttributeNameMapper mapper ) 50 { 51 super.addCustomMappings(mapper); 52 53 mapper.matchName( "ObjectNameInConfig", "object-name", "ObjectName" ); 54 } 56 57 } 58 59 60 | Popular Tags |