1 5 package org.exoplatform.container.configuration; 6 7 import org.exoplatform.commons.utils.ExoProperties; 8 14 public class PropertiesParam extends Parameter { 15 private ExoProperties properties = new ExoProperties(); 16 17 public ExoProperties getProperties() { return properties ; } 18 19 public String getProperty(String name) { return properties.getProperty(name) ; } 20 public void setProperty(String name, String value) { properties.setProperty(name, value) ;} 21 } | Popular Tags |