@ApiResponses(value = {
@ApiResponse(code = 404, message = "Radio not found.")
})
public Response unregisterInput(@ApiParam(name = "radioId", required = true) @PathParam("radioId") String radioId,
@ApiParam(name = "inputId", required = true) @PathParam("inputId") String inputId) {
final Node radio;
try {
radio = nodeService.byNodeId(radioId);
} catch (NodeNotFoundException e) {
LOG.error("Radio <{}> not found.", radioId);
throw new NotFoundException("Radio <" + radioId + "> not found.");