Modified: 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Configurable.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Configurable.html?rev=1866579&r1=1866578&r2=1866579&view=diff
==============================================================================
--- 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Configurable.html 
(original)
+++ 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Configurable.html 
Sat Sep  7 22:10:03 2019
@@ -2,9 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Tue Jul 02 15:47:44 UTC 2019 -->
 <title>Configurable</title>
-<meta name="date" content="2019-07-02">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -109,19 +107,19 @@ var activeTableTab = "activeTableTab";
 <hr>
 <br>
 <pre>public interface <span class="typeNameLabel">Configurable&lt;C extends 
Configurable&gt;</span></pre>
-<div class="block">Represents a client or server-side configurable context in 
JAX-RS.
+<div class="block">Represents a client or server-side configurable context.
 
- A configurable context can be used to define the JAX-RS components as well as
+ A configurable context can be used to define the components as well as
  additional meta-data that should be used in the scope of the configured 
context.
  The modification of the context typically involves setting properties or 
registering
- custom JAX-RS components, such as providers and/or features.
+ custom components, such as providers and/or features.
  All modifications of a <code>Configurable</code> context are reflected in the 
associated
  <a href="../../../../javax/ws/rs/core/Configuration.html" title="interface in 
javax.ws.rs.core"><code>Configuration</code></a> state which is exposed via <a 
href="../../../../javax/ws/rs/core/Configurable.html#getConfiguration--"><code>getConfiguration()</code></a>
 method.
  <p>
