org.xins.server.RuntimeProperties Maven / Gradle / Ivy
/*
* $Id: RuntimeProperties.java,v 1.16 2007/09/18 08:45:05 agoubard Exp $
*
* Copyright 2003-2007 Orange Nederland Breedband B.V.
* See the COPYRIGHT file for redistribution and use restrictions.
*/
package org.xins.server;
import java.util.ArrayList;
import java.util.List;
import org.xins.common.collections.InvalidPropertyValueException;
import org.xins.common.collections.MissingRequiredPropertyException;
import org.xins.common.collections.PropertyReader;
/**
* Base class to get the runtime properties.
*
* @version $Revision: 1.16 $ $Date: 2007/09/18 08:45:05 $
* @author Anthony Goubard
* @author Tauseef Rehman
*
* @since XINS 1.2.0
*/
public class RuntimeProperties {
private PropertyReader _runtimeSettings;
/**
* Initialize the runtime properties. This method should be overwritten
* by a generated class if any runtime properties is declared in the
* impl.xml file.
*
* @param runtimeSettings
* the runtime properties, not null
.
*
* @throws MissingRequiredPropertyException
* if a required property is not given.
*
* @throws InvalidPropertyValueException
* if the value of a certain property is invalid.
*/
protected void init(PropertyReader runtimeSettings)
throws MissingRequiredPropertyException, InvalidPropertyValueException {
_runtimeSettings = runtimeSettings;
}
/**
* Gets the descriptor list. The list is created by getting all the
* properties which are marked as _descriptor in the run time
* properties file.
*
* @return
* the list of all descriptors, may not be null
.
*
* @since XINS 1.3.0
*/
protected List descriptors() {
return new ArrayList();
}
/**
* Gets all the runtime properties.
*
* @return
* the runtime properties, can be null
before the initialization.
*
* @since XINS 2.1
*/
public PropertyReader properties() {
return _runtimeSettings;
}
}