Added range type to subject-feature-definition/parameter
[groupbasedpolicy.git] / groupbasedpolicy / src / main / java / org / opendaylight / groupbasedpolicy / renderer / oc / L2DomainListener.java
1 /*
2  * Copyright (c) 2015 Juniper Networks, Inc.  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.oc;
10
11 import org.opendaylight.yang.gen.v1.urn.opendaylight.groupbasedpolicy.common.rev140421.L2FloodDomainId;
12
13
14 /**
15  * A listener to events related to L2 flood domain being added, removed or updated.
16  */
17 public interface L2DomainListener {
18     /**
19      * The L2 Flood Domain has been added or updated
20      * @param L2FloodDomainId L2 Flood domain id
21      */
22     public void L2DomainUpdated(L2FloodDomainId l2domainid);
23 }