967f1f9bc4b49bbc1a1d2e54681bc2feb4a6d83e
[yangtools.git] / yang / yang-common / src / main / java / module-info.java
1 /*
2  * Copyright (c) 2019 PANTHEON.tech, s.r.o. 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 import org.opendaylight.yangtools.yang.common.CanonicalValueSupport;
9 import org.opendaylight.yangtools.yang.common.Decimal64;
10 import org.opendaylight.yangtools.yang.common.Uint16;
11 import org.opendaylight.yangtools.yang.common.Uint32;
12 import org.opendaylight.yangtools.yang.common.Uint64;
13 import org.opendaylight.yangtools.yang.common.Uint8;
14
15 /**
16  * Mapping of YANG language constructs to Java.
17  *
18  * @provides CanonicalValueSupport for core YANG types
19  */
20 module org.opendaylight.yangtools.yang.common {
21     exports org.opendaylight.yangtools.yang.common;
22
23     provides CanonicalValueSupport with
24         Decimal64.Support,
25         Uint8.Support,
26         Uint16.Support,
27         Uint32.Support,
28         Uint64.Support;
29
30     requires transitive org.opendaylight.yangtools.concepts;
31     requires org.slf4j;
32
33     // Annotations
34     requires static com.github.spotbugs.annotations;
35     requires static org.eclipse.jdt.annotation;
36     requires static org.checkerframework.checker.qual;
37 }