Package org.onosproject.net.intent
Class HostToHostIntent.Builder
- java.lang.Object
-
- org.onosproject.net.intent.Intent.Builder
-
- org.onosproject.net.intent.ConnectivityIntent.Builder
-
- org.onosproject.net.intent.HostToHostIntent.Builder
-
- Enclosing class:
- HostToHostIntent
public static final class HostToHostIntent.Builder extends ConnectivityIntent.Builder
Builder of a host to host intent.
-
-
Field Summary
-
Fields inherited from class org.onosproject.net.intent.ConnectivityIntent.Builder
constraints, selector, treatment
-
Fields inherited from class org.onosproject.net.intent.Intent.Builder
appId, key, priority, resourceGroup, resources
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description HostToHostIntent.BuilderappId(ApplicationId appId)Sets the application id for the intent that will be built.HostToHostIntentbuild()Builds a host to host intent from the accumulated parameters.HostToHostIntent.Builderconstraints(List<Constraint> constraints)Sets the constraints for the intent that will be built.HostToHostIntent.Builderkey(Key key)Sets the key for the intent that will be built.HostToHostIntent.Builderone(HostId one)Sets the first host of the intent that will be built.HostToHostIntent.Builderpriority(int priority)Sets the priority for the intent that will be built.HostToHostIntent.BuilderresourceGroup(ResourceGroup resourceGroup)Sets the resource group for this intent.HostToHostIntent.Builderselector(TrafficSelector selector)Sets the traffic selector for the intent that will be built.HostToHostIntent.Buildertreatment(TrafficTreatment treatment)Sets the traffic treatment for the intent that will be built.HostToHostIntent.Buildertwo(HostId two)Sets the second host of the intent that will be built.-
Methods inherited from class org.onosproject.net.intent.Intent.Builder
resources
-
-
-
-
Method Detail
-
appId
public HostToHostIntent.Builder appId(ApplicationId appId)
Description copied from class:Intent.BuilderSets the application id for the intent that will be built.- Overrides:
appIdin classConnectivityIntent.Builder- Parameters:
appId- application id to use for built intent- Returns:
- this builder
-
key
public HostToHostIntent.Builder key(Key key)
Description copied from class:Intent.BuilderSets the key for the intent that will be built.- Overrides:
keyin classConnectivityIntent.Builder- Parameters:
key- key to use for built intent- Returns:
- this builder
-
selector
public HostToHostIntent.Builder selector(TrafficSelector selector)
Description copied from class:ConnectivityIntent.BuilderSets the traffic selector for the intent that will be built.- Overrides:
selectorin classConnectivityIntent.Builder- Parameters:
selector- selector to use for built intent- Returns:
- this builder
-
treatment
public HostToHostIntent.Builder treatment(TrafficTreatment treatment)
Description copied from class:ConnectivityIntent.BuilderSets the traffic treatment for the intent that will be built.- Overrides:
treatmentin classConnectivityIntent.Builder- Parameters:
treatment- treatment to use for built intent- Returns:
- this builder
-
constraints
public HostToHostIntent.Builder constraints(List<Constraint> constraints)
Description copied from class:ConnectivityIntent.BuilderSets the constraints for the intent that will be built.- Overrides:
constraintsin classConnectivityIntent.Builder- Parameters:
constraints- constraints to use for built intent- Returns:
- this builder
-
priority
public HostToHostIntent.Builder priority(int priority)
Description copied from class:Intent.BuilderSets the priority for the intent that will be built.- Overrides:
priorityin classConnectivityIntent.Builder- Parameters:
priority- priority to use for built intent- Returns:
- this builder
-
resourceGroup
public HostToHostIntent.Builder resourceGroup(ResourceGroup resourceGroup)
Description copied from class:Intent.BuilderSets the resource group for this intent.- Overrides:
resourceGroupin classIntent.Builder- Parameters:
resourceGroup- the resource group- Returns:
- this builder
-
one
public HostToHostIntent.Builder one(HostId one)
Sets the first host of the intent that will be built.- Parameters:
one- first host- Returns:
- this builder
-
two
public HostToHostIntent.Builder two(HostId two)
Sets the second host of the intent that will be built.- Parameters:
two- second host- Returns:
- this builder
-
build
public HostToHostIntent build()
Builds a host to host intent from the accumulated parameters.- Returns:
- point to point intent
-
-