be838a3f6b4a7d8bb3f4b7db73b47ee94fb9e3df
[groupbasedpolicy.git] / groupbasedpolicy / src / main / java / org / opendaylight / groupbasedpolicy / api / EpRendererAugmentationRegistry.java
1 /*
2  * Copyright (c) 2015 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.api;
10
11 public interface EpRendererAugmentationRegistry {
12
13     /**
14      * Registers renderer's endpoint augmentation.
15      * 
16      * @param epRendererAugmentation cannot be {@code null}
17      * @throws NullPointerException
18      */
19     void register(EpRendererAugmentation epRendererAugmentation);
20
21     /**
22      * Unregisters renderer's endpoint augmentation.
23      * 
24      * @param epRendererAugmentation cannot be {@code null}
25      * @throws NullPointerException
26      */
27     void unregister(EpRendererAugmentation epRendererAugmentation);
28 }