Class ClientFormFileService
- java.lang.Object
-
- de.xima.fc.api.rest.pub.impl.generic.services.client.ClientFormFileService
-
@Produces({"application/vnd.xima.fc.api.rest.public+json; version=1.0; charset=utf-8","application/json; charset=utf-8"}) @Path("/clients/{clientUuid}/forms/{formUuid}") public class ClientFormFileService extends Object
-
-
Constructor Summary
Constructors Constructor Description ClientFormFileService()
-
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
getFormFiles(int pageSize, int page)
javax.ws.rs.core.Response
getSingleFormFile(@NotNull UUID fileUuid)
-
-
-
Method Detail
-
getFormFiles
@GET @Path("/files") public javax.ws.rs.core.Response getFormFiles(@QueryParam("size") @DefaultValue("10") int pageSize, @QueryParam("page") @DefaultValue("1") int page)
-
getSingleFormFile
@GET @Path("/files/{fileUuid}") public javax.ws.rs.core.Response getSingleFormFile(@PathParam("fileUuid") @NotNull @NotNull UUID fileUuid)
-
downloadFormFiles
@GET @Path("/files/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("/files/{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)
-
-