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