Package org.onosproject.net.behaviour
Interface DomainIntentConfigurable
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Collection<DomainIntent>getIntents()Retrieves all installed intend network domain.DomainIntentremove(DomainIntent intent)Remove a intent in a domain.DomainIntentsumbit(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
java.util.Collection<DomainIntent> getIntents()
Retrieves all installed intend network domain.- Returns:
 - a collection of intent installed
 
 
 - 
 
 -