1 23 24 29 30 package com.sun.appserv.management.config; 31 32 import com.sun.appserv.management.base.XTypes; 33 34 35 import java.util.Map ; 36 37 38 39 54 public interface PropertiesAccess 55 { 56 61 final static String PROPERTY_PREFIX = "property."; 62 63 66 public String [] getPropertyNames( ); 67 68 71 public Map <String ,String > getProperties(); 72 73 78 public String getPropertyValue( String propertyName ); 79 80 87 public void setPropertyValue( String propertyName, String propertyValue ); 88 89 94 public boolean existsProperty( String propertyName ); 95 96 102 public void createProperty( String propertyName, String propertyValue); 103 104 109 public void removeProperty( String propertyName ); 110 } 111 112 113 | Popular Tags |