Package org.activiti.explorer.form

Examples of org.activiti.explorer.form.UserFormType


    processEngineConfiguration.setJobExecutorActivate(Boolean.valueOf(
        environment.getProperty("engine.activate.jobexecutor", "false")));
    processEngineConfiguration.setHistory(environment.getProperty("engine.history.level", "full"));
   
    List<AbstractFormType> formTypes = new ArrayList<AbstractFormType>();
    formTypes.add(new UserFormType());
    formTypes.add(new ProcessDefinitionFormType());
    formTypes.add(new MonthFormType());
    processEngineConfiguration.setCustomFormTypes(formTypes);
   
    return processEngineConfiguration;
View Full Code Here

TOP

Related Classes of org.activiti.explorer.form.UserFormType

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.