Package org.onosproject.net.behaviour
Interface DomainIntentConfigurable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<DomainIntent>
getIntents()
Retrieves all installed intend network domain.DomainIntent
remove(DomainIntent intent)
Remove a intent in a domain.DomainIntent
sumbit(DomainIntent intent)
Submit a intent in a network domain.
-
-
-
Method Detail
-
sumbit
DomainIntent sumbit(DomainIntent intent)
Submit a intent in a network domain.- Parameters:
intent
- the domain intent to be added- Returns:
- the intent installed successfully
-
remove
DomainIntent remove(DomainIntent intent)
Remove a intent in a domain.- Parameters:
intent
- the domain intent to be removed.- Returns:
- the intent removed successfully
-
getIntents
Collection<DomainIntent> getIntents()
Retrieves all installed intend network domain.- Returns:
- a collection of intent installed
-
-