Added range type to subject-feature-definition/parameter
[groupbasedpolicy.git] / groupbasedpolicy / src / main / java / org / opendaylight / groupbasedpolicy / renderer / opflex / EndpointListener.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.groupbasedpolicy.renderer.opflex;
10
11 import org.opendaylight.groupbasedpolicy.endpoint.EpKey;
12 import org.opendaylight.groupbasedpolicy.resolver.EgKey;
13
14 /**
15  * A listener to events related to endpoints being added, removed or updated.
16  * @author tbachman
17  */
18 public interface EndpointListener {
19     /**
20      * An endpoint for an endpoint group have been added, removed,
21      * or updated.
22      * @param egKey the key for the affected endpoint group
23      * @param epKey the key for the affected endpoint
24
25      */
26     public void groupEndpointUpdated(EgKey egKey, EpKey epKey);
27 }