@GET
 @Path("/history/instance/{procInstId: [0-9]+}/{oper: [a-zA-Z]+}")
 @Deprecated // Delete with 6.1.0
 public Response history_instance_procInstid_oper(
     @PathParam("procInstId") Long procInstId, @PathParam("oper") String operation) {
   return historyResource.instance_procInstid_oper(procInstId, operation);
 }
 @GET
 @Path("/history/variable/{varId: [a-zA-Z0-9-:\\.]+}/value/{value: [a-zA-Z0-9-:\\._]+}/instances")
 @Deprecated // Delete with 6.1.0
 public Response history_variable_varId_value_valueVal_instances(
     @PathParam("procId") String variableId, @PathParam("value") String value) {
   return historyResource.variable_varId_value_valueVal_instances(variableId, value);
 }
 @GET
 @Path("/history/variable/{varId: [a-zA-Z0-9-:\\._]+}")
 @Deprecated // Delete with 6.1.0
 public Response history_variable_varId(@PathParam("varId") String variableId) {
   return historyResource.variable_varId(variableId);
 }
 @GET
 @Path("/history/process/{processDefId: [a-zA-Z0-9-:\\._]+}")
 @Deprecated // Delete with 6.1.0
 public Response history_process_procDefId(@PathParam("processDefId") String processId) {
   return historyResource.process_procDefId(processId);
 }
 @GET
 @Path("/history/instance/{procInstId: [0-9]+}")
 @Deprecated // Delete with 6.1.0
 public Response history_instance_procInstId(@PathParam("procInstId") long procInstId) {
   return historyResource.instance_procInstId(procInstId);
 }
 @GET
 @Path("/history/instances")
 @Deprecated
 public Response history_instances() {
   return historyResource.instances();
 }
 /** History methods */
 @POST
 @Path("/history/clear")
 @Deprecated
 public Response history_clear() {
   return historyResource.clear();
 }