Class LinkTypeConstraint
- java.lang.Object
-
- org.onosproject.net.intent.constraint.BooleanConstraint
-
- org.onosproject.net.intent.constraint.LinkTypeConstraint
-
- All Implemented Interfaces:
Constraint
@Beta public class LinkTypeConstraint extends BooleanConstraint
Constraint that evaluates links based on their type.
-
-
Constructor Summary
Constructors Constructor Description LinkTypeConstraint(boolean inclusive, Link.Type... types)
Creates a new constraint for requesting connectivity using or avoiding the specified link types.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
int
hashCode()
boolean
isInclusive()
Indicates if the constraint is inclusive or exclusive.boolean
isValid(Link link, ResourceContext context)
Returns true if the specified link satisfies the constraint.String
toString()
Set<Link.Type>
types()
Returns the set of link types.-
Methods inherited from class org.onosproject.net.intent.constraint.BooleanConstraint
cost, validate
-
-
-
-
Constructor Detail
-
LinkTypeConstraint
public LinkTypeConstraint(boolean inclusive, Link.Type... types)
Creates a new constraint for requesting connectivity using or avoiding the specified link types.- Parameters:
inclusive
- indicates whether the given link types are to be permitted or avoidedtypes
- link types
-
-
Method Detail
-
isValid
public boolean isValid(Link link, ResourceContext context)
Description copied from class:BooleanConstraint
Returns true if the specified link satisfies the constraint.- Specified by:
isValid
in classBooleanConstraint
- Parameters:
link
- link to be validatedcontext
- resource context for checking available resources- Returns:
- true if link is viable
-
isInclusive
public boolean isInclusive()
Indicates if the constraint is inclusive or exclusive.- Returns:
- true if inclusive
-
-