All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.activiti.cloud.services.rest.api.ProcessDefinitionMetaController Maven / Gradle / Ivy

There is a newer version: 7.1.0.M6
Show newest version
package org.activiti.cloud.services.rest.api;

import org.activiti.cloud.services.rest.api.resources.ProcessDefinitionMetaResource;
import org.springframework.hateoas.MediaTypes;
import org.springframework.http.MediaType;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;

@RequestMapping(value = "/v1/process-definitions/{id}/meta",
        produces = {MediaTypes.HAL_JSON_VALUE, MediaType.APPLICATION_JSON_VALUE})
public interface ProcessDefinitionMetaController {

    @RequestMapping(method = RequestMethod.GET)
    ProcessDefinitionMetaResource getProcessDefinitionMetadata(@PathVariable String id);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy