Package io.dialob.form.service.rest
Interface FormTagsRestService
-
- All Known Implementing Classes:
FormsRestServiceController
@RequestMapping("${dialob.api.context-path:}/tags") public interface FormTagsRestService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.springframework.http.ResponseEntity<List<io.dialob.api.form.FormTag>>getTags(String formName, String formId, String name)
-
-
-
Method Detail
-
getTags
@GetMapping(produces="application/json") org.springframework.http.ResponseEntity<List<io.dialob.api.form.FormTag>> getTags(@RequestParam(name="formName",required=false) String formName, @RequestParam(name="formId",required=false) String formId, @RequestParam(name="name",required=false) String name)
-
-