Interface FlowClassifierService
-
- All Superinterfaces:
RestService
- All Known Implementing Classes:
FlowClassifierServiceImpl
public interface FlowClassifierService extends RestService
Flow Classifier Service- Author:
- Dmitry Gerenrot
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FlowClassifiercreate(FlowClassifier flowClassifier)Create a flow classifierActionResponsedelete(String flowClassifierId)Delete a flow classifierFlowClassifierget(String flowClassifierId)Get a flow classifier by id.List<? extends FlowClassifier>list()Lists flow classifiers for port chainsFlowClassifierupdate(String flowClassifierId, FlowClassifier flowClassifier)Update a flow classifier with the given id to match the given update object
-
-
-
Method Detail
-
list
List<? extends FlowClassifier> list()
Lists flow classifiers for port chains- Returns:
- the list of flow classifiers
-
get
FlowClassifier get(String flowClassifierId)
Get a flow classifier by id.- Returns:
- FlowClassifier
-
update
FlowClassifier update(String flowClassifierId, FlowClassifier flowClassifier)
Update a flow classifier with the given id to match the given update object- Returns:
- flowClassifier : object updated
-
create
FlowClassifier create(FlowClassifier flowClassifier)
Create a flow classifier- Returns:
- flowClassifier : object actually created
-
delete
ActionResponse delete(String flowClassifierId)
Delete a flow classifier- Returns:
- the action response
-
-