src/java.xml.bind/share/classes/module-info.java
author aefimov
Fri, 09 Feb 2018 14:49:38 +0000
changeset 48837 a262b919311a
parent 47216 71c04702a3d5
permissions -rw-r--r--
6857903: SAXException.initCause() does not correctly set Exception Reviewed-by: rriggs
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
36523
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
     1
/*
43852
93a527059d8a 8174735: Update JAX-WS RI integration to latest version
aefimov
parents: 43752
diff changeset
     2
 * Copyright (c) 2014, 2017, Oracle and/or its affiliates. All rights reserved.
36523
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
     4
 *
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    10
 *
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    15
 * accompanied this code).
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    16
 *
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    20
 *
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    23
 * questions.
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    24
 */
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    25
40494
75b36e1c390a 8161965: Create initial javadoc description for modules
lancea
parents: 36523
diff changeset
    26
/**
75b36e1c390a 8161965: Create initial javadoc description for modules
lancea
parents: 36523
diff changeset
    27
 * Defines the Java Architecture for XML Binding (JAXB) API.
43752
3c68ef249093 8174697: Fix @since in module-info.java in dev/jaxws repo
mli
parents: 42398
diff changeset
    28
 *
45793
810c192c0338 8182776: Fix typos in module declarations
mr
parents: 45677
diff changeset
    29
 * <p> This module is upgradeable.
45677
e24f00fc6659 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45545
diff changeset
    30
 *
45545
4580a3cc0899 8181639: Add tool and services information to module summary
mchung
parents: 44446
diff changeset
    31
 * @uses javax.xml.bind.JAXBContextFactory
4580a3cc0899 8181639: Add tool and services information to module summary
mchung
parents: 44446
diff changeset
    32
 *
44446
5e5429f2b555 8173303: Add module-subgraph images to main platform documentation
mchung
parents: 44285
diff changeset
    33
 * @moduleGraph
43752
3c68ef249093 8174697: Fix @since in module-info.java in dev/jaxws repo
mli
parents: 42398
diff changeset
    34
 * @since 9
40494
75b36e1c390a 8161965: Create initial javadoc description for modules
lancea
parents: 36523
diff changeset
    35
 */
44285
8ee772e49cbb 8174728: Mark Java EE modules deprecated and for removal
lancea
parents: 43852
diff changeset
    36
@Deprecated(since="9", forRemoval=true)
36523
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    37
module java.xml.bind {
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    38
    requires java.compiler;
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    39
    requires java.desktop;
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    40
    requires java.logging;
43852
93a527059d8a 8174735: Update JAX-WS RI integration to latest version
aefimov
parents: 43752
diff changeset
    41
    requires jdk.unsupported;
36523
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    42
45677
e24f00fc6659 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45545
diff changeset
    43
    requires transitive java.activation;
e24f00fc6659 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45545
diff changeset
    44
    requires transitive java.xml;
36523
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    45
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    46
    exports javax.xml.bind;
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    47
    exports javax.xml.bind.annotation;
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    48
    exports javax.xml.bind.annotation.adapters;
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    49
    exports javax.xml.bind.attachment;
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    50
    exports javax.xml.bind.helpers;
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    51
    exports javax.xml.bind.util;
45677
e24f00fc6659 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45545
diff changeset
    52
36523
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    53
    exports com.sun.istack.internal to
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    54
        java.xml.ws,
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    55
        jdk.xml.bind,
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    56
        jdk.xml.ws;
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    57
    exports com.sun.istack.internal.localization to
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    58
        java.xml.ws,
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    59
        jdk.xml.ws;
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    60
    exports com.sun.istack.internal.logging to
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    61
        java.xml.ws,
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    62
        jdk.xml.ws;
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    63
    exports com.sun.xml.internal.bind to
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    64
        java.xml.ws,
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    65
        jdk.xml.bind,
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    66
        jdk.xml.ws;
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    67
    exports com.sun.xml.internal.bind.annotation to
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    68
        jdk.xml.bind;
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    69
    exports com.sun.xml.internal.bind.api to
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    70
        java.xml.ws,
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    71
        jdk.xml.bind;
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    72
    exports com.sun.xml.internal.bind.api.impl to
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    73
        java.xml.ws,
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    74
        jdk.xml.bind;
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    75
    exports com.sun.xml.internal.bind.marshaller to
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    76
        java.xml.ws,
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    77
        jdk.xml.bind,
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    78
        jdk.xml.ws;
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    79
    exports com.sun.xml.internal.bind.unmarshaller to
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    80
        java.xml.ws,
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    81
        jdk.xml.bind,
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    82
        jdk.xml.ws;
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    83
    exports com.sun.xml.internal.bind.util to
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    84
        java.xml.ws,
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    85
        jdk.xml.bind,
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    86
        jdk.xml.ws;
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    87
    exports com.sun.xml.internal.bind.v2 to
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    88
        java.xml.ws,
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    89
        jdk.xml.bind,
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    90
        jdk.xml.ws;
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    91
    exports com.sun.xml.internal.bind.v2.model.annotation to
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    92
        java.xml.ws,
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    93
        jdk.xml.bind,
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    94
        jdk.xml.ws;
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    95
    exports com.sun.xml.internal.bind.v2.model.core to
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    96
        jdk.xml.bind;
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    97
    exports com.sun.xml.internal.bind.v2.model.impl to
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    98
        jdk.xml.bind;
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
    99
    exports com.sun.xml.internal.bind.v2.model.nav to
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   100
        java.xml.ws,
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   101
        jdk.xml.bind,
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   102
        jdk.xml.ws;
42398
a05b6a285169 8169069: Module system implementation refresh (11/2016)
alanb
parents: 40494
diff changeset
   103
    opens com.sun.xml.internal.bind.v2.model.nav to
a05b6a285169 8169069: Module system implementation refresh (11/2016)
alanb
parents: 40494
diff changeset
   104
        java.xml.ws,
a05b6a285169 8169069: Module system implementation refresh (11/2016)
alanb
parents: 40494
diff changeset
   105
        jdk.xml.bind,
a05b6a285169 8169069: Module system implementation refresh (11/2016)
alanb
parents: 40494
diff changeset
   106
        jdk.xml.ws;
36523
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   107
    exports com.sun.xml.internal.bind.v2.model.runtime to
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   108
        java.xml.ws;
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   109
    exports com.sun.xml.internal.bind.v2.model.util to
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   110
        jdk.xml.bind;
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   111
    exports com.sun.xml.internal.bind.v2.runtime to
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   112
        java.xml.ws,
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   113
        jdk.xml.bind;
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   114
    exports com.sun.xml.internal.bind.v2.runtime.unmarshaller to
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   115
        java.xml.ws;
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   116
    exports com.sun.xml.internal.bind.v2.schemagen to
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   117
        java.xml.ws,
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   118
        jdk.xml.bind;
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   119
    exports com.sun.xml.internal.bind.v2.schemagen.episode to
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   120
        jdk.xml.bind;
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   121
    exports com.sun.xml.internal.bind.v2.schemagen.xmlschema to
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   122
        java.xml.ws;
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   123
    exports com.sun.xml.internal.bind.v2.util to
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   124
        jdk.xml.bind,
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   125
        jdk.xml.ws;
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   126
    exports com.sun.xml.internal.fastinfoset to
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   127
        java.xml.ws;
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   128
    exports com.sun.xml.internal.fastinfoset.stax to
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   129
        java.xml.ws;
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   130
    exports com.sun.xml.internal.fastinfoset.vocab to
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   131
        java.xml.ws;
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   132
    exports com.sun.xml.internal.org.jvnet.fastinfoset to
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   133
        java.xml.ws;
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   134
    exports com.sun.xml.internal.org.jvnet.mimepull to
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   135
        java.xml.ws;
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   136
    exports com.sun.xml.internal.org.jvnet.staxex to
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   137
        java.xml.ws;
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   138
    exports com.sun.xml.internal.org.jvnet.staxex.util to
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   139
        java.xml.ws;
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   140
    exports com.sun.xml.internal.txw2 to
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   141
        java.xml.ws,
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   142
        jdk.xml.bind,
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   143
        jdk.xml.ws;
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   144
    exports com.sun.xml.internal.txw2.annotation to
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   145
        java.xml.ws,
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   146
        jdk.xml.bind,
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   147
        jdk.xml.ws;
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   148
    exports com.sun.xml.internal.txw2.output to
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   149
        java.xml.ws,
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   150
        jdk.xml.bind,
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   151
        jdk.xml.ws;
45677
e24f00fc6659 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45545
diff changeset
   152
e24f00fc6659 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45545
diff changeset
   153
    uses javax.xml.bind.JAXBContextFactory;
e24f00fc6659 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45545
diff changeset
   154
36523
116e5d5cdade 8142968: Module System implementation
alanb
parents:
diff changeset
   155
}