All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.greenpepper.server.ServerPropertiesManager Maven / Gradle / Ivy

The newest version!
package com.greenpepper.server;

/**
 * ServerPropertiesManager.
 * For server properties persistence.
 * Copyright (c) 2006 Pyxis technologies inc. All Rights Reserved.
 *
 * @author JCHUET
 * @version $Id: $Id
 */
public interface ServerPropertiesManager
{
    /** Constant URL="GREENPEPPER_URL" */
    public final static String URL = "GREENPEPPER_URL";
    /** Constant HANDLER="GREENPEPPER_HANDLER" */
    public final static String HANDLER = "GREENPEPPER_HANDLER";
    /** Constant PROJECT="GREENPEPPER_PROJECT" */
    public final static String PROJECT = "GREENPEPPER_PROJECT";
    /** Constant SEQUENCE="greenpepper." */
    public final static String SEQUENCE = "greenpepper.";
    
    /**
     * Retrieves the property for the specified key and identifier.
     * 

* * @param key a {@link java.lang.String} object. * @param identifier a {@link java.lang.String} object. * @return the property for the specified key and params. */ public String getProperty(String key, String identifier); /** * Saves the property value for the specified key and identifier. *

* * @param key a {@link java.lang.String} object. * @param value a {@link java.lang.String} object. * @param identifier a {@link java.lang.String} object. */ public void setProperty(String key, String value, String identifier); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy