Interface PortPairGroupService
-
- All Known Implementing Classes:
PortPairGroupServiceImpl
public interface PortPairGroupServicePort Pair Group Service- Author:
- Dmitry Gerenrot
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PortPairGroupcreate(PortPairGroup portPairGroup)Create a port pair groupActionResponsedelete(String portPairGroupId)Delete a port pair groupPortPairGroupget(String id)Get a port pair group by id.List<? extends PortPairGroup>list()Lists port pair groups for port chainsPortPairGroupupdate(String portPairGroupId, PortPairGroup portPairGroup)Update a port pair group with the given id to match the given update object
-
-
-
Method Detail
-
list
List<? extends PortPairGroup> list()
Lists port pair groups for port chains- Returns:
- the list of port pair groups
-
get
PortPairGroup get(String id)
Get a port pair group by id.- Returns:
- PortPairGroup
-
update
PortPairGroup update(String portPairGroupId, PortPairGroup portPairGroup)
Update a port pair group with the given id to match the given update object- Returns:
- PortPairGroup
-
create
PortPairGroup create(PortPairGroup portPairGroup)
Create a port pair group- Returns:
- portPairGroup : object actually created
-
delete
ActionResponse delete(String portPairGroupId)
Delete a port pair group- Returns:
- the action response
-
-