Fix checkstyle in mdsal-binding-dom-codec
[mdsal.git] / binding / mdsal-binding-dom-codec / src / main / java / org / opendaylight / mdsal / binding / dom / codec / util / AugmentationReader.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 package org.opendaylight.mdsal.binding.dom.codec.util;
9
10 import java.util.Map;
11 import org.opendaylight.yangtools.yang.binding.Augmentation;
12
13 /**
14  * Interface which sould be implemented by proxy {@link java.lang.reflect.InvocationHandler} to obtain augmentations
15  * from proxy implementations of {@link org.opendaylight.yangtools.yang.binding.Augmentable} object.
16  *
17  * <p>
18  * If implemented proxy does not implement this interface, its augmentations are not properly serialized / deserialized.
19  */
20 public interface AugmentationReader {
21
22     Map<Class<? extends Augmentation<?>>, Augmentation<?>> getAugmentations(Object obj);
23 }