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