1 package org.jahia.content;2 3 import java.util.Properties ;4 5 /**6 * <p>Title: Interface that defines access to properties. </p>7 * <p>Description: </p>8 * <p>Copyright: Copyright (c) 2002</p>9 * <p>Company: Jahia Ltd</p>10 * @author Serge Huber11 * @version 1.012 */13 14 public interface PropertiesInterface {15 16 /**17 * @return the full set of properties18 */19 public Properties getProperties();20 21 /**22 * Sets the full set of properties23 * @param newProperties the object containing the new properties to use24 */25 public void setProperties(Properties newProperties);26 27 }