Interface FUMResource
-
@Path("/fum") public interface FUMResource
Resource for handling of postponed FUM requests
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FUMStatusResponse
done(String filename, FUMResult result)
Post the result of the postponed FUMjavax.ws.rs.core.Response
fetch(String filename)
Get the contents of the temporary file
-
-
-
Method Detail
-
fetch
@GET @Path("/{filename}") javax.ws.rs.core.Response fetch(@PathParam("filename") String filename)
Get the contents of the temporary file- Parameters:
filename
- filename- Returns:
- contents
-
done
@POST @Path("/{filename}") FUMStatusResponse done(@PathParam("filename") String filename, FUMResult result)
Post the result of the postponed FUM- Parameters:
filename
- filenameresult
- FUM result- Returns:
- response
-
-