Package org.activiti.rest.application

Examples of org.activiti.rest.application.ActivitiRestApplication


 
  protected void initializeRestServer() throws Exception {
    component = new Component()
    // Add a new HTTP server listening on port 8182. 
    component.getServers().add(Protocol.HTTP, 8182);  
    component.getDefaultHost().attach(new ActivitiRestApplication());
    component.start();
  }
View Full Code Here

TOP

Related Classes of org.activiti.rest.application.ActivitiRestApplication

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.