Class ProcessService

java.lang.Object
dev.dsf.bpe.webservice.ProcessService
All Implemented Interfaces:
org.springframework.beans.factory.InitializingBean

@Path("Process") public class ProcessService extends Object implements org.springframework.beans.factory.InitializingBean
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    ProcessService(org.camunda.bpm.engine.RuntimeService runtimeService, org.camunda.bpm.engine.RepositoryService repositoryService)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
     
    jakarta.ws.rs.core.Response
    read(String domain, String key, jakarta.ws.rs.core.UriInfo uri, jakarta.ws.rs.core.HttpHeaders headers)
     
    jakarta.ws.rs.core.Response
    vread(String domain, String key, String version, jakarta.ws.rs.core.UriInfo uri, jakarta.ws.rs.core.HttpHeaders headers)
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

  • Constructor Details

    • ProcessService

      public ProcessService(org.camunda.bpm.engine.RuntimeService runtimeService, org.camunda.bpm.engine.RepositoryService repositoryService)
  • Method Details

    • afterPropertiesSet

      public void afterPropertiesSet() throws Exception
      Specified by:
      afterPropertiesSet in interface org.springframework.beans.factory.InitializingBean
      Throws:
      Exception
    • read

      @GET @Path("/{domain}/{key}") public jakarta.ws.rs.core.Response read(@PathParam("domain") String domain, @PathParam("key") String key, @Context jakarta.ws.rs.core.UriInfo uri, @Context jakarta.ws.rs.core.HttpHeaders headers)
    • vread

      @GET @Path("/{domain}/{key}/{version}") public jakarta.ws.rs.core.Response vread(@PathParam("domain") String domain, @PathParam("key") String key, @PathParam("version") String version, @Context jakarta.ws.rs.core.UriInfo uri, @Context jakarta.ws.rs.core.HttpHeaders headers)