1 23 24 29 30 package com.sun.enterprise.admin.dottedname; 31 32 33 public final class DottedNamePropertySupport 34 { 35 private DottedNamePropertySupport() {} 36 37 public final static String DOTTED_NAME_PROPERTIES = "property"; 38 public final static String DOTTED_NAME_PROPERTIES_PREFIX = DOTTED_NAME_PROPERTIES + "."; 39 40 public static final String [] GET_VOID_SIG = new String [] { }; 41 42 public static final String GET_PROPERTY = "getPropertyValue"; 43 public static final String [] GET_PROPERTY_SIG = new String [] { "java.lang.String" }; 44 45 public static final String SET_PROPERTY = "setProperty"; 46 public static final String [] SET_PROPERTY_SIG = new String [] { "javax.management.Attribute" }; 47 48 public static final String GET_PROPERTIES = "getProperties"; 49 public static final String [] GET_PROPERTIES_SIG = GET_VOID_SIG; 50 51 static public String 52 getPropertySuffix( String propertyName ) 53 { 54 return( DOTTED_NAME_PROPERTIES_PREFIX + propertyName ); 55 } 56 } 57 58 | Popular Tags |