blob: 3c1c91ad29f42c2130b7789b67e9493b179ffea4 [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'Connorb876bf12014-10-02 14:59:37 -070018
Thomas Vachuska10d4abc2014-10-21 12:47:26 -070019import java.util.List;
20
Brian O'Connorb876bf12014-10-02 14:59:37 -070021/**
22 * Service for application submitting or withdrawing their intents.
23 */
24public interface IntentService {
25 /**
26 * Submits an intent into the system.
Thomas Vachuska4b420772014-10-30 16:46:17 -070027 * <p>
Brian O'Connor66630c82014-10-02 21:08:19 -070028 * This is an asynchronous request meaning that any compiling or
29 * installation activities may be done at later time.
Thomas Vachuska4b420772014-10-30 16:46:17 -070030 * </p>
Brian O'Connorb876bf12014-10-02 14:59:37 -070031 * @param intent intent to be submitted
32 */
33 void submit(Intent intent);
34
35 /**
36 * Withdraws an intent from the system.
Thomas Vachuska4b420772014-10-30 16:46:17 -070037 * <p>
Brian O'Connor66630c82014-10-02 21:08:19 -070038 * This is an asynchronous request meaning that the environment may be
39 * affected at later time.
Thomas Vachuska4b420772014-10-30 16:46:17 -070040 * </p>
Brian O'Connorb876bf12014-10-02 14:59:37 -070041 * @param intent intent to be withdrawn
42 */
43 void withdraw(Intent intent);
44
Thomas Vachuska83e090e2014-10-22 14:25:35 -070045 /**
46 * Replaces the specified intent with a new one.
47 *
48 * @param oldIntentId identifier of the old intent being replaced
49 * @param newIntent new intent replacing the old one
50 */
Brian O'Connorea4d7d12015-01-28 16:37:46 -080051 @Deprecated
Thomas Vachuska83e090e2014-10-22 14:25:35 -070052 void replace(IntentId oldIntentId, Intent newIntent);
Thomas Vachuska1fb982f2014-10-22 14:09:17 -070053
Brian O'Connorb876bf12014-10-02 14:59:37 -070054 /**
55 * Submits a batch of submit &amp; withdraw operations. Such a batch is
56 * assumed to be processed together.
Thomas Vachuska4b420772014-10-30 16:46:17 -070057 * <p>
Brian O'Connor66630c82014-10-02 21:08:19 -070058 * This is an asynchronous request meaning that the environment may be
59 * affected at later time.
Thomas Vachuska4b420772014-10-30 16:46:17 -070060 * </p>
Brian O'Connorb876bf12014-10-02 14:59:37 -070061 * @param operations batch of intent operations
62 */
Brian O'Connorea4d7d12015-01-28 16:37:46 -080063 @Deprecated
Brian O'Connorfa81eae2014-10-30 13:20:05 -070064 void execute(IntentOperations operations);
Brian O'Connorb876bf12014-10-02 14:59:37 -070065
66 /**
Brian O'Connor66630c82014-10-02 21:08:19 -070067 * Returns an iterable of intents currently in the system.
Brian O'Connorb876bf12014-10-02 14:59:37 -070068 *
69 * @return set of intents
70 */
Brian O'Connor66630c82014-10-02 21:08:19 -070071 Iterable<Intent> getIntents();
72
73 /**
74 * Returns the number of intents currently in the system.
75 *
76 * @return number of intents
77 */
78 long getIntentCount();
Brian O'Connorb876bf12014-10-02 14:59:37 -070079
80 /**
81 * Retrieves the intent specified by its identifier.
82 *
83 * @param id intent identifier
84 * @return the intent or null if one with the given identifier is not found
85 */
86 Intent getIntent(IntentId id);
87
88 /**
89 * Retrieves the state of an intent by its identifier.
90 *
91 * @param id intent identifier
Brian O'Connor66630c82014-10-02 21:08:19 -070092 * @return the intent state or null if one with the given identifier is not
toma1d16b62014-10-02 23:45:11 -070093 * found
Brian O'Connorb876bf12014-10-02 14:59:37 -070094 */
95 IntentState getIntentState(IntentId id);
96
97 /**
Thomas Vachuska10d4abc2014-10-21 12:47:26 -070098 * Returns the list of the installable events associated with the specified
99 * top-level intent.
100 *
101 * @param intentId top-level intent identifier
102 * @return compiled installable intents
103 */
104 List<Intent> getInstallableIntents(IntentId intentId);
105
106 /**
Brian O'Connorb876bf12014-10-02 14:59:37 -0700107 * Adds the specified listener for intent events.
108 *
109 * @param listener listener to be added
110 */
Brian O'Connor66630c82014-10-02 21:08:19 -0700111 void addListener(IntentListener listener);
Brian O'Connorb876bf12014-10-02 14:59:37 -0700112
113 /**
114 * Removes the specified listener for intent events.
115 *
116 * @param listener listener to be removed
117 */
Brian O'Connor66630c82014-10-02 21:08:19 -0700118 void removeListener(IntentListener listener);
Brian O'Connorb876bf12014-10-02 14:59:37 -0700119}