Package org.onosproject.net.intent
Interface IntentInstallCoordinator
-
public interface IntentInstallCoordinator
Contact point for installers to report progress of intent installation and to update intent-specific status and context appropriately.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
intentInstallFailed(IntentOperationContext context)
Handles failed state for an Intent operation context.void
intentInstallSuccess(IntentOperationContext context)
Handles success state for an Intent operation context.
-
-
-
Method Detail
-
intentInstallSuccess
void intentInstallSuccess(IntentOperationContext context)
Handles success state for an Intent operation context.- Parameters:
context
- the Intent operation context
-
intentInstallFailed
void intentInstallFailed(IntentOperationContext context)
Handles failed state for an Intent operation context.- Parameters:
context
- the Intent operation context
-
-