Package org.apache.stratum.configuration

Examples of org.apache.stratum.configuration.BaseConfiguration


     * @param name The name of the service.
     * @return Properties of requested Service.
     */
    public Configuration getConfiguration( String name )
    {
        return (Configuration) new BaseConfiguration();
    }
View Full Code Here


     * @exception IOException, if there was an I/O problem.
     */
    public static void setPropertiesFileName(String propertiesFileName)
        throws TurbineException
    {
        Configuration mappings = (Configuration) new BaseConfiguration();

        mappings.setProperty(ResourceService.SERVICE_NAME,
            TurbineResourceService.class.getName());

        TurbineServices services = (TurbineServices) TurbineServices.getInstance();
View Full Code Here

     * @exception TurbineException, if there was an I/O problem.
     */
    public static void setProperties(Properties properties)
        throws TurbineException
    {
        Configuration mappings = (Configuration) new BaseConfiguration();

        mappings.setProperty(ResourceService.SERVICE_NAME,
            TurbineResourceService.class.getName());

        TurbineServices services = (TurbineServices) TurbineServices.getInstance();
View Full Code Here

TOP

Related Classes of org.apache.stratum.configuration.BaseConfiguration

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.