- A configurable context can be either indirectly associated with a particular 
JAX-RS component
+ A configurable context can be either indirectly associated with a particular 
component
  (such as application or resource method configurable context passed to a <a 
href="../../../../javax/ws/rs/core/Feature.html" title="interface in 
javax.ws.rs.core"><code>Feature</code></a>
  or <a href="../../../../javax/ws/rs/container/DynamicFeature.html" 
title="interface in javax.ws.rs.container"><code>DynamicFeature</code></a> 
meta-providers) or can be directly represented
- by a concrete JAX-RS component implementing the <code>Configurable</code> 
interface
+ by a concrete component implementing the <code>Configurable</code> interface
  (such as <a href="../../../../javax/ws/rs/client/Client.html" 
title="interface in javax.ws.rs.client"><code>Client</code></a> or <a 
href="../../../../javax/ws/rs/client/WebTarget.html" title="interface in 
javax.ws.rs.client"><code>WebTarget</code></a>).
  As such, the exact scope of a configuration context is typically determined 
by a use case
  scenario in which the context is accessed.
@@ -133,16 +131,16 @@ var activeTableTab = "activeTableTab";
  properties is available via the underlying <code>Configuration</code> object. 
An existing property
  can be removed by assigning a <code>null</code> value to the property.
  </p>
- <h3>Registering JAX-RS components.</h3>
+ <h3>Registering components.</h3>
  <p>
- Registered custom JAX-RS component classes and instances are important part 
of the contextual
+ Registered custom component classes and instances are important part of the 
contextual
  configuration information as these are the main factors that determine the 
capabilities of
  a configured runtime.
  Implementations SHOULD warn about and ignore registrations that do not 
conform to the requirements
- of supported JAX-RS components in a given configurable context.
+ of supported components in a given configurable context.
  </p>
  <p>
- In most cases, when registering a JAX-RS component, the simplest form of 
methods
+ In most cases, when registering a component, the simplest form of methods
  (<a 
href="../../../../javax/ws/rs/core/Configurable.html#register-java.lang.Class-"><code>register(Class)</code></a>
 or <a 
href="../../../../javax/ws/rs/core/Configurable.html#register-java.lang.Object-"><code>register(Object)</code></a>)
 of the available registration API
  is sufficient.
  </p>
@@ -154,9 +152,9 @@ var activeTableTab = "activeTableTab";
  </pre>
  </p>
  <p>
- In some situations a JAX-RS component class or instance may implement multiple
- provider contracts recognized by a JAX-RS implementation (e.g. filter, 
interceptor or entity provider).
- By default, the JAX-RS implementation MUST register the new component class 
or instance as
+ In some situations a component class or instance may implement multiple
+ provider contracts recognized by an implementation (e.g. filter, interceptor 
or entity provider).
+ By default, the implementation MUST register the new component class or 
instance as
  a provider for all the recognized provider contracts implemented by the 
component class.
  </p>
  <p>
@@ -174,10 +172,10 @@ var activeTableTab = "activeTableTab";
  </pre>
  </p>
  <p>
- There are however situations when the default registration of a JAX-RS 
component to all the
+ There are however situations when the default registration of a component to 
all the
  recognized provider contracts is not desirable. In such cases users may use 
other versions of the
  <code>register(...)</code> method to explicitly specify the collection of the 
provider contracts
- for which the JAX-RS component should be registered and/or the priority of 
each registered
+ for which the component should be registered and/or the priority of each 
registered
  provider contract.
  </p>
  <p>
@@ -202,7 +200,7 @@ var activeTableTab = "activeTableTab";
  </pre>
  </p>
  <p>
- As a general rule, for each JAX-RS component class there can be at most one 
registration
+ As a general rule, for each component class there can be at most one 
registration
  &mdash; class-based or instance-based &mdash; configured at any given moment. 
Implementations
  MUST reject any attempts to configure a new registration for a provider class 
that has been
  already registered in the given configurable context earlier. Implementations 
SHOULD also raise
@@ -261,7 +259,7 @@ var activeTableTab = "activeTableTab";
 <tr id="i2" class="altColor">
 <td class="colFirst"><code><a 
href="../../../../javax/ws/rs/core/Configurable.html" title="type parameter in 
Configurable">C</a></code></td>
 <td class="colLast"><code><span class="memberNameLink"><a 
href="../../../../javax/ws/rs/core/Configurable.html#register-java.lang.Class-">register</a></span>(java.lang.Class&lt;?&gt;&nbsp;componentClass)</code>
-<div class="block">Register a class of a custom JAX-RS component (such as an 
extension provider or
+<div class="block">Register a class of a custom component (such as an 
extension provider or
  a <a href="../../../../javax/ws/rs/core/Feature.html" title="interface in 
javax.ws.rs.core"><code>feature</code></a> meta-provider) to be instantiated
  and used in the scope of this configurable context.</div>
 </td>
@@ -270,7 +268,7 @@ var activeTableTab = "activeTableTab";
 <td class="colFirst"><code><a 
href="../../../../javax/ws/rs/core/Configurable.html" title="type parameter in 
Configurable">C</a></code></td>
 <td class="colLast"><code><span class="memberNameLink"><a 
href="../../../../javax/ws/rs/core/Configurable.html#register-java.lang.Class-java.lang.Class...-">register</a></span>(java.lang.Class&lt;?&gt;&nbsp;componentClass,
         java.lang.Class&lt;?&gt;...&nbsp;contracts)</code>
-<div class="block">Register a class of a custom JAX-RS component (such as an 
extension provider or
+<div class="block">Register a class of a custom component (such as an 
extension provider or
  a <a href="../../../../javax/ws/rs/core/Feature.html" title="interface in 
javax.ws.rs.core"><code>feature</code></a> meta-provider) to be instantiated
  and used in the scope of this configurable context.</div>
 </td>
@@ -279,7 +277,7 @@ var activeTableTab = "activeTableTab";
 <td class="colFirst"><code><a 
href="../../../../javax/ws/rs/core/Configurable.html" title="type parameter in 
Configurable">C</a></code></td>
 <td class="colLast"><code><span class="memberNameLink"><a 
href="../../../../javax/ws/rs/core/Configurable.html#register-java.lang.Class-int-">register</a></span>(java.lang.Class&lt;?&gt;&nbsp;componentClass,
         int&nbsp;priority)</code>
-<div class="block">Register a class of a custom JAX-RS component (such as an 
extension provider or
+<div class="block">Register a class of a custom component (such as an 
extension provider or
  a <a href="../../../../javax/ws/rs/core/Feature.html" title="interface in 
javax.ws.rs.core"><code>feature</code></a> meta-provider) to be instantiated
  and used in the scope of this configurable context.</div>
 </td>
@@ -288,7 +286,7 @@ var activeTableTab = "activeTableTab";
 <td class="colFirst"><code><a 
href="../../../../javax/ws/rs/core/Configurable.html" title="type parameter in 
Configurable">C</a></code></td>
 <td class="colLast"><code><span class="memberNameLink"><a 
href="../../../../javax/ws/rs/core/Configurable.html#register-java.lang.Class-java.util.Map-">register</a></span>(java.lang.Class&lt;?&gt;&nbsp;componentClass,
         
java.util.Map&lt;java.lang.Class&lt;?&gt;,java.lang.Integer&gt;&nbsp;contracts)</code>
-<div class="block">Register a class of a custom JAX-RS component (such as an 
extension provider or
+<div class="block">Register a class of a custom component (such as an 
extension provider or
  a <a href="../../../../javax/ws/rs/core/Feature.html" title="interface in 
javax.ws.rs.core"><code>feature</code></a> meta-provider) to be instantiated
  and used in the scope of this configurable context.</div>
 </td>
@@ -296,7 +294,7 @@ var activeTableTab = "activeTableTab";
 <tr id="i6" class="altColor">
 <td class="colFirst"><code><a 
href="../../../../javax/ws/rs/core/Configurable.html" title="type parameter in 
Configurable">C</a></code></td>
 <td class="colLast"><code><span class="memberNameLink"><a 
href="../../../../javax/ws/rs/core/Configurable.html#register-java.lang.Object-">register</a></span>(java.lang.Object&nbsp;component)</code>
-<div class="block">Register an instance of a custom JAX-RS component (such as 
an extension provider or
+<div class="block">Register an instance of a custom component (such as an 
extension provider or
  a <a href="../../../../javax/ws/rs/core/Feature.html" title="interface in 
javax.ws.rs.core"><code>feature</code></a> meta-provider) to be instantiated
  and used in the scope of this configurable context.</div>
 </td>
@@ -305,7 +303,7 @@ var activeTableTab = "activeTableTab";
 <td class="colFirst"><code><a 
href="../../../../javax/ws/rs/core/Configurable.html" title="type parameter in 
Configurable">C</a></code></td>
 <td class="colLast"><code><span class="memberNameLink"><a 
href="../../../../javax/ws/rs/core/Configurable.html#register-java.lang.Object-java.lang.Class...-">register</a></span>(java.lang.Object&nbsp;component,
         java.lang.Class&lt;?&gt;...&nbsp;contracts)</code>
-<div class="block">Register an instance of a custom JAX-RS component (such as 
an extension provider or
+<div class="block">Register an instance of a custom component (such as an 
extension provider or
  a <a href="../../../../javax/ws/rs/core/Feature.html" title="interface in 
javax.ws.rs.core"><code>feature</code></a> meta-provider) to be instantiated
  and used in the scope of this configurable context.</div>
 </td>
@@ -314,7 +312,7 @@ var activeTableTab = "activeTableTab";
 <td class="colFirst"><code><a 
href="../../../../javax/ws/rs/core/Configurable.html" title="type parameter in 
Configurable">C</a></code></td>
 <td class="colLast"><code><span class="memberNameLink"><a 
href="../../../../javax/ws/rs/core/Configurable.html#register-java.lang.Object-int-">register</a></span>(java.lang.Object&nbsp;component,
         int&nbsp;priority)</code>
-<div class="block">Register an instance of a custom JAX-RS component (such as 
an extension provider or
+<div class="block">Register an instance of a custom component (such as an 
extension provider or
  a <a href="../../../../javax/ws/rs/core/Feature.html" title="interface in 
javax.ws.rs.core"><code>feature</code></a> meta-provider) to be instantiated
  and used in the scope of this configurable context.</div>
 </td>
@@ -323,7 +321,7 @@ var activeTableTab = "activeTableTab";
 <td class="colFirst"><code><a 
href="../../../../javax/ws/rs/core/Configurable.html" title="type parameter in 
Configurable">C</a></code></td>
 <td class="colLast"><code><span class="memberNameLink"><a 
href="../../../../javax/ws/rs/core/Configurable.html#register-java.lang.Object-java.util.Map-">register</a></span>(java.lang.Object&nbsp;component,
         
java.util.Map&lt;java.lang.Class&lt;?&gt;,java.lang.Integer&gt;&nbsp;contracts)</code>
-<div class="block">Register an instance of a custom JAX-RS component (such as 
an extension provider or
+<div class="block">Register an instance of a custom component (such as an 
extension provider or
  a <a href="../../../../javax/ws/rs/core/Feature.html" title="interface in 
javax.ws.rs.core"><code>feature</code></a> meta-provider) to be instantiated
  and used in the scope of this configurable context.</div>
 </td>
@@ -392,29 +390,29 @@ var activeTableTab = "activeTableTab";
 <li class="blockList">
 <h4>register</h4>
 <pre><a href="../../../../javax/ws/rs/core/Configurable.html" title="type 
parameter in 
Configurable">C</a>&nbsp;register(java.lang.Class&lt;?&gt;&nbsp;componentClass)</pre>
-<div class="block">Register a class of a custom JAX-RS component (such as an 
extension provider or
+<div class="block">Register a class of a custom component (such as an 
extension provider or
  a <a href="../../../../javax/ws/rs/core/Feature.html" title="interface in 
javax.ws.rs.core"><code>feature</code></a> meta-provider) to be instantiated
  and used in the scope of this configurable context.
 
  Implementations SHOULD warn about and ignore registrations that do not
- conform to the requirements of supported JAX-RS component types in the
+ conform to the requirements of supported component types in the
  given configurable context. Any subsequent registration attempts for a 
component
  type, for which a class or instance-based registration already exists in the 
system
- MUST be rejected by the JAX-RS implementation and a warning SHOULD be raised 
to
+ MUST be rejected by the API implementation and a warning SHOULD be raised to
  inform the user about the rejected registration.
 
- The registered JAX-RS component class is registered as a contract provider of
- all the recognized JAX-RS or implementation-specific extension contracts 
including
+ The registered component class is registered as a contract provider of
+ all the recognized API or implementation-specific extension contracts 
including
  meta-provider contracts, such as <code>Feature</code> or <a 
href="../../../../javax/ws/rs/container/DynamicFeature.html" title="interface 
in javax.ws.rs.container"><code>DynamicFeature</code></a>.
  <p>
  As opposed to component instances registered via <a 
href="../../../../javax/ws/rs/core/Configurable.html#register-java.lang.Object-"><code>register(Object)</code></a>
 method,
  the lifecycle of components registered using this class-based 
<code>register(...)</code>
- method is fully managed by the JAX-RS implementation or any underlying IoC
+ method is fully managed by the implementation or any underlying IoC
  container supported by the implementation.
  </p></div>
 <dl>
 <dt><span class="paramLabel">Parameters:</span></dt>
-<dd><code>componentClass</code> - JAX-RS component class to be configured in 
the scope of this
+<dd><code>componentClass</code> - component class to be configured in the 
scope of this
                        configurable context.</dd>
 <dt><span class="returnLabel">Returns:</span></dt>
 <dd>the updated configurable context.</dd>
@@ -429,12 +427,12 @@ var activeTableTab = "activeTableTab";
 <h4>register</h4>
 <pre><a href="../../../../javax/ws/rs/core/Configurable.html" title="type 
parameter in 
Configurable">C</a>&nbsp;register(java.lang.Class&lt;?&gt;&nbsp;componentClass,
            int&nbsp;priority)</pre>
-<div class="block">Register a class of a custom JAX-RS component (such as an 
extension provider or
+<div class="block">Register a class of a custom component (such as an 
extension provider or
  a <a href="../../../../javax/ws/rs/core/Feature.html" title="interface in 
javax.ws.rs.core"><code>feature</code></a> meta-provider) to be instantiated
  and used in the scope of this configurable context.
  <p>
  This registration method provides the same functionality as <a 
href="../../../../javax/ws/rs/core/Configurable.html#register-java.lang.Class-"><code>register(Class)</code></a>
- except that any priority specified on the registered JAX-RS component class 
via
+ except that any priority specified on the registered component class via
  <code>javax.annotation.Priority</code> annotation is overridden with the 
supplied
  <code>priority</code> value.
  </p>
@@ -445,7 +443,7 @@ var activeTableTab = "activeTableTab";
  </p></div>
 <dl>
 <dt><span class="paramLabel">Parameters:</span></dt>
-<dd><code>componentClass</code> - JAX-RS component class to be configured in 
the scope of this
+<dd><code>componentClass</code> - component class to be configured in the 
scope of this
                        configurable context.</dd>
 <dd><code>priority</code> - the overriding priority for the registered 
component
                        and all the provider contracts the component 
implements.</dd>
@@ -462,12 +460,12 @@ var activeTableTab = "activeTableTab";
 <h4>register</h4>
 <pre><a href="../../../../javax/ws/rs/core/Configurable.html" title="type 
parameter in 
Configurable">C</a>&nbsp;register(java.lang.Class&lt;?&gt;&nbsp;componentClass,
            java.lang.Class&lt;?&gt;...&nbsp;contracts)</pre>
-<div class="block">Register a class of a custom JAX-RS component (such as an 
extension provider or
+<div class="block">Register a class of a custom component (such as an 
extension provider or
  a <a href="../../../../javax/ws/rs/core/Feature.html" title="interface in 
javax.ws.rs.core"><code>feature</code></a> meta-provider) to be instantiated
  and used in the scope of this configurable context.
  <p>
  This registration method provides the same functionality as <a 
href="../../../../javax/ws/rs/core/Configurable.html#register-java.lang.Class-"><code>register(Class)</code></a>
- except the JAX-RS component class is only registered as a provider of the 
listed
+ except the component class is only registered as a provider of the listed
  extension provider or meta-provider <code>contracts</code>.
  All explicitly enumerated contract types must represent a class or an 
interface
  implemented or extended by the registered component. Contracts that are not
@@ -477,7 +475,7 @@ var activeTableTab = "activeTableTab";
  </p></div>
 <dl>
 <dt><span class="paramLabel">Parameters:</span></dt>
-<dd><code>componentClass</code> - JAX-RS component class to be configured in 
the scope of this
+<dd><code>componentClass</code> - component class to be configured in the 
scope of this
                        configurable context.</dd>
 <dd><code>contracts</code> - the specific extension provider or meta-provider 
contracts
                        implemented by the component for which the component 
should
@@ -498,30 +496,30 @@ var activeTableTab = "activeTableTab";
 <h4>register</h4>
 <pre><a href="../../../../javax/ws/rs/core/Configurable.html" title="type 
parameter in 
Configurable">C</a>&nbsp;register(java.lang.Class&lt;?&gt;&nbsp;componentClass,
            
java.util.Map&lt;java.lang.Class&lt;?&gt;,java.lang.Integer&gt;&nbsp;contracts)</pre>
-<div class="block">Register a class of a custom JAX-RS component (such as an 
extension provider or
+<div class="block">Register a class of a custom component (such as an 
extension provider or
  a <a href="../../../../javax/ws/rs/core/Feature.html" title="interface in 
javax.ws.rs.core"><code>feature</code></a> meta-provider) to be instantiated
  and used in the scope of this configurable context.
  <p>
  This registration method provides same functionality as <a 
href="../../../../javax/ws/rs/core/Configurable.html#register-java.lang.Class-java.lang.Class...-"><code>register(Class,
 Class[])</code></a>
- except that any priority specified on the registered JAX-RS component class 
via
+ except that any priority specified on the registered component class via
  <code>javax.annotation.Priority</code> annotation is overridden
  for each extension provider contract type separately with an integer priority 
value
  specified as a value in the supplied map of [contract type, priority] pairs.
  </p>
  <p>
  Note that in case a priority is not applicable to a provider contract 
registered
- for the JAX-RS component, the supplied priority value is ignored for such
+ for the component, the supplied priority value is ignored for such
  contract.
  </p></div>
 <dl>
 <dt><span class="paramLabel">Parameters:</span></dt>
-<dd><code>componentClass</code> - JAX-RS component class to be configured in 
the scope of this
+<dd><code>componentClass</code> - component class to be configured in the 
scope of this
                        configurable context.</dd>
 <dd><code>contracts</code> - map of the specific extension provider and 
meta-provider contracts
-                       and their associated priorities for which the JAX-RS 
component
+                       and their associated priorities for which the component
                        is registered.
                        All contracts in the map must represent a class or an 
interface
-                       implemented or extended by the JAX-RS component. 
Contracts that are
+                       implemented or extended by the component. Contracts 
that are
                        not <code>assignable from</code> the registered
                        component class MUST be ignored and implementations 
SHOULD raise a warning
                        to inform users about the ignored contract(s).</dd>
@@ -537,31 +535,31 @@ var activeTableTab = "activeTableTab";
 <li class="blockList">
 <h4>register</h4>
 <pre><a href="../../../../javax/ws/rs/core/Configurable.html" title="type 
parameter in 
Configurable">C</a>&nbsp;register(java.lang.Object&nbsp;component)</pre>
-<div class="block">Register an instance of a custom JAX-RS component (such as 
an extension provider or
+<div class="block">Register an instance of a custom component (such as an 
extension provider or
  a <a href="../../../../javax/ws/rs/core/Feature.html" title="interface in 
javax.ws.rs.core"><code>feature</code></a> meta-provider) to be instantiated
  and used in the scope of this configurable context.
 
  Implementations SHOULD warn about and ignore registrations that do not
- conform to the requirements of supported JAX-RS component types in the
+ conform to the requirements of supported component types in the
  given configurable context. Any subsequent registration attempts for a 
component
  type, for which a class or instance-based registration already exists in the 
system
- MUST be rejected by the JAX-RS implementation and a warning SHOULD be raised 
to
+ MUST be rejected by the API implementation and a warning SHOULD be raised to
  inform the user about the rejected registration.
 
- The registered JAX-RS component is registered as a contract provider of
- all the recognized JAX-RS or implementation-specific extension contracts 
including
+ The registered component is registered as a contract provider of
+ all the recognized API or implementation-specific extension contracts 
including
  meta-provider contracts, such as <code>Feature</code> or <a 
href="../../../../javax/ws/rs/container/DynamicFeature.html" title="interface 
in javax.ws.rs.container"><code>DynamicFeature</code></a>.
  <p>
  As opposed to components registered via <a 
href="../../../../javax/ws/rs/core/Configurable.html#register-java.lang.Class-"><code>register(Class)</code></a>
 method,
  the lifecycle of providers registered using this instance-based 
<code>register(...)</code>
- is not managed by JAX-RS runtime. The same registered component instance is 
used during
+ is not managed by the runtime. The same registered component instance is used 
during
  the whole lifespan of the configurable context.
- Fields and properties of all registered JAX-RS component instances are 
injected with their
- declared dependencies (see <a 
href="../../../../javax/ws/rs/core/Context.html" title="annotation in 
javax.ws.rs.core"><code>Context</code></a>) by the JAX-RS runtime prior to use.
+ Fields and properties of all registered component instances are injected with 
their
+ declared dependencies (see <a 
href="../../../../javax/ws/rs/core/Context.html" title="annotation in 
javax.ws.rs.core"><code>Context</code></a>) by the runtime prior to use.
  </p></div>
 <dl>
 <dt><span class="paramLabel">Parameters:</span></dt>
-<dd><code>component</code> - JAX-RS component instance to be configured in the 
scope of this
+<dd><code>component</code> - component instance to be configured in the scope 
of this
                   configurable context.</dd>
 <dt><span class="returnLabel">Returns:</span></dt>
 <dd>the updated configurable context.</dd>
@@ -576,12 +574,12 @@ var activeTableTab = "activeTableTab";
 <h4>register</h4>
 <pre><a href="../../../../javax/ws/rs/core/Configurable.html" title="type 
parameter in Configurable">C</a>&nbsp;register(java.lang.Object&nbsp;component,
            int&nbsp;priority)</pre>
-<div class="block">Register an instance of a custom JAX-RS component (such as 
an extension provider or
+<div class="block">Register an instance of a custom component (such as an 
extension provider or
  a <a href="../../../../javax/ws/rs/core/Feature.html" title="interface in 
javax.ws.rs.core"><code>feature</code></a> meta-provider) to be instantiated
  and used in the scope of this configurable context.
  <p>
  This registration method provides the same functionality as <a 
href="../../../../javax/ws/rs/core/Configurable.html#register-java.lang.Object-"><code>register(Object)</code></a>
- except that any priority specified on the registered JAX-RS component class 
via
+ except that any priority specified on the registered component class via
  <code>javax.annotation.Priority</code> annotation is overridden with the 
supplied
  <code>priority</code> value.
  </p>
@@ -592,7 +590,7 @@ var activeTableTab = "activeTableTab";
  </p></div>
 <dl>
 <dt><span class="paramLabel">Parameters:</span></dt>
-<dd><code>component</code> - JAX-RS component instance to be configured in the 
scope of this
+<dd><code>component</code> - component instance to be configured in the scope 
of this
                   configurable context.</dd>
 <dd><code>priority</code> - the overriding priority for the registered 
component
                   and all the provider contracts the component implements.</dd>
@@ -609,12 +607,12 @@ var activeTableTab = "activeTableTab";
 <h4>register</h4>
 <pre><a href="../../../../javax/ws/rs/core/Configurable.html" title="type 
parameter in Configurable">C</a>&nbsp;register(java.lang.Object&nbsp;component,
            java.lang.Class&lt;?&gt;...&nbsp;contracts)</pre>
-<div class="block">Register an instance of a custom JAX-RS component (such as 
an extension provider or
+<div class="block">Register an instance of a custom component (such as an 
extension provider or
  a <a href="../../../../javax/ws/rs/core/Feature.html" title="interface in 
javax.ws.rs.core"><code>feature</code></a> meta-provider) to be instantiated
  and used in the scope of this configurable context.
  <p>
  This registration method provides the same functionality as <a 
href="../../../../javax/ws/rs/core/Configurable.html#register-java.lang.Object-"><code>register(Object)</code></a>
- except the JAX-RS component class is only registered as a provider of the 
listed
+ except the component class is only registered as a provider of the listed
  extension provider or meta-provider <code>contracts</code>.
  All explicitly enumerated contract types must represent a class or an 
interface
  implemented or extended by the registered component. Contracts that are not
@@ -624,7 +622,7 @@ var activeTableTab = "activeTableTab";
  </p></div>
 <dl>
 <dt><span class="paramLabel">Parameters:</span></dt>
-<dd><code>component</code> - JAX-RS component instance to be configured in the 
scope of this
+<dd><code>component</code> - component instance to be configured in the scope 
of this
                   configurable context.</dd>
 <dd><code>contracts</code> - the specific extension provider or meta-provider 
contracts
                   implemented by the component for which the component should
@@ -645,30 +643,30 @@ var activeTableTab = "activeTableTab";
 <h4>register</h4>
 <pre><a href="../../../../javax/ws/rs/core/Configurable.html" title="type 
parameter in Configurable">C</a>&nbsp;register(java.lang.Object&nbsp;component,
            
java.util.Map&lt;java.lang.Class&lt;?&gt;,java.lang.Integer&gt;&nbsp;contracts)</pre>
-<div class="block">Register an instance of a custom JAX-RS component (such as 
an extension provider or
+<div class="block">Register an instance of a custom component (such as an 
extension provider or
  a <a href="../../../../javax/ws/rs/core/Feature.html" title="interface in 
javax.ws.rs.core"><code>feature</code></a> meta-provider) to be instantiated
  and used in the scope of this configurable context.
  <p>
  This registration method provides same functionality as <a 
href="../../../../javax/ws/rs/core/Configurable.html#register-java.lang.Object-java.lang.Class...-"><code>register(Object,
 Class[])</code></a>
- except that any priority specified on the registered JAX-RS component class 
via
+ except that any priority specified on the registered component class via
  <code>javax.annotation.Priority</code> annotation is overridden
  for each extension provider contract type separately with an integer priority 
value
  specified as a value in the supplied map of [contract type, priority] pairs.
  </p>
  <p>
  Note that in case a priority is not applicable to a provider contract 
registered
- for the JAX-RS component, the supplied priority value is ignored for such
+ for the component, the supplied priority value is ignored for such
  contract.
  </p></div>
 <dl>
 <dt><span class="paramLabel">Parameters:</span></dt>
-<dd><code>component</code> - JAX-RS component instance to be configured in the 
scope of this
+<dd><code>component</code> - component instance to be configured in the scope 
of this
                   configurable context.</dd>
 <dd><code>contracts</code> - map of the specific extension provider and 
meta-provider contracts
-                  and their associated priorities for which the JAX-RS 
component
+                  and their associated priorities for which the component
                   is registered.
                   All contracts in the map must represent a class or an 
interface
-                  implemented or extended by the JAX-RS component. Contracts 
that are
+                  implemented or extended by the component. Contracts that are
                   not <code>assignable from</code> the registered
                   component class MUST be ignored and implementations SHOULD 
raise a warning
                   to inform users about the ignored contract(s).</dd>

Modified: 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Configuration.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Configuration.html?rev=1866579&r1=1866578&r2=1866579&view=diff
==============================================================================
--- 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Configuration.html 
(original)
+++ 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Configuration.html 
Sat Sep  7 22:10:03 2019
@@ -2,9 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Tue Jul 02 15:47:44 UTC 2019 -->
 <title>Configuration</title>
-<meta name="date" content="2019-07-02">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -105,13 +103,13 @@ var activeTableTab = "activeTableTab";
 <hr>
 <br>
 <pre>public interface <span class="typeNameLabel">Configuration</span></pre>
-<div class="block">A configuration state associated with a <a 
href="../../../../javax/ws/rs/core/Configurable.html" title="interface in 
javax.ws.rs.core"><code>configurable</code></a> JAX-RS context.
+<div class="block">A configuration state associated with a <a 
href="../../../../javax/ws/rs/core/Configurable.html" title="interface in 
javax.ws.rs.core"><code>configurable</code></a> context.
  Defines the components as well as additional meta-data for the configured 
context.
  <p>
  A configuration state may be used to retrieve configuration information about
- of the associated JAX-RS context (e.g. application, resource method, etc.) or 
component
+ of the associated context (e.g. application, resource method, etc.) or 
component
  (e.g. <a href="../../../../javax/ws/rs/client/Client.html" title="interface 
in javax.ws.rs.client"><code>Client</code></a>, <a 
href="../../../../javax/ws/rs/client/WebTarget.html" title="interface in 
javax.ws.rs.client"><code>WebTarget</code></a>, etc.).
- Configuration information consists of properties, registered JAX-RS component 
classes
+ Configuration information consists of properties, registered component classes
  and/or instances.
  </p>
  <p>
@@ -142,7 +140,7 @@ var activeTableTab = "activeTableTab";
 <tr id="i0" class="altColor">
 <td 
class="colFirst"><code>java.util.Set&lt;java.lang.Class&lt;?&gt;&gt;</code></td>
 <td class="colLast"><code><span class="memberNameLink"><a 
href="../../../../javax/ws/rs/core/Configuration.html#getClasses--">getClasses</a></span>()</code>
-<div class="block">Get the immutable set of registered JAX-RS component (such 
as provider or
+<div class="block">Get the immutable set of registered component (such as 
provider or
  <a href="../../../../javax/ws/rs/core/Feature.html" title="interface in 
javax.ws.rs.core"><code>feature</code></a>) classes to be instantiated, 
injected and utilized in the scope
  of the configurable instance.</div>
 </td>
@@ -156,7 +154,7 @@ var activeTableTab = "activeTableTab";
 <tr id="i2" class="altColor">
 <td class="colFirst"><code>java.util.Set&lt;java.lang.Object&gt;</code></td>
 <td class="colLast"><code><span class="memberNameLink"><a 
href="../../../../javax/ws/rs/core/Configuration.html#getInstances--">getInstances</a></span>()</code>
-<div class="block">Get the immutable set of registered JAX-RS component (such 
as provider or
+<div class="block">Get the immutable set of registered component (such as 
provider or
  <a href="../../../../javax/ws/rs/core/Feature.html" title="interface in 
javax.ws.rs.core"><code>feature</code></a>) instances to be utilized by the 
configurable instance.</div>
 </td>
 </tr>
@@ -202,14 +200,14 @@ var activeTableTab = "activeTableTab";
 <tr id="i9" class="rowColor">
 <td class="colFirst"><code>boolean</code></td>
 <td class="colLast"><code><span class="memberNameLink"><a 
href="../../../../javax/ws/rs/core/Configuration.html#isRegistered-java.lang.Class-">isRegistered</a></span>(java.lang.Class&lt;?&gt;&nbsp;componentClass)</code>
-<div class="block">Check if a JAX-RS component of the supplied 
<code>componentClass</code> class has been previously
+<div class="block">Check if a component of the supplied 
<code>componentClass</code> class has been previously
  registered in the runtime configuration context.</div>
 </td>
 </tr>
 <tr id="i10" class="altColor">
 <td class="colFirst"><code>boolean</code></td>
 <td class="colLast"><code><span class="memberNameLink"><a 
href="../../../../javax/ws/rs/core/Configuration.html#isRegistered-java.lang.Object-">isRegistered</a></span>(java.lang.Object&nbsp;component)</code>
-<div class="block">Check if a particular JAX-RS <code>component</code> 
instance (such as providers or
+<div class="block">Check if a particular API <code>component</code> instance 
(such as providers or
  <a href="../../../../javax/ws/rs/core/Feature.html" title="interface in 
javax.ws.rs.core"><code>features</code></a>) has been previously registered in 
the runtime configuration context.</div>
 </td>
 </tr>
@@ -347,7 +345,7 @@ var activeTableTab = "activeTableTab";
 <li class="blockList">
 <h4>isRegistered</h4>
 <pre>boolean&nbsp;isRegistered(java.lang.Object&nbsp;component)</pre>
-<div class="block">Check if a particular JAX-RS <code>component</code> 
instance (such as providers or
+<div class="block">Check if a particular API <code>component</code> instance 
(such as providers or
  <a href="../../../../javax/ws/rs/core/Feature.html" title="interface in 
javax.ws.rs.core"><code>features</code></a>) has been previously registered in 
the runtime configuration context.
  <p>
  Method returns <code>true</code> only in case an instance equal to the 
<code>component</code>
@@ -372,7 +370,7 @@ var activeTableTab = "activeTableTab";
 <li class="blockList">
 <h4>isRegistered</h4>
 
<pre>boolean&nbsp;isRegistered(java.lang.Class&lt;?&gt;&nbsp;componentClass)</pre>
-<div class="block">Check if a JAX-RS component of the supplied 
<code>componentClass</code> class has been previously
+<div class="block">Check if a component of the supplied 
<code>componentClass</code> class has been previously
  registered in the runtime configuration context.
  <p>
  Method returns <code>true</code> in case a component of the supplied 
<code>componentClass</code> class
@@ -417,7 +415,7 @@ var activeTableTab = "activeTableTab";
 <li class="blockList">
 <h4>getClasses</h4>
 <pre>java.util.Set&lt;java.lang.Class&lt;?&gt;&gt;&nbsp;getClasses()</pre>
-<div class="block">Get the immutable set of registered JAX-RS component (such 
as provider or
+<div class="block">Get the immutable set of registered component (such as 
provider or
  <a href="../../../../javax/ws/rs/core/Feature.html" title="interface in 
javax.ws.rs.core"><code>feature</code></a>) classes to be instantiated, 
injected and utilized in the scope
  of the configurable instance.
  <p>
@@ -426,7 +424,7 @@ var activeTableTab = "activeTableTab";
  </p></div>
 <dl>
 <dt><span class="returnLabel">Returns:</span></dt>
-<dd>the immutable set of registered JAX-RS component classes. The returned
+<dd>the immutable set of registered component classes. The returned
          value may be empty but will never be <code>null</code>.</dd>
 <dt><span class="seeLabel">See Also:</span></dt>
 <dd><a 
href="../../../../javax/ws/rs/core/Configuration.html#getInstances--"><code>getInstances()</code></a></dd>
@@ -440,7 +438,7 @@ var activeTableTab = "activeTableTab";
 <li class="blockList">
 <h4>getInstances</h4>
 <pre>java.util.Set&lt;java.lang.Object&gt;&nbsp;getInstances()</pre>
-<div class="block">Get the immutable set of registered JAX-RS component (such 
as provider or
+<div class="block">Get the immutable set of registered component (such as 
provider or
  <a href="../../../../javax/ws/rs/core/Feature.html" title="interface in 
javax.ws.rs.core"><code>feature</code></a>) instances to be utilized by the 
configurable instance.
  Fields and properties of returned instances are injected with their declared 
dependencies
  (see <a href="../../../../javax/ws/rs/core/Context.html" title="annotation in 
javax.ws.rs.core"><code>Context</code></a>) by the runtime prior to use.
@@ -450,7 +448,7 @@ var activeTableTab = "activeTableTab";
  </p></div>
 <dl>
 <dt><span class="returnLabel">Returns:</span></dt>
-<dd>the immutable set of registered JAX-RS component instances. The returned
+<dd>the immutable set of registered component instances. The returned
          value may be empty but will never be <code>null</code>.</dd>
 <dt><span class="seeLabel">See Also:</span></dt>
 <dd><a 
href="../../../../javax/ws/rs/core/Configuration.html#getClasses--"><code>getClasses()</code></a></dd>

Modified: 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Context.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Context.html?rev=1866579&r1=1866578&r2=1866579&view=diff
==============================================================================
--- tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Context.html 
(original)
+++ tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Context.html 
Sat Sep  7 22:10:03 2019
@@ -2,9 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Tue Jul 02 15:47:44 UTC 2019 -->
 <title>Context</title>
-<meta name="date" content="2019-07-02">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

Modified: 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Cookie.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Cookie.html?rev=1866579&r1=1866578&r2=1866579&view=diff
==============================================================================
--- tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Cookie.html 
(original)
+++ tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Cookie.html Sat 
Sep  7 22:10:03 2019
@@ -2,9 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Tue Jul 02 15:47:44 UTC 2019 -->
 <title>Cookie</title>
-<meta name="date" content="2019-07-02">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

Modified: 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/EntityTag.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/EntityTag.html?rev=1866579&r1=1866578&r2=1866579&view=diff
==============================================================================
--- tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/EntityTag.html 
(original)
+++ tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/EntityTag.html 
Sat Sep  7 22:10:03 2019
@@ -2,9 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Tue Jul 02 15:47:44 UTC 2019 -->
 <title>EntityTag</title>
-<meta name="date" content="2019-07-02">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

Modified: 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Feature.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Feature.html?rev=1866579&r1=1866578&r2=1866579&view=diff
==============================================================================
--- tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Feature.html 
(original)
+++ tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Feature.html 
Sat Sep  7 22:10:03 2019
@@ -2,9 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Tue Jul 02 15:47:44 UTC 2019 -->
 <title>Feature</title>
-<meta name="date" content="2019-07-02">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -106,8 +104,8 @@ var activeTableTab = "activeTableTab";
  Typically encapsulates a concept or facility that involves configuration of 
multiple providers
  (e.g. filters or interceptors) and/or properties.
  <p>
- A <code>Feature</code> is a special type of JAX-RS configuration 
meta-provider. Once a feature is registered,
- its <a 
href="../../../../javax/ws/rs/core/Feature.html#configure-javax.ws.rs.core.FeatureContext-"><code>configure(FeatureContext)</code></a>
 method is invoked during JAX-RS runtime configuration and bootstrapping
+ A <code>Feature</code> is a special type of configuration meta-provider. Once 
a feature is registered,
+ its <a 
href="../../../../javax/ws/rs/core/Feature.html#configure-javax.ws.rs.core.FeatureContext-"><code>configure(FeatureContext)</code></a>
 method is invoked during runtime configuration and bootstrapping
  phase allowing the feature to further configure the runtime context in which 
it has been registered.
  From within the invoked <code>configure(...)</code> method a feature may 
provide additional runtime configuration
  for the facility or conceptual domain it represents, such as registering 
additional contract providers,
@@ -115,8 +113,8 @@ var activeTableTab = "activeTableTab";
  </p>
  <p>
  Features implementing this interface MAY be annotated with the <a 
href="../../../../javax/ws/rs/ext/Provider.html" title="annotation in 
javax.ws.rs.ext"><code>&#64;Provider</code></a>
- annotation in order to be discovered by the JAX-RS runtime when scanning for 
resources and providers.
- Please note that this will only work for server side features. Features for 
the JAX-RS client must
+ annotation in order to be discovered by the runtime when scanning for 
resources and providers.
+ Please note that this will only work for server side features. Features in 
the Client API must
  be registered programmatically.
  </p></div>
 <dl>

Modified: 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/FeatureContext.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/FeatureContext.html?rev=1866579&r1=1866578&r2=1866579&view=diff
==============================================================================
--- 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/FeatureContext.html 
(original)
+++ 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/FeatureContext.html 
Sat Sep  7 22:10:03 2019
@@ -2,9 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Tue Jul 02 15:47:44 UTC 2019 -->
 <title>FeatureContext</title>
-<meta name="date" content="2019-07-02">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -101,7 +99,7 @@
 <pre>public interface <span class="typeNameLabel">FeatureContext</span>
 extends <a href="../../../../javax/ws/rs/core/Configurable.html" 
title="interface in javax.ws.rs.core">Configurable</a>&lt;<a 
href="../../../../javax/ws/rs/core/FeatureContext.html" title="interface in 
javax.ws.rs.core">FeatureContext</a>&gt;</pre>
 <div class="block">A configurable context passed to <a 
href="../../../../javax/ws/rs/core/Feature.html" title="interface in 
javax.ws.rs.core"><code>Feature</code></a> and <a 
href="../../../../javax/ws/rs/container/DynamicFeature.html" title="interface 
in javax.ws.rs.container"><code>DynamicFeature</code></a>
- instances by JAX-RS runtime during the phase of their configuration.</div>
+ instances by the runtime during the phase of their configuration.</div>
 </li>
 </ul>
 </div>

Modified: tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Form.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Form.html?rev=1866579&r1=1866578&r2=1866579&view=diff
==============================================================================
--- tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Form.html 
(original)
+++ tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Form.html Sat 
Sep  7 22:10:03 2019
@@ -2,9 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Tue Jul 02 15:47:44 UTC 2019 -->
 <title>Form</title>
-<meta name="date" content="2019-07-02">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

Modified: 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/GenericEntity.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/GenericEntity.html?rev=1866579&r1=1866578&r2=1866579&view=diff
==============================================================================
--- 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/GenericEntity.html 
(original)
+++ 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/GenericEntity.html 
Sat Sep  7 22:10:03 2019
@@ -2,9 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Tue Jul 02 15:47:44 UTC 2019 -->
 <title>GenericEntity</title>
-<meta name="date" content="2019-07-02">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

Modified: 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/GenericType.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/GenericType.html?rev=1866579&r1=1866578&r2=1866579&view=diff
==============================================================================
--- 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/GenericType.html 
(original)
+++ 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/GenericType.html 
Sat Sep  7 22:10:03 2019
@@ -2,9 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Tue Jul 02 15:47:44 UTC 2019 -->
 <title>GenericType</title>
-<meta name="date" content="2019-07-02">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

Modified: 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/HttpHeaders.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/HttpHeaders.html?rev=1866579&r1=1866578&r2=1866579&view=diff
==============================================================================
--- 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/HttpHeaders.html 
(original)
+++ 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/HttpHeaders.html 
Sat Sep  7 22:10:03 2019
@@ -2,9 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Tue Jul 02 15:47:44 UTC 2019 -->
 <title>HttpHeaders</title>
-<meta name="date" content="2019-07-02">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

Modified: 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Link.Builder.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Link.Builder.html?rev=1866579&r1=1866578&r2=1866579&view=diff
==============================================================================
--- 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Link.Builder.html 
(original)
+++ 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Link.Builder.html 
Sat Sep  7 22:10:03 2019
@@ -2,9 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Tue Jul 02 15:47:44 UTC 2019 -->
 <title>Link.Builder</title>
-<meta name="date" content="2019-07-02">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

Modified: 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Link.JaxbAdapter.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Link.JaxbAdapter.html?rev=1866579&r1=1866578&r2=1866579&view=diff
==============================================================================
--- 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Link.JaxbAdapter.html
 (original)
+++ 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Link.JaxbAdapter.html
 Sat Sep  7 22:10:03 2019
@@ -2,9 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Tue Jul 02 15:47:44 UTC 2019 -->
 <title>Link.JaxbAdapter</title>
-<meta name="date" content="2019-07-02">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -120,7 +118,7 @@ var activeTableTab = "activeTableTab";
 <pre>public static class <span class="typeNameLabel">Link.JaxbAdapter</span>
 extends <a 
href="../../../../javax/xml/bind/annotation/adapters/XmlAdapter.html" 
title="class in javax.xml.bind.annotation.adapters">XmlAdapter</a>&lt;<a 
href="../../../../javax/ws/rs/core/Link.JaxbLink.html" title="class in 
javax.ws.rs.core">Link.JaxbLink</a>,<a 
href="../../../../javax/ws/rs/core/Link.html" title="class in 
javax.ws.rs.core">Link</a>&gt;</pre>
 <div class="block">An implementation of JAXB <a 
href="../../../../javax/xml/bind/annotation/adapters/XmlAdapter.html" 
title="class in javax.xml.bind.annotation.adapters"><code>XmlAdapter</code></a>
- that maps the JAX-RS <a href="../../../../javax/ws/rs/core/Link.html" 
title="class in javax.ws.rs.core"><code>Link</code></a> type to a value that 
can be
+ that maps the <a href="../../../../javax/ws/rs/core/Link.html" title="class 
in javax.ws.rs.core"><code>Link</code></a> type to a value that can be
  marshalled and unmarshalled by JAXB. The following example shows how to use
  this adapter on a JAXB bean class:
 

Modified: 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Link.JaxbLink.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Link.JaxbLink.html?rev=1866579&r1=1866578&r2=1866579&view=diff
==============================================================================
--- 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Link.JaxbLink.html 
(original)
+++ 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Link.JaxbLink.html 
Sat Sep  7 22:10:03 2019
@@ -2,9 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Tue Jul 02 15:47:44 UTC 2019 -->
 <title>Link.JaxbLink</title>
-<meta name="date" content="2019-07-02">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

Modified: tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Link.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Link.html?rev=1866579&r1=1866578&r2=1866579&view=diff
==============================================================================
--- tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Link.html 
(original)
+++ tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Link.html Sat 
Sep  7 22:10:03 2019
@@ -2,9 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Tue Jul 02 15:47:44 UTC 2019 -->
 <title>Link</title>
-<meta name="date" content="2019-07-02">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -154,7 +152,7 @@ extends java.lang.Object</pre>
 <td class="colFirst"><code>static class&nbsp;</code></td>
 <td class="colLast"><code><span class="memberNameLink"><a 
href="../../../../javax/ws/rs/core/Link.JaxbAdapter.html" title="class in 
javax.ws.rs.core">Link.JaxbAdapter</a></span></code>
 <div class="block">An implementation of JAXB <a 
href="../../../../javax/xml/bind/annotation/adapters/XmlAdapter.html" 
title="class in javax.xml.bind.annotation.adapters"><code>XmlAdapter</code></a>
- that maps the JAX-RS <a href="../../../../javax/ws/rs/core/Link.html" 
title="class in javax.ws.rs.core"><code>Link</code></a> type to a value that 
can be
+ that maps the <a href="../../../../javax/ws/rs/core/Link.html" title="class 
in javax.ws.rs.core"><code>Link</code></a> type to a value that can be
  marshalled and unmarshalled by JAXB.</div>
 </td>
 </tr>

Modified: 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/MediaType.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/MediaType.html?rev=1866579&r1=1866578&r2=1866579&view=diff
==============================================================================
--- tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/MediaType.html 
(original)
+++ tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/MediaType.html 
Sat Sep  7 22:10:03 2019
@@ -2,9 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Tue Jul 02 15:47:44 UTC 2019 -->
 <title>MediaType</title>
-<meta name="date" content="2019-07-02">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

Modified: 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/MultivaluedHashMap.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/MultivaluedHashMap.html?rev=1866579&r1=1866578&r2=1866579&view=diff
==============================================================================
--- 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/MultivaluedHashMap.html
 (original)
+++ 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/MultivaluedHashMap.html
 Sat Sep  7 22:10:03 2019
@@ -2,9 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Tue Jul 02 15:47:44 UTC 2019 -->
 <title>MultivaluedHashMap</title>
-<meta name="date" content="2019-07-02">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

Modified: 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/MultivaluedMap.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/MultivaluedMap.html?rev=1866579&r1=1866578&r2=1866579&view=diff
==============================================================================
--- 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/MultivaluedMap.html 
(original)
+++ 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/MultivaluedMap.html 
Sat Sep  7 22:10:03 2019
@@ -2,9 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Tue Jul 02 15:47:44 UTC 2019 -->
 <title>MultivaluedMap</title>
-<meta name="date" content="2019-07-02">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

Modified: 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/NewCookie.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/NewCookie.html?rev=1866579&r1=1866578&r2=1866579&view=diff
==============================================================================
--- tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/NewCookie.html 
(original)
+++ tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/NewCookie.html 
Sat Sep  7 22:10:03 2019
@@ -2,9 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Tue Jul 02 15:47:44 UTC 2019 -->
 <title>NewCookie</title>
-<meta name="date" content="2019-07-02">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

Modified: 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/NoContentException.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/NoContentException.html?rev=1866579&r1=1866578&r2=1866579&view=diff
==============================================================================
--- 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/NoContentException.html
 (original)
+++ 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/NoContentException.html
 Sat Sep  7 22:10:03 2019
@@ -2,9 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Tue Jul 02 15:47:44 UTC 2019 -->
 <title>NoContentException</title>
-<meta name="date" content="2019-07-02">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -128,7 +126,7 @@ extends java.io.IOException</pre>
  is not able to produce an instance representing an zero-length message 
content.
  <p>
  This exception, when thrown while reading a server request entity, is 
automatically
- translated by JAX-RS server runtime into a <a 
href="../../../../javax/ws/rs/BadRequestException.html" title="class in 
javax.ws.rs"><code>BadRequestException</code></a>
+ translated by the server runtime into a <a 
href="../../../../javax/ws/rs/BadRequestException.html" title="class in 
javax.ws.rs"><code>BadRequestException</code></a>
  wrapping the original <code>NoContentException</code> and rethrown for a 
standard processing by
  the registered <a href="../../../../javax/ws/rs/ext/ExceptionMapper.html" 
title="interface in javax.ws.rs.ext"><code>exception mappers</code></a>.
  </p></div>

Modified: 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/PathSegment.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/PathSegment.html?rev=1866579&r1=1866578&r2=1866579&view=diff
==============================================================================
--- 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/PathSegment.html 
(original)
+++ 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/PathSegment.html 
Sat Sep  7 22:10:03 2019
@@ -2,9 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Tue Jul 02 15:47:44 UTC 2019 -->
 <title>PathSegment</title>
-<meta name="date" content="2019-07-02">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

Modified: 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Request.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Request.html?rev=1866579&r1=1866578&r2=1866579&view=diff
==============================================================================
--- tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Request.html 
(original)
+++ tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Request.html 
Sat Sep  7 22:10:03 2019
@@ -2,9 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Tue Jul 02 15:47:44 UTC 2019 -->
 <title>Request</title>
-<meta name="date" content="2019-07-02">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

Modified: 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Response.ResponseBuilder.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Response.ResponseBuilder.html?rev=1866579&r1=1866578&r2=1866579&view=diff
==============================================================================
--- 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Response.ResponseBuilder.html
 (original)
+++ 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Response.ResponseBuilder.html
 Sat Sep  7 22:10:03 2019
@@ -2,9 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Tue Jul 02 15:47:45 UTC 2019 -->
 <title>Response.ResponseBuilder</title>
-<meta name="date" content="2019-07-02">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -930,7 +928,7 @@ extends java.lang.Object</pre>
  This is a shortcut for <code>tag(new EntityTag(<i>value</i>))</code>.</div>
 <dl>
 <dt><span class="paramLabel">Parameters:</span></dt>
-<dd><code>tag</code> - the string content of a strong entity tag. The JAX-RS
+<dd><code>tag</code> - the string content of a strong entity tag. The
             runtime will quote the supplied value when creating the header.
             If <code>null</code> any existing entity tag value will be 
removed.</dd>
 <dt><span class="returnLabel">Returns:</span></dt>

Modified: 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Response.Status.Family.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Response.Status.Family.html?rev=1866579&r1=1866578&r2=1866579&view=diff
==============================================================================
--- 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Response.Status.Family.html
 (original)
+++ 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Response.Status.Family.html
 Sat Sep  7 22:10:03 2019
@@ -2,9 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Tue Jul 02 15:47:45 UTC 2019 -->
 <title>Response.Status.Family</title>
-<meta name="date" content="2019-07-02">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

Modified: 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Response.Status.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Response.Status.html?rev=1866579&r1=1866578&r2=1866579&view=diff
==============================================================================
--- 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Response.Status.html
 (original)
+++ 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Response.Status.html
 Sat Sep  7 22:10:03 2019
@@ -2,9 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Tue Jul 02 15:47:45 UTC 2019 -->
 <title>Response.Status</title>
-<meta name="date" content="2019-07-02">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

Modified: 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Response.StatusType.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Response.StatusType.html?rev=1866579&r1=1866578&r2=1866579&view=diff
==============================================================================
--- 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Response.StatusType.html
 (original)
+++ 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Response.StatusType.html
 Sat Sep  7 22:10:03 2019
@@ -2,9 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Tue Jul 02 15:47:45 UTC 2019 -->
 <title>Response.StatusType</title>
-<meta name="date" content="2019-07-02">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

Modified: 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Response.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Response.html?rev=1866579&r1=1866578&r2=1866579&view=diff
==============================================================================
--- tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Response.html 
(original)
+++ tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Response.html 
Sat Sep  7 22:10:03 2019
@@ -2,9 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Tue Jul 02 15:47:45 UTC 2019 -->
 <title>Response</title>
-<meta name="date" content="2019-07-02">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -119,7 +117,7 @@ implements java.lang.AutoCloseable</pre>
  an application needs to provide meta-data to the runtime.
  <p>
  An application class should not extend this class directly. 
<code>Response</code> class is
- reserved for an extension by a JAX-RS implementation providers. An 
application should use one
+ reserved for an extension by API implementation providers. An application 
should use one
  of the static methods to create a <code>Response</code> instance using a 
ResponseBuilder.
  </p>
  <p>
@@ -1168,7 +1166,7 @@ implements java.lang.AutoCloseable</pre>
 
  This method is considered deprecated. Users are encouraged to switch their
  code to use the <code>getHeaders()</code> method instead. The method may be 
annotated
- as <code>&#64;Deprecated</code> in a future release of JAX-RS API.</div>
+ as <code>&#64;Deprecated</code> in a future release of the API.</div>
 <dl>
 <dt><span class="returnLabel">Returns:</span></dt>
 <dd>response headers as a multivalued map.</dd>
@@ -1184,7 +1182,7 @@ implements java.lang.AutoCloseable</pre>
 <pre>public&nbsp;<a href="../../../../javax/ws/rs/core/MultivaluedMap.html" 
title="interface in 
javax.ws.rs.core">MultivaluedMap</a>&lt;java.lang.String,java.lang.Object&gt;&nbsp;getHeaders()</pre>
 <div class="block">Get view of the response headers and their object values.
 
- The underlying header data may be subsequently modified by the JAX-RS runtime 
on the
+ The underlying header data may be subsequently modified by the runtime on the
  server side. Changes in the underlying header data are reflected in this view.
  <p>
  On the server-side, when the message is sent, the non-string values will be 
serialized
@@ -1217,7 +1215,7 @@ implements java.lang.AutoCloseable</pre>
 <pre>public abstract&nbsp;<a 
href="../../../../javax/ws/rs/core/MultivaluedMap.html" title="interface in 
javax.ws.rs.core">MultivaluedMap</a>&lt;java.lang.String,java.lang.String&gt;&nbsp;getStringHeaders()</pre>
 <div class="block">Get view of the response headers and their string values.
 
- The underlying header data may be subsequently modified by the JAX-RS runtime 
on
+ The underlying header data may be subsequently modified by the runtime on
  the server side. Changes in the underlying header data are reflected in this 
view.</div>
 <dl>
 <dt><span class="returnLabel">Returns:</span></dt>
@@ -1592,7 +1590,7 @@ implements java.lang.AutoCloseable</pre>
  for <code>notModified(new EntityTag(<i>value</i>))</code>.</div>
 <dl>
 <dt><span class="paramLabel">Parameters:</span></dt>
-<dd><code>tag</code> - the string content of a strong entity tag. The JAX-RS
+<dd><code>tag</code> - the string content of a strong entity tag. The
             runtime will quote the supplied value when creating the
             header.</dd>
 <dt><span class="returnLabel">Returns:</span></dt>

Modified: 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/SecurityContext.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/SecurityContext.html?rev=1866579&r1=1866578&r2=1866579&view=diff
==============================================================================
--- 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/SecurityContext.html
 (original)
+++ 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/SecurityContext.html
 Sat Sep  7 22:10:03 2019
@@ -2,9 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Tue Jul 02 15:47:45 UTC 2019 -->
 <title>SecurityContext</title>
-<meta name="date" content="2019-07-02">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

Modified: 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/StreamingOutput.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/StreamingOutput.html?rev=1866579&r1=1866578&r2=1866579&view=diff
==============================================================================
--- 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/StreamingOutput.html
 (original)
+++ 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/StreamingOutput.html
 Sat Sep  7 22:10:03 2019
@@ -2,9 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Tue Jul 02 15:47:45 UTC 2019 -->
 <title>StreamingOutput</title>
-<meta name="date" content="2019-07-02">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

Modified: 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/UriBuilder.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/UriBuilder.html?rev=1866579&r1=1866578&r2=1866579&view=diff
==============================================================================
--- tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/UriBuilder.html 
(original)
+++ tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/UriBuilder.html 
Sat Sep  7 22:10:03 2019
@@ -2,9 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Tue Jul 02 15:47:46 UTC 2019 -->
 <title>UriBuilder</title>
-<meta name="date" content="2019-07-02">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

Modified: 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/UriBuilderException.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/UriBuilderException.html?rev=1866579&r1=1866578&r2=1866579&view=diff
==============================================================================
--- 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/UriBuilderException.html
 (original)
+++ 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/UriBuilderException.html
 Sat Sep  7 22:10:03 2019
@@ -2,9 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Tue Jul 02 15:47:46 UTC 2019 -->
 <title>UriBuilderException</title>
-<meta name="date" content="2019-07-02">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

Modified: 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/UriInfo.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/UriInfo.html?rev=1866579&r1=1866578&r2=1866579&view=diff
==============================================================================
--- tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/UriInfo.html 
(original)
+++ tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/UriInfo.html 
Sat Sep  7 22:10:03 2019
@@ -2,9 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Tue Jul 02 15:47:46 UTC 2019 -->
 <title>UriInfo</title>
-<meta name="date" content="2019-07-02">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

Modified: 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Variant.VariantListBuilder.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Variant.VariantListBuilder.html?rev=1866579&r1=1866578&r2=1866579&view=diff
==============================================================================
--- 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Variant.VariantListBuilder.html
 (original)
+++ 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Variant.VariantListBuilder.html
 Sat Sep  7 22:10:03 2019
@@ -2,9 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Tue Jul 02 15:47:46 UTC 2019 -->
 <title>Variant.VariantListBuilder</title>
-<meta name="date" content="2019-07-02">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

Modified: 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Variant.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Variant.html?rev=1866579&r1=1866578&r2=1866579&view=diff
==============================================================================
--- tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Variant.html 
(original)
+++ tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/Variant.html 
Sat Sep  7 22:10:03 2019
@@ -2,9 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Tue Jul 02 15:47:46 UTC 2019 -->
 <title>Variant</title>
-<meta name="date" content="2019-07-02">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

Modified: 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/package-frame.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/package-frame.html?rev=1866579&r1=1866578&r2=1866579&view=diff
==============================================================================
--- 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/package-frame.html 
(original)
+++ 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/package-frame.html 
Sat Sep  7 22:10:03 2019
@@ -2,9 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Tue Jul 02 15:48:05 UTC 2019 -->
 <title>javax.ws.rs.core</title>
-<meta name="date" content="2019-07-02">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

Modified: 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/package-summary.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/package-summary.html?rev=1866579&r1=1866578&r2=1866579&view=diff
==============================================================================
--- 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/package-summary.html
 (original)
+++ 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/package-summary.html
 Sat Sep  7 22:10:03 2019
@@ -2,9 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Tue Jul 02 15:48:05 UTC 2019 -->
 <title>javax.ws.rs.core</title>
-<meta name="date" content="2019-07-02">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -89,13 +87,13 @@
 <tr class="altColor">
 <td class="colFirst"><a href="../../../../javax/ws/rs/core/Configurable.html" 
title="interface in javax.ws.rs.core">Configurable</a>&lt;C extends <a 
href="../../../../javax/ws/rs/core/Configurable.html" title="interface in 
javax.ws.rs.core">Configurable</a>&gt;</td>
 <td class="colLast">
-<div class="block">Represents a client or server-side configurable context in 
JAX-RS.</div>
+<div class="block">Represents a client or server-side configurable 
context.</div>
 </td>
 </tr>
 <tr class="rowColor">
 <td class="colFirst"><a href="../../../../javax/ws/rs/core/Configuration.html" 
title="interface in javax.ws.rs.core">Configuration</a></td>
 <td class="colLast">
-<div class="block">A configuration state associated with a <a 
href="../../../../javax/ws/rs/core/Configurable.html" title="interface in 
javax.ws.rs.core"><code>configurable</code></a> JAX-RS context.</div>
+<div class="block">A configuration state associated with a <a 
href="../../../../javax/ws/rs/core/Configurable.html" title="interface in 
javax.ws.rs.core"><code>configurable</code></a> context.</div>
 </td>
 </tr>
 <tr class="altColor">
@@ -108,7 +106,7 @@
 <td class="colFirst"><a 
href="../../../../javax/ws/rs/core/FeatureContext.html" title="interface in 
javax.ws.rs.core">FeatureContext</a></td>
 <td class="colLast">
 <div class="block">A configurable context passed to <a 
href="../../../../javax/ws/rs/core/Feature.html" title="interface in 
javax.ws.rs.core"><code>Feature</code></a> and <a 
href="../../../../javax/ws/rs/container/DynamicFeature.html" title="interface 
in javax.ws.rs.container"><code>DynamicFeature</code></a>
- instances by JAX-RS runtime during the phase of their configuration.</div>
+ instances by the runtime during the phase of their configuration.</div>
 </td>
 </tr>
 <tr class="altColor">
@@ -191,7 +189,7 @@
 <tr class="rowColor">
 <td class="colFirst"><a href="../../../../javax/ws/rs/core/Application.html" 
title="class in javax.ws.rs.core">Application</a></td>
 <td class="colLast">
-<div class="block">Defines the components of a JAX-RS application and supplies 
additional
+<div class="block">Defines the components of an application and supplies 
additional
  meta-data.</div>
 </td>
 </tr>
@@ -243,7 +241,7 @@
 <td class="colFirst"><a 
href="../../../../javax/ws/rs/core/Link.JaxbAdapter.html" title="class in 
javax.ws.rs.core">Link.JaxbAdapter</a></td>
 <td class="colLast">
 <div class="block">An implementation of JAXB <a 
href="../../../../javax/xml/bind/annotation/adapters/XmlAdapter.html" 
title="class in javax.xml.bind.annotation.adapters"><code>XmlAdapter</code></a>
- that maps the JAX-RS <a href="../../../../javax/ws/rs/core/Link.html" 
title="class in javax.ws.rs.core"><code>Link</code></a> type to a value that 
can be
+ that maps the <a href="../../../../javax/ws/rs/core/Link.html" title="class 
in javax.ws.rs.core"><code>Link</code></a> type to a value that can be
  marshalled and unmarshalled by JAXB.</div>
 </td>
 </tr>

Modified: 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/package-tree.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/package-tree.html?rev=1866579&r1=1866578&r2=1866579&view=diff
==============================================================================
--- 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/package-tree.html 
(original)
+++ 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/core/package-tree.html 
Sat Sep  7 22:10:03 2019
@@ -2,9 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Tue Jul 02 15:48:05 UTC 2019 -->
 <title>javax.ws.rs.core Class Hierarchy</title>
-<meta name="date" content="2019-07-02">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

Modified: 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/ext/ContextResolver.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/ext/ContextResolver.html?rev=1866579&r1=1866578&r2=1866579&view=diff
==============================================================================
--- 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/ext/ContextResolver.html 
(original)
+++ 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/ext/ContextResolver.html 
Sat Sep  7 22:10:03 2019
@@ -2,9 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Tue Jul 02 15:47:47 UTC 2019 -->
 <title>ContextResolver</title>
-<meta name="date" content="2019-07-02">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -117,9 +115,9 @@ var activeTableTab = "activeTableTab";
  which it will be considered suitable.
  <p>
  Providers implementing <code>ContextResolver</code> contract must be either 
programmatically
- registered in a JAX-RS runtime or must be annotated with
+ registered in an API runtime or must be annotated with
  <a href="../../../../javax/ws/rs/ext/Provider.html" title="annotation in 
javax.ws.rs.ext"><code>&#64;Provider</code></a> annotation to be automatically 
discovered
- by the JAX-RS runtime during a provider scanning phase.
+ by the runtime during a provider scanning phase.
  </p></div>
 <dl>
 <dt><span class="simpleTagLabel">Since:</span></dt>

Modified: 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/ext/ExceptionMapper.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/ext/ExceptionMapper.html?rev=1866579&r1=1866578&r2=1866579&view=diff
==============================================================================
--- 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/ext/ExceptionMapper.html 
(original)
+++ 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/ext/ExceptionMapper.html 
Sat Sep  7 22:10:03 2019
@@ -2,9 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Tue Jul 02 15:47:47 UTC 2019 -->
 <title>ExceptionMapper</title>
-<meta name="date" content="2019-07-02">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -112,9 +110,9 @@ var activeTableTab = "activeTableTab";
 <div class="block">Contract for a provider that maps Java exceptions to <a 
href="../../../../javax/ws/rs/core/Response.html" title="class in 
javax.ws.rs.core"><code>Response</code></a>.
  <p>
  Providers implementing <code>ExceptionMapper</code> contract must be either 
programmatically
- registered in a JAX-RS runtime or must be annotated with
+ registered in an API runtime or must be annotated with
  <a href="../../../../javax/ws/rs/ext/Provider.html" title="annotation in 
javax.ws.rs.ext"><code>&#64;Provider</code></a> annotation to be automatically 
discovered
- by the JAX-RS runtime during a provider scanning phase.</div>
+ by the runtime during a provider scanning phase.</div>
 <dl>
 <dt><span class="simpleTagLabel">Since:</span></dt>
 <dd>1.0</dd>

Modified: 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/ext/InterceptorContext.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/ext/InterceptorContext.html?rev=1866579&r1=1866578&r2=1866579&view=diff
==============================================================================
--- 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/ext/InterceptorContext.html
 (original)
+++ 
tomee/site/trunk/content/tomee-8.0/javadoc/javax/ws/rs/ext/InterceptorContext.html
 Sat Sep  7 22:10:03 2019
@@ -2,9 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Tue Jul 02 15:47:47 UTC 2019 -->
 <title>InterceptorContext</title>
-<meta name="date" content="2019-07-02">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -241,7 +239,7 @@ var activeTableTab = "activeTableTab";
 <div class="block">Returns the property with the given name registered in the 
current request/response
  exchange context, or <code>null</code> if there is no property by that name.
  <p>
- A property allows a JAX-RS filters and interceptors to exchange
+ A property allows a filters and interceptors to exchange
  additional custom information not already provided by this interface.
  </p>
  <p>
@@ -302,7 +300,7 @@ var activeTableTab = "activeTableTab";
  exchange context. If the name specified is already used for a property,
  this method will replace the value of the property with the new value.
  <p>
- A property allows a JAX-RS filters and interceptors to exchange
+ A property allows a filters and interceptors to exchange
  additional custom information not already provided by this interface.
  </p>
  <p>


Reply via email to