This is an automated email from the ASF dual-hosted git repository.
jamesbognar pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/juneau.git
The following commit(s) were added to refs/heads/master by this push:
new 862d2c6 Javadocs.
862d2c6 is described below
commit 862d2c6134506a8d14089e98944d5d1d88574dea
Author: JamesBognar <[email protected]>
AuthorDate: Thu Nov 8 16:55:22 2018 -0500
Javadocs.
---
juneau-doc/src/main/javadoc/overview.html | 14 ++++++++++++--
.../src/main/resources/ReleaseNotes/7.1.0.html | 2 +-
.../src/main/resources/ReleaseNotes/8.0.0.html | 20 ++++++++++++++++++++
.../06.RestMethod/02.RestRequest.html | 2 +-
4 files changed, 34 insertions(+), 4 deletions(-)
diff --git a/juneau-doc/src/main/javadoc/overview.html
b/juneau-doc/src/main/javadoc/overview.html
index cd8a8ef..db643ac 100644
--- a/juneau-doc/src/main/javadoc/overview.html
+++ b/juneau-doc/src/main/javadoc/overview.html
@@ -13843,7 +13843,7 @@
<li class='jm'>{@link
org.apache.juneau.rest.RestRequest#getVarResolverSession()
getVarResolverSession()} - String variable resolver.
<li class='jm'>{@link
org.apache.juneau.rest.RestRequest#getMessageBundle() getMessageBundle()} -
Localized messages.
<li class='jm'>{@link
org.apache.juneau.rest.RestRequest#getProperties() getProperties()} -
Configuration properties.
- <li class='jm'>{@link
org.apache.juneau.rest.RestRequest#getClasspathReaderResource(String,boolean,MediaType)
getClasspathReaderResource(String,boolean,MediaType)} - Various methods for
retrieving static files from classpath.
+ <li class='jm'>{@link
org.apache.juneau.rest.RestRequest#getClasspathReaderResource(String,boolean,MediaType,boolean)
getClasspathReaderResource(String,boolean,MediaType,boolean)} - Various
methods for retrieving static files from classpath.
</ul>
</ul>
</div><!-- END: 7.6.2 - juneau-rest-server.RestMethod.RestRequest -->
@@ -26439,6 +26439,7 @@
<li><p><a class='doclink' href='#7.2.0'>7.2.1 (Sept 25, 2018)</a></p>
<li><p><a class='doclink' href='#7.2.1'>7.2.1 (Oct 23, 2018)</a></p>
<li><p><a class='doclink' href='#7.2.2'>7.2.2 (Nov 7, 2018)</a></p>
+<li><p><a class='doclink' href='#8.0.0'>8.0.0 (TBD)</a></p>
</ul>
@@ -31652,7 +31653,7 @@
{@link
org.apache.juneau.rest.RestRequest#getConsumes() getConsumes()} and
{@link
org.apache.juneau.rest.RestRequest#getProduces() getProduces()}.
<li><code>getReaderResource(String,boolean,MediaType)</code> renamed to
- {@link
org.apache.juneau.rest.RestRequest#getClasspathReaderResource(String,boolean,MediaType)
getClasspathReaderResource(String,boolean,MediaType)}
+
<code><del>getClasspathReaderResource(String,boolean,MediaType)</del></code>
<li><code>getReaderResource(String,boolean)</code>
renamed to
{@link
org.apache.juneau.rest.RestRequest#getClasspathReaderResource(String,boolean)
getClasspathReaderResource(String,boolean)}
<li><code>getReaderResource(String)</code> renamed to
@@ -32438,5 +32439,14 @@
</p>
</div><!-- END: 7.2.2 -->
+<!--
====================================================================================================
-->
+
+<h3 class='topic' onclick='toggle(this)'><a href='#8.0.0' id='8.0.0'>8.0.0
(TBD)</a></h3>
+<div class='topic'><!-- START: 8.0.0 -->
+<p>
+ TBD
+</p>
+</div><!-- END: 8.0.0 -->
+
</div>
</body>
diff --git a/juneau-doc/src/main/resources/ReleaseNotes/7.1.0.html
b/juneau-doc/src/main/resources/ReleaseNotes/7.1.0.html
index 3cb5181..1b0dd89 100644
--- a/juneau-doc/src/main/resources/ReleaseNotes/7.1.0.html
+++ b/juneau-doc/src/main/resources/ReleaseNotes/7.1.0.html
@@ -351,7 +351,7 @@
{@link oajr.RestRequest#getConsumes()
getConsumes()} and
{@link oajr.RestRequest#getProduces()
getProduces()}.
<li><code>getReaderResource(String,boolean,MediaType)</code> renamed to
- {@link
oajr.RestRequest#getClasspathReaderResource(String,boolean,MediaType)
getClasspathReaderResource(String,boolean,MediaType)}
+
<code><del>getClasspathReaderResource(String,boolean,MediaType)</del></code>
<li><code>getReaderResource(String,boolean)</code>
renamed to
{@link
oajr.RestRequest#getClasspathReaderResource(String,boolean)
getClasspathReaderResource(String,boolean)}
<li><code>getReaderResource(String)</code> renamed to
diff --git a/juneau-doc/src/main/resources/ReleaseNotes/8.0.0.html
b/juneau-doc/src/main/resources/ReleaseNotes/8.0.0.html
new file mode 100644
index 0000000..157fcf7
--- /dev/null
+++ b/juneau-doc/src/main/resources/ReleaseNotes/8.0.0.html
@@ -0,0 +1,20 @@
+<!--
+/***************************************************************************************************************************
+ * Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information regarding copyright
ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the "License"); you may not
use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
or implied. See the License for the
+ * specific language governing permissions and limitations under the License.
+
***************************************************************************************************************************/
+ -->
+
+8.0.0 (TBD)
+
+<p>
+ TBD
+</p>
diff --git
a/juneau-doc/src/main/resources/Topics/07.juneau-rest-server/06.RestMethod/02.RestRequest.html
b/juneau-doc/src/main/resources/Topics/07.juneau-rest-server/06.RestMethod/02.RestRequest.html
index 213ae3e..04b5560 100644
---
a/juneau-doc/src/main/resources/Topics/07.juneau-rest-server/06.RestMethod/02.RestRequest.html
+++
b/juneau-doc/src/main/resources/Topics/07.juneau-rest-server/06.RestMethod/02.RestRequest.html
@@ -42,6 +42,6 @@ RestRequest
<li class='jm'>{@link oajr.RestRequest#getVarResolverSession()
getVarResolverSession()} - String variable resolver.
<li class='jm'>{@link oajr.RestRequest#getMessageBundle()
getMessageBundle()} - Localized messages.
<li class='jm'>{@link oajr.RestRequest#getProperties()
getProperties()} - Configuration properties.
- <li class='jm'>{@link
oajr.RestRequest#getClasspathReaderResource(String,boolean,MediaType)
getClasspathReaderResource(String,boolean,MediaType)} - Various methods for
retrieving static files from classpath.
+ <li class='jm'>{@link
oajr.RestRequest#getClasspathReaderResource(String,boolean,MediaType,boolean)
getClasspathReaderResource(String,boolean,MediaType,boolean)} - Various methods
for retrieving static files from classpath.
</ul>
</ul>