1 23 package com.sun.appserv.management.config; 24 25 import java.util.Map ; 26 27 import com.sun.appserv.management.base.XTypes; 28 29 30 41 public interface SystemPropertiesAccess 42 { 43 48 final static String SYSTEM_PROPERTY_PREFIX = "system-" + PropertiesAccess.PROPERTY_PREFIX; 49 50 51 54 public String [] getSystemPropertyNames( ); 55 56 57 60 public Map <String ,String > getSystemProperties(); 61 62 67 public String getSystemPropertyValue( String propertyName ); 68 69 76 public void setSystemPropertyValue( String propertyName, String propertyValue ); 77 78 83 public boolean existsSystemProperty( String propertyName ); 84 85 91 public void createSystemProperty( String propertyName, String propertyValue); 92 93 98 public void removeSystemProperty( String propertyName ); 99 } 100 101 102 103 | Popular Tags |