You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juneau.apache.org by ja...@apache.org on 2017/10/20 17:34:42 UTC

[07/51] [partial] incubator-juneau-website git commit: Update javadocs.

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/db550d07/content/site/apidocs/org/apache/juneau/rest/RestConverter.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/RestConverter.html b/content/site/apidocs/org/apache/juneau/rest/RestConverter.html
index a15ed87..c742b4e 100644
--- a/content/site/apidocs/org/apache/juneau/rest/RestConverter.html
+++ b/content/site/apidocs/org/apache/juneau/rest/RestConverter.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RestConverter (Apache Juneau (incubating) 6.4.1-incubating-SNAPSHOT)</title>
+<title>RestConverter (Apache Juneau 7.0.0-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RestConverter (Apache Juneau (incubating) 6.4.1-incubating-SNAPSHOT)";
+            parent.document.title="RestConverter (Apache Juneau 7.0.0-SNAPSHOT)";
         }
     }
     catch(err) {
@@ -119,7 +119,7 @@ var activeTableTab = "activeTableTab";
    <jk>public class</jk> RequestEchoResource <jk>extends</jk> RestServlet {
 
       <jc>// GET request handler</jc>
-      <ja>@RestMethod</ja>(name=<js>"GET"</js>, path=<js>"/*"</js>, converters={Queryable.<jk>class</jk>,Traversable.<jk>class</jk>})
+      <ja>@RestMethod</ja>(name=<jsf>GET</jsf>, path=<js>"/*"</js>, converters={Queryable.<jk>class</jk>,Traversable.<jk>class</jk>})
       <jk>public</jk> HttpServletRequest doGet(RestRequest req) {
          res.setTitle(<js>"Contents of HttpServletRequest object"</js>);
          <jk>return</jk> req;

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/db550d07/content/site/apidocs/org/apache/juneau/rest/RestException.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/RestException.html b/content/site/apidocs/org/apache/juneau/rest/RestException.html
index 276ea14..d7728f7 100644
--- a/content/site/apidocs/org/apache/juneau/rest/RestException.html
+++ b/content/site/apidocs/org/apache/juneau/rest/RestException.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RestException (Apache Juneau (incubating) 6.4.1-incubating-SNAPSHOT)</title>
+<title>RestException (Apache Juneau 7.0.0-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RestException (Apache Juneau (incubating) 6.4.1-incubating-SNAPSHOT)";
+            parent.document.title="RestException (Apache Juneau 7.0.0-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/db550d07/content/site/apidocs/org/apache/juneau/rest/RestGuard.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/RestGuard.html b/content/site/apidocs/org/apache/juneau/rest/RestGuard.html
index 38a6c5e..e900ebe 100644
--- a/content/site/apidocs/org/apache/juneau/rest/RestGuard.html
+++ b/content/site/apidocs/org/apache/juneau/rest/RestGuard.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RestGuard (Apache Juneau (incubating) 6.4.1-incubating-SNAPSHOT)</title>
+<title>RestGuard (Apache Juneau 7.0.0-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RestGuard (Apache Juneau (incubating) 6.4.1-incubating-SNAPSHOT)";
+            parent.document.title="RestGuard (Apache Juneau 7.0.0-SNAPSHOT)";
         }
     }
     catch(err) {
@@ -142,7 +142,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
    <jk>public</jk> MyResource <jk>extends</jk> RestServlet {
 
       <jc>// Delete method with guard that only allows Billy to call it.</jc>
-      <ja>@RestMethod</ja>(name=<js>"DELETE"</js>, guards=BillyGuard.<jk>class</jk>)
+      <ja>@RestMethod</ja>(name=<jsf>DELETE</jsf>, guards=BillyGuard.<jk>class</jk>)
       <jk>public</jk> doDelete(RestRequest req, RestResponse res) <jk>throws</jk> Exception {...}
    }
  </p>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/db550d07/content/site/apidocs/org/apache/juneau/rest/RestInfoProvider.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/RestInfoProvider.html b/content/site/apidocs/org/apache/juneau/rest/RestInfoProvider.html
index aa2bcde..ca89a01 100644
--- a/content/site/apidocs/org/apache/juneau/rest/RestInfoProvider.html
+++ b/content/site/apidocs/org/apache/juneau/rest/RestInfoProvider.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RestInfoProvider (Apache Juneau (incubating) 6.4.1-incubating-SNAPSHOT)</title>
+<title>RestInfoProvider (Apache Juneau 7.0.0-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RestInfoProvider (Apache Juneau (incubating) 6.4.1-incubating-SNAPSHOT)";
+            parent.document.title="RestInfoProvider (Apache Juneau 7.0.0-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/db550d07/content/site/apidocs/org/apache/juneau/rest/RestLogger.NoOp.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/RestLogger.NoOp.html b/content/site/apidocs/org/apache/juneau/rest/RestLogger.NoOp.html
index 5202552..80f13db 100644
--- a/content/site/apidocs/org/apache/juneau/rest/RestLogger.NoOp.html
+++ b/content/site/apidocs/org/apache/juneau/rest/RestLogger.NoOp.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RestLogger.NoOp (Apache Juneau (incubating) 6.4.1-incubating-SNAPSHOT)</title>
+<title>RestLogger.NoOp (Apache Juneau 7.0.0-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RestLogger.NoOp (Apache Juneau (incubating) 6.4.1-incubating-SNAPSHOT)";
+            parent.document.title="RestLogger.NoOp (Apache Juneau 7.0.0-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/db550d07/content/site/apidocs/org/apache/juneau/rest/RestLogger.Normal.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/RestLogger.Normal.html b/content/site/apidocs/org/apache/juneau/rest/RestLogger.Normal.html
index 831ce49..facbd3f 100644
--- a/content/site/apidocs/org/apache/juneau/rest/RestLogger.Normal.html
+++ b/content/site/apidocs/org/apache/juneau/rest/RestLogger.Normal.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RestLogger.Normal (Apache Juneau (incubating) 6.4.1-incubating-SNAPSHOT)</title>
+<title>RestLogger.Normal (Apache Juneau 7.0.0-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RestLogger.Normal (Apache Juneau (incubating) 6.4.1-incubating-SNAPSHOT)";
+            parent.document.title="RestLogger.Normal (Apache Juneau 7.0.0-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/db550d07/content/site/apidocs/org/apache/juneau/rest/RestLogger.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/RestLogger.html b/content/site/apidocs/org/apache/juneau/rest/RestLogger.html
index 44850d7..68b4abe 100644
--- a/content/site/apidocs/org/apache/juneau/rest/RestLogger.html
+++ b/content/site/apidocs/org/apache/juneau/rest/RestLogger.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RestLogger (Apache Juneau (incubating) 6.4.1-incubating-SNAPSHOT)</title>
+<title>RestLogger (Apache Juneau 7.0.0-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RestLogger (Apache Juneau (incubating) 6.4.1-incubating-SNAPSHOT)";
+            parent.document.title="RestLogger (Apache Juneau 7.0.0-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/db550d07/content/site/apidocs/org/apache/juneau/rest/RestMatcher.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/RestMatcher.html b/content/site/apidocs/org/apache/juneau/rest/RestMatcher.html
index 5cb61f0..87933da 100644
--- a/content/site/apidocs/org/apache/juneau/rest/RestMatcher.html
+++ b/content/site/apidocs/org/apache/juneau/rest/RestMatcher.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RestMatcher (Apache Juneau (incubating) 6.4.1-incubating-SNAPSHOT)</title>
+<title>RestMatcher (Apache Juneau 7.0.0-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RestMatcher (Apache Juneau (incubating) 6.4.1-incubating-SNAPSHOT)";
+            parent.document.title="RestMatcher (Apache Juneau 7.0.0-SNAPSHOT)";
         }
     }
     catch(err) {
@@ -135,12 +135,12 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
  <p class='bcode'>
    <jk>public class</jk> MyResource <jk>extends</jk> RestServlet {
 
-      <ja>@RestMethod</ja>(name=<js>"GET"</js>, path=<js>"/foo"</js>, matchers=IsDNT.<jk>class</jk>)
+      <ja>@RestMethod</ja>(name=<jsf>GET</jsf>, path=<js>"/foo"</js>, matchers=IsDNT.<jk>class</jk>)
       <jk>public</jk> Object doGetWithDNT() {
          <jc>// Handle request with Do-Not-Track specified</jc>
       }
 
-      <ja>@RestMethod</ja>(name=<js>"GET"</js>, path=<js>"/foo"</js>)
+      <ja>@RestMethod</ja>(name=<jsf>GET</jsf>, path=<js>"/foo"</js>)
       <jk>public</jk> Object doGetWithoutDNT() {
          <jc>// Handle request without Do-Not-Track specified</jc>
       }

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/db550d07/content/site/apidocs/org/apache/juneau/rest/RestMatcherReflecting.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/RestMatcherReflecting.html b/content/site/apidocs/org/apache/juneau/rest/RestMatcherReflecting.html
index b2491f1..8cfe547 100644
--- a/content/site/apidocs/org/apache/juneau/rest/RestMatcherReflecting.html
+++ b/content/site/apidocs/org/apache/juneau/rest/RestMatcherReflecting.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RestMatcherReflecting (Apache Juneau (incubating) 6.4.1-incubating-SNAPSHOT)</title>
+<title>RestMatcherReflecting (Apache Juneau 7.0.0-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RestMatcherReflecting (Apache Juneau (incubating) 6.4.1-incubating-SNAPSHOT)";
+            parent.document.title="RestMatcherReflecting (Apache Juneau 7.0.0-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/db550d07/content/site/apidocs/org/apache/juneau/rest/RestParam.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/RestParam.html b/content/site/apidocs/org/apache/juneau/rest/RestParam.html
index a684d38..b9fb224 100644
--- a/content/site/apidocs/org/apache/juneau/rest/RestParam.html
+++ b/content/site/apidocs/org/apache/juneau/rest/RestParam.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RestParam (Apache Juneau (incubating) 6.4.1-incubating-SNAPSHOT)</title>
+<title>RestParam (Apache Juneau 7.0.0-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RestParam (Apache Juneau (incubating) 6.4.1-incubating-SNAPSHOT)";
+            parent.document.title="RestParam (Apache Juneau 7.0.0-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/db550d07/content/site/apidocs/org/apache/juneau/rest/RestParamType.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/RestParamType.html b/content/site/apidocs/org/apache/juneau/rest/RestParamType.html
index 6b52e01..af69fb8 100644
--- a/content/site/apidocs/org/apache/juneau/rest/RestParamType.html
+++ b/content/site/apidocs/org/apache/juneau/rest/RestParamType.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RestParamType (Apache Juneau (incubating) 6.4.1-incubating-SNAPSHOT)</title>
+<title>RestParamType (Apache Juneau 7.0.0-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RestParamType (Apache Juneau (incubating) 6.4.1-incubating-SNAPSHOT)";
+            parent.document.title="RestParamType (Apache Juneau 7.0.0-SNAPSHOT)";
         }
     }
     catch(err) {