blob: 97156a62a7bbb1d56478b83613b4a57aac0b3c7c [file] [log] [blame]
Yi Tsengc927a062017-05-02 15:02:37 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2017-present Open Networking Foundation
Yi Tsengc927a062017-05-02 15:02:37 -07003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package org.onosproject.net.intent;
18
19/**
20 * Contact point for installers to report progress of intent installation and to
21 * update intent-specific status and context appropriately.
22 */
23public interface IntentInstallCoordinator {
24 /**
25 * Handles success state for an Intent operation context.
26 *
27 * @param context the Intent operation context
28 */
29 void intentInstallSuccess(IntentOperationContext context);
30
31 /**
32 * Handles failed state for an Intent operation context.
33 *
34 * @param context the Intent operation context
35 */
36 void intentInstallFailed(IntentOperationContext context);
37}