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