67b20dd1f209fafa9aa675af52792571105d4526
[mdsal.git] / yang / yang-binding / src / main / java / org / opendaylight / yangtools / yang / binding / DataContainer.java
1 /*\r
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.\r
3  *\r
4  * This program and the accompanying materials are made available under the\r
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
6  * and is available at http://www.eclipse.org/legal/epl-v10.html\r
7  */\r
8 package org.opendaylight.yangtools.yang.binding;\r
9 \r
10 /**\r
11  * Data Container - object contains structured data\r
12  * \r
13  * Marker interface which must be implmeneted by all interfaces\r
14  * generated for YANG:\r
15  * <ul>\r
16  * <li>Rpc Input\r
17  * <li>Output \r
18  * <li>Notification\r
19  * <li>Container\r
20  * <li>List\r
21  * <li>Case\r
22  * </ul>\r
23  * \r
24  *\r
25  */\r
26 public interface DataContainer {\r
27 \r
28     public Class<? extends DataContainer> getImplementedInterface();\r
29 }\r