Introduced DomainSpecificRegistry service
[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 @Deprecated
12 public interface EpRendererAugmentationRegistry {
13
14     /**
15      * Registers renderer's endpoint augmentation.
16      * 
17      * @param epRendererAugmentation cannot be {@code null}
18      * @throws NullPointerException
19      */
20     void register(EpRendererAugmentation epRendererAugmentation);
21
22     /**
23      * Unregisters renderer's endpoint augmentation.
24      * 
25      * @param epRendererAugmentation cannot be {@code null}
26      * @throws NullPointerException
27      */
28     void unregister(EpRendererAugmentation epRendererAugmentation);
29 }