Class Connection
- java.lang.Object
-
- org.neotropic.kuwaiba.modules.optional.connectivityman.actions.Connection
-
public class Connection extends Object
A connection is a set of the connection type, connection source connection target, and action to execute.- Author:
- Johny Andres Ortega Ruiz <johny.ortega@kuwaiba.org>
-
-
Constructor Summary
Constructors Constructor Description Connection()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AbstractConnectivityAction
getAction()
Integer
getId()
PortSelector
getSource()
PortSelector
getTarget()
AbstractConnectivityActionBuilder
getType()
void
setAction(AbstractConnectivityAction action)
void
setId(Integer id)
void
setSource(PortSelector source)
void
setTarget(PortSelector target)
void
setType(AbstractConnectivityActionBuilder type)
-
-
-
Method Detail
-
getId
public Integer getId()
-
setId
public void setId(Integer id)
-
getType
public AbstractConnectivityActionBuilder getType()
-
setType
public void setType(AbstractConnectivityActionBuilder type)
-
getSource
public PortSelector getSource()
-
setSource
public void setSource(PortSelector source)
-
getTarget
public PortSelector getTarget()
-
setTarget
public void setTarget(PortSelector target)
-
getAction
public AbstractConnectivityAction getAction()
-
setAction
public void setAction(AbstractConnectivityAction action)
-
-