Interface IncidentResource
- 
- All Known Implementing Classes:
- IncidentResourceImpl
 
 public interface IncidentResource
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description javax.ws.rs.core.ResponseclearAnnotation()IncidentDtogetIncident()voidresolveIncident()javax.ws.rs.core.ResponsesetAnnotation(AnnotationDto annotationDto)
 
- 
- 
- 
Method Detail- 
getIncident@GET @Produces("application/json") IncidentDto getIncident()
 - 
resolveIncident@DELETE void resolveIncident() 
 - 
setAnnotation@PUT @Path("/annotation") @Produces("application/json") @Consumes("application/json") javax.ws.rs.core.Response setAnnotation(AnnotationDto annotationDto)
 - 
clearAnnotation@DELETE @Path("/annotation") @Produces("application/json") javax.ws.rs.core.Response clearAnnotation()
 
- 
 
-