Interface PortChainService
-
- All Superinterfaces:
RestService
- All Known Implementing Classes:
PortChainServiceImpl
public interface PortChainService extends RestService
Port Chain Service- Author:
- Dmitry Gerenrot
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PortChaincreate(PortChain portChain)Create a port chainActionResponsedelete(String portChainId)Delete a port chainPortChainget(String portChainId)Get a port chain by id.List<? extends PortChain>list()Lists port chains.PortChainupdate(String portChainId, PortChain portChain)Update a port chain with the given id to match the given update object
-
-
-
Method Detail
-
update
PortChain update(String portChainId, PortChain portChain)
Update a port chain with the given id to match the given update object- Returns:
- PortChain
-
create
PortChain create(PortChain portChain)
Create a port chain- Returns:
- portChain : object actually created
-
delete
ActionResponse delete(String portChainId)
Delete a port chain- Returns:
- the action response
-
-