Method
getModuleByName
(String namespace, String name, String provider)
Source from the content-addressed store, hash-verified
| 44 | } |
| 45 | |
| 46 | @GET |
| 47 | @Path("{namespace}/{name}/{provider}") |
| 48 | public Response getModuleByName(String namespace, String name, String provider) throws Exception { |
| 49 | Module module = new Module(namespace, name, provider); |
| 50 | return Response.ok(moduleService.getModule(module.getId())).build(); |
| 51 | } |
| 52 | |
| 53 | @POST |
| 54 | @Consumes(MediaType.MULTIPART_FORM_DATA) |
Callers
nothing calls this directly
Tested by
no test coverage detected