Package org.infoglue.deliver.applications.inputhandlers

Examples of org.infoglue.deliver.applications.inputhandlers.InfoGlueInputHandler


     
      String inputHandlerClassName = ContentDeliveryController.getContentDeliveryController().getContentAttribute(dbWrapper.getDatabase(), formContentId, languageId, "InputHandlerClassName", siteNodeId, true, DeliveryContext.getDeliveryContext(), (InfoGluePrincipal)principal, false);

        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

Related Classes of org.infoglue.deliver.applications.inputhandlers.InfoGlueInputHandler

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.