blob: 9a651aa6f75b95a6dbff304e5f1ea579e8fb2769 [file] [log] [blame]
Michele Santuari38dd82e2017-01-04 09:23:49 +01001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016-present Open Networking Foundation
Michele Santuari38dd82e2017-01-04 09:23:49 +01003 *
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.domain;
18
19/**
20 * Represents domain intent that does nothing on success or on error.
21 */
22public interface DomainIntentOperationsContext {
23
24 /**
25 * Invoked on successful execution of the domain intent.
26 *
27 * @param idops domain intent to execute
28 */
29 default void onSuccess(DomainIntentOperations idops) {
30 }
31
32 /**
33 * Invoked when error is encountered while executing the domain intent.
34 *
35 * @param idos domain intent to execute
36 */
37 default void onError(DomainIntentOperations idos) {
38 }
39}