Package fiftyone.pipeline.web.services
Interface FlowDataProviderCore
-
- All Known Implementing Classes:
FlowDataProviderCore.Default
public interface FlowDataProviderCoreProvider to be injected into controllers to get the pre-processedFlowDatafor the request being serviced.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classFlowDataProviderCore.DefaultDefault implementation of theFlowDataProviderCoreservice.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description fiftyone.pipeline.core.data.FlowDatagetFlowData(javax.servlet.http.HttpServletRequest request)Get theFlowDataassociated with the HTTP request.
-
-
-
Method Detail
-
getFlowData
fiftyone.pipeline.core.data.FlowData getFlowData(javax.servlet.http.HttpServletRequest request)
Get theFlowDataassociated with the HTTP request.- Parameters:
request- theHttpServletRequestto get theFlowDatafrom- Returns:
- a
FlowDataobject containing the data values that have been populated by the configured Pipeline
-
-