Class FormFileService
- java.lang.Object
-
- de.xima.fc.api.rest.pub.impl.form.services.FormFileService
-
@Path("/forms/{clientUuid}/{formUuid}/files") public class FormFileService extends Object
-
-
Constructor Summary
Constructors Constructor Description FormFileService()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.ws.rs.core.Response
downloadFormFiles()
javax.ws.rs.core.Response
downloadSingleFormFile(@NotNull UUID fileUuid)
javax.ws.rs.core.Response
getSingleFormFile(@NotNull UUID fileUuid)
-
-
-
Method Detail
-
downloadFormFiles
@GET @Path("/download") @Produces({"application/vnd.xima.fc.api.rest.public+octet-stream; version=1.0; charset=utf-8","application/octet-stream; charset=utf-8"}) public javax.ws.rs.core.Response downloadFormFiles()
-
downloadSingleFormFile
@GET @Path("/{fileUuid}/download") @Produces({"application/vnd.xima.fc.api.rest.public+octet-stream; version=1.0; charset=utf-8","application/octet-stream; charset=utf-8"}) public javax.ws.rs.core.Response downloadSingleFormFile(@PathParam("fileUuid") @NotNull @NotNull UUID fileUuid)
-
getSingleFormFile
@GET @Path("/{fileUuid}") @Produces({"application/vnd.xima.fc.api.rest.public+json; version=1.0; charset=utf-8","application/json; charset=utf-8"}) public javax.ws.rs.core.Response getSingleFormFile(@PathParam("fileUuid") @NotNull @NotNull UUID fileUuid)
-
-