Package fiftyone.pipeline.web.services
Interface WebRequestEvidenceServiceCore
-
- All Known Implementing Classes:
WebRequestEvidenceServiceCore.Default
public interface WebRequestEvidenceServiceCoreService used to populate theEvidencefrom aHttpServletRequestready for it to be processed by the Pipeline. The Pipeline'sEvidenceKeyFilteris used to determine what should be collected from the request.- See Also:
- Specification
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classWebRequestEvidenceServiceCore.DefaultDefault implementation of theWebRequestEvidenceServiceCoreservice.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddEvidenceFromRequest(fiftyone.pipeline.core.data.FlowData flowData, javax.servlet.http.HttpServletRequest request)Collect all the evidence needed from the request and add to theFlowDatainstance.
-
-
-
Method Detail
-
addEvidenceFromRequest
void addEvidenceFromRequest(fiftyone.pipeline.core.data.FlowData flowData, javax.servlet.http.HttpServletRequest request)Collect all the evidence needed from the request and add to theFlowDatainstance.- Parameters:
flowData- to get theFlowData.getEvidenceKeyFilter()from and add the evidence torequest- theHttpServletRequestto get the evidence from
-
-