blob: 94ea39a101c12ba1c9f5ca8e5d526a8ce6b4f6c3 [file] [log] [blame]
Brian O'Connor69d6ac72015-05-29 16:24:06 -07001/*
2 * Copyright 2015 Open Networking Laboratory
3 *
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 */
16package org.onosproject.net.intent;
17
Brian O'Connor9476fa12015-06-25 15:17:17 -040018import com.google.common.annotations.Beta;
Brian O'Connor69d6ac72015-05-29 16:24:06 -070019import org.onosproject.event.EventListener;
20
21/**
22 * Entity capable of receiving device partition-related events.
23 */
Brian O'Connor9476fa12015-06-25 15:17:17 -040024@Beta
Madan Jampani1c965102016-01-13 14:34:16 -080025public interface IntentPartitionEventListener extends EventListener<IntentPartitionEvent> {
Brian O'Connor69d6ac72015-05-29 16:24:06 -070026}