blob: 6b9e35dd01704f223a54e32b0c881791b3405035 [file] [log] [blame]
Thomas Vachuska83e090e2014-10-22 14:25:35 -07001/*
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07002 * Copyright 2014 Open Networking Laboratory
Thomas Vachuska83e090e2014-10-22 14:25:35 -07003 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07004 * 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
Thomas Vachuska83e090e2014-10-22 14:25:35 -07007 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07008 * 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.
Thomas Vachuska83e090e2014-10-22 14:25:35 -070015 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.net.intent;
Brian O'Connorb876bf12014-10-02 14:59:37 -070017
Brian O'Connorabafb502014-12-02 22:26:20 -080018import org.onosproject.net.flow.FlowRuleBatchOperation;
Brian O'Connorcb900f42014-10-07 21:55:33 -070019
Brian O'Connorfa81eae2014-10-30 13:20:05 -070020import java.util.List;
21
Brian O'Connorb876bf12014-10-02 14:59:37 -070022/**
23 * Abstraction of entity capable of installing intents to the environment.
24 */
Thomas Vachuskac96058a2014-10-20 23:00:16 -070025public interface IntentInstaller<T extends Intent> {
Brian O'Connorb876bf12014-10-02 14:59:37 -070026 /**
27 * Installs the specified intent to the environment.
28 *
Brian O'Connorfa81eae2014-10-30 13:20:05 -070029 * @param intent intent to be installed
30 * @return flow rule operations to complete install
Brian O'Connorb876bf12014-10-02 14:59:37 -070031 * @throws IntentException if issues are encountered while installing the intent
32 */
Brian O'Connorf2dbde52014-10-10 16:20:24 -070033 List<FlowRuleBatchOperation> install(T intent);
Brian O'Connorb876bf12014-10-02 14:59:37 -070034
35 /**
36 * Uninstalls the specified intent from the environment.
37 *
Brian O'Connorfa81eae2014-10-30 13:20:05 -070038 * @param intent intent to be uninstalled
39 * @return flow rule operations to complete uninstall
Brian O'Connorb876bf12014-10-02 14:59:37 -070040 * @throws IntentException if issues are encountered while uninstalling the intent
41 */
Brian O'Connorf2dbde52014-10-10 16:20:24 -070042 List<FlowRuleBatchOperation> uninstall(T intent);
Brian O'Connorfa81eae2014-10-30 13:20:05 -070043
44 /**
45 * Replaces the specified intent with a new one in the environment.
46 *
47 * @param oldIntent intent to be removed
48 * @param newIntent intent to be installed
49 * @return flow rule operations to complete the replace
50 * @throws IntentException if issues are encountered while uninstalling the intent
51 */
52 List<FlowRuleBatchOperation> replace(T oldIntent, T newIntent);
53
Brian O'Connorb876bf12014-10-02 14:59:37 -070054}