1 23 24 29 package com.sun.enterprise.admin.dottedname.valueaccessor; 30 31 import javax.management.MBeanServerConnection ; 32 33 public class PropertyValueAccessor extends PropertyValueAccessorBase 34 { 35 public static final String NAME_PREFIX = "property."; 36 public PropertyValueAccessor( MBeanServerConnection conn ) 37 { 38 super( conn, NAME_PREFIX ); 39 } 40 41 String getDottedNamePrefix(){ return NAME_PREFIX;}; 42 String getGetPropertyMethodName() { return "getPropertyValue"; } 43 String getSetPropertyMethodName() { return "setProperty"; } 44 String getGetPropertiesMethodName() { return "getProperties"; } 45 } 46 47 48 | Popular Tags |