Package com.draagon.util

Examples of com.draagon.util.Configuration


        // Get the name of the Bean holding the properties
        String propsName = config.getServletContext().getInitParameter( "wiiProperties" );
        if ( propsName == null ) propsName = "wii.properties";
       
        mWIIProps = new Configuration();
        try
        {
          InputStream fis = ClassLoader.getSystemResourceAsStream( propsName );
          mWIIProps.load( fis );
          fis.close();
View Full Code Here

TOP

Related Classes of com.draagon.util.Configuration

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.