1 23 24 30 31 package com.sun.enterprise.management.config; 32 33 import java.util.Map ; 34 35 import javax.management.ObjectName ; 36 37 import com.sun.enterprise.management.config.AMXConfigImplBase; 38 import com.sun.enterprise.management.support.Delegate; 39 import com.sun.enterprise.management.support.AMXAttributeNameMapper; 40 import com.sun.enterprise.management.support.oldconfig.OldVirtualServerMBean; 41 42 43 46 public final class VirtualServerConfigImpl extends AMXConfigImplBase 47 implements ConfigFactoryCallback 48 { 49 public 50 VirtualServerConfigImpl( final Delegate delegate ) 51 { 52 super( delegate ); 53 } 54 55 protected void 56 addCustomMappings( final AMXAttributeNameMapper mapper ) 57 { 58 super.addCustomMappings( mapper ); 59 60 mapper.matchName( "Name", "Id" ); 62 } 63 64 95 } 96 97 98 99 100 | Popular Tags |