Package org.infoglue.deliver.applications.inputhandlers

Examples of org.infoglue.deliver.applications.inputhandlers.InfoGlueInputHandler.processInput()


        logger.info("Trying to invoke " + inputHandlerClassName);
        Object object =  Class.forName(inputHandlerClassName).newInstance();
        InfoGlueInputHandler infoGlueInputHandler = (InfoGlueInputHandler)object;
        HashMap parameters = requestToHashtable(this.getRequest());
        infoGlueInputHandler.processInput(dbWrapper, this.siteNodeId, this.languageId, this.contentId, this.formContentId, parameters, this.getRequest(), (InfoGluePrincipal)principal);
     
        closeTransaction(dbWrapper.getDatabase());
    }
    catch(Exception e)
    {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.