Package cn.vertxup.workflow.api
Interface RunAgent
@EndPoint
@Path("/api")
public interface RunAgent
Refer actor part to get data format
- Author:
- Lang
-
Method Summary
Modifier and TypeMethodDescriptionio.vertx.core.json.JsonObjectbatch(io.vertx.core.json.JsonObject body) io.vertx.core.json.JsonObjectcancel(io.vertx.core.json.JsonObject body) io.vertx.core.json.JsonObjectclose(io.vertx.core.json.JsonObject body) io.vertx.core.json.JsonObjectcomplete(io.vertx.core.json.JsonObject body) io.vertx.core.json.JsonObjectdraft(io.vertx.core.json.JsonObject body) io.vertx.core.json.JsonObjectstart(io.vertx.core.json.JsonObject body)
-
Method Details
-
start
@POST @Path("/up/flow/start") @Address("\u1f08\u03c4\u03bb\u03b1\u03bd\u03c4\u1f76\u03c2 \u03bd\u1fc6\u03c3\u03bf\u03c2://\u03a1\u03bf\u03ae \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2/WORKFLOW/START") io.vertx.core.json.JsonObject start(@BodyParam io.vertx.core.json.JsonObject body) -
draft
@PUT @Path("/up/flow/saving") @Address("\u1f08\u03c4\u03bb\u03b1\u03bd\u03c4\u1f76\u03c2 \u03bd\u1fc6\u03c3\u03bf\u03c2://\u03a1\u03bf\u03ae \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2/WORKFLOW/DRAFT") io.vertx.core.json.JsonObject draft(@BodyParam io.vertx.core.json.JsonObject body) -
complete
@PUT @Path("/up/flow/complete") @Address("\u1f08\u03c4\u03bb\u03b1\u03bd\u03c4\u1f76\u03c2 \u03bd\u1fc6\u03c3\u03bf\u03c2://\u03a1\u03bf\u03ae \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2/WORKFLOW/COMPLETE") io.vertx.core.json.JsonObject complete(@BodyParam io.vertx.core.json.JsonObject body) -
batch
@PUT @Path("/up/flow/batch") @Address("\u1f08\u03c4\u03bb\u03b1\u03bd\u03c4\u1f76\u03c2 \u03bd\u1fc6\u03c3\u03bf\u03c2://\u03a1\u03bf\u03ae \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2/WORKFLOW/BATCH") io.vertx.core.json.JsonObject batch(@BodyParam io.vertx.core.json.JsonObject body) -
cancel
@PUT @Path("/up/flow/cancel") @Address("\u1f08\u03c4\u03bb\u03b1\u03bd\u03c4\u1f76\u03c2 \u03bd\u1fc6\u03c3\u03bf\u03c2://\u03a1\u03bf\u03ae \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2/WORKFLOW/CANCEL") io.vertx.core.json.JsonObject cancel(@BodyParam io.vertx.core.json.JsonObject body) -
close
@PUT @Path("/up/flow/close") @Address("\u1f08\u03c4\u03bb\u03b1\u03bd\u03c4\u1f76\u03c2 \u03bd\u1fc6\u03c3\u03bf\u03c2://\u03a1\u03bf\u03ae \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2/WORKFLOW/CLOSE") io.vertx.core.json.JsonObject close(@BodyParam io.vertx.core.json.JsonObject body)
-