Package org.cafesip.jiplet.config.jip

Examples of org.cafesip.jiplet.config.jip.InitParams


        if (descr != null)
        {
            jiplet.setDescription(descr);
        }

        InitParams plist = jipletConfig.getInitParams();
        if (plist != null)
        {
            HashMap params = new HashMap();
            List paramlist = plist.getInitParam();
            Iterator i = paramlist.iterator();
            while (i.hasNext())
            {
                InitParam parm = (InitParam) i.next();
                params.put(parm.getParamName(), parm.getParamValue());
View Full Code Here


     */
    public void init(JipletConfig config) throws JipletException
    {
        info(" being initialized");

        InitParams init = config.getInitParams();
        Iterator iter = init.getInitParam().iterator();
        String jdbc = null;
        String url = null;
        String user = null;
        String password = null;
        while (iter.hasNext() == true)
View Full Code Here

        // init parameters can be accessed. It also demonstrates how
        // application-
        // scope variables can be set.
        if (isDebugEnabled() == true)
        {
            InitParams init = config.getInitParams();
            Iterator iter = init.getInitParam().iterator();

            while (iter.hasNext() == true)
            {
                InitParam parm = (InitParam) iter.next();
                debug("Init param (" + parm.getParamName() + ", "
View Full Code Here

TOP

Related Classes of org.cafesip.jiplet.config.jip.InitParams

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.