http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/RestResourceResolverSimple.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/RestResourceResolverSimple.html b/content/site/apidocs/org/apache/juneau/rest/RestResourceResolverSimple.html new file mode 100644 index 0000000..3264a4a --- /dev/null +++ b/content/site/apidocs/org/apache/juneau/rest/RestResourceResolverSimple.html @@ -0,0 +1,320 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!-- NewPage --> +<html lang="en"> +<head> +<!-- Generated by javadoc --> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> +<title>RestResourceResolverSimple (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)</title> +<link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style"> +<script type="text/javascript" src="../../../../script.js"></script> +</head> +<body> +<script type="text/javascript"><!-- + try { + if (location.href.indexOf('is-external=true') == -1) { + parent.document.title="RestResourceResolverSimple (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)"; + } + } + catch(err) { + } +//--> +var methods = {"i0":10}; +var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]}; +var altColor = "altColor"; +var rowColor = "rowColor"; +var tableTab = "tableTab"; +var activeTableTab = "activeTableTab"; +</script> +<noscript> +<div>JavaScript is disabled on your browser.</div> +</noscript> +<!-- ========= START OF TOP NAVBAR ======= --> +<div class="topNav"><a name="navbar.top"> +<!-- --> +</a> +<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> +<a name="navbar.top.firstrow"> +<!-- --> +</a> +<ul class="navList" title="Navigation"> +<li><a href="../../../../overview-summary.html">Overview</a></li> +<li><a href="package-summary.html">Package</a></li> +<li class="navBarCell1Rev">Class</li> +<li><a href="package-tree.html">Tree</a></li> +<li><a href="../../../../deprecated-list.html">Deprecated</a></li> +<li><a href="../../../../index-all.html">Index</a></li> +<li><a href="../../../../help-doc.html">Help</a></li> +</ul> +</div> +<div class="subNav"> +<ul class="navList"> +<li><a href="../../../../org/apache/juneau/rest/RestResourceResolver.html" title="interface in org.apache.juneau.rest"><span class="typeNameLink">Prev Class</span></a></li> +<li><a href="../../../../org/apache/juneau/rest/RestResponse.html" title="class in org.apache.juneau.rest"><span class="typeNameLink">Next Class</span></a></li> +</ul> +<ul class="navList"> +<li><a href="../../../../index.html?org/apache/juneau/rest/RestResourceResolverSimple.html" target="_top">Frames</a></li> +<li><a href="RestResourceResolverSimple.html" target="_top">No Frames</a></li> +</ul> +<ul class="navList" id="allclasses_navbar_top"> +<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> +</ul> +<div> +<script type="text/javascript"><!-- + allClassesLink = document.getElementById("allclasses_navbar_top"); + if(window==top) { + allClassesLink.style.display = "block"; + } + else { + allClassesLink.style.display = "none"; + } + //--> +</script> +</div> +<div> +<ul class="subNavList"> +<li>Summary: </li> +<li>Nested | </li> +<li>Field | </li> +<li><a href="#constructor.summary">Constr</a> | </li> +<li><a href="#method.summary">Method</a></li> +</ul> +<ul class="subNavList"> +<li>Detail: </li> +<li>Field | </li> +<li><a href="#constructor.detail">Constr</a> | </li> +<li><a href="#method.detail">Method</a></li> +</ul> +</div> +<a name="skip.navbar.top"> +<!-- --> +</a></div> +<!-- ========= END OF TOP NAVBAR ========= --> +<!-- ======== START OF CLASS DATA ======== --> +<div class="header"> +<div class="subTitle">org.apache.juneau.rest</div> +<h2 title="Class RestResourceResolverSimple" class="title">Class RestResourceResolverSimple</h2> +</div> +<div class="contentContainer"> +<ul class="inheritance"> +<li><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li> +<li> +<ul class="inheritance"> +<li>org.apache.juneau.rest.RestResourceResolverSimple</li> +</ul> +</li> +</ul> +<div class="description"> +<ul class="blockList"> +<li class="blockList"> +<dl> +<dt>All Implemented Interfaces:</dt> +<dd><a href="../../../../org/apache/juneau/rest/RestResourceResolver.html" title="interface in org.apache.juneau.rest">RestResourceResolver</a></dd> +</dl> +<hr> +<br> +<pre>public class <a href="../../../../src-html/org/apache/juneau/rest/RestResourceResolverSimple.html#line.43">RestResourceResolverSimple</a> +extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> +implements <a href="../../../../org/apache/juneau/rest/RestResourceResolver.html" title="interface in org.apache.juneau.rest">RestResourceResolver</a></pre> +<div class="block">Denotes the default resolver. + + <p> + The default implementation simply instantiates the class using one of the following constructors: + <ul> + <li><code><jk>public</jk> T(RestConfig)</code> + <li><code><jk>public</jk> T()</code> + </ul> + + <p> + The former constructor can be used to get access to the <a href="../../../../org/apache/juneau/rest/RestConfig.html" title="class in org.apache.juneau.rest"><code>RestConfig</code></a> object to get access to the + config file and initialization information or make programmatic modifications to the resource before + full initialization. + + <p> + Non-<code>RestServlet</code> classes can also add the following two methods to get access to the + <a href="../../../../org/apache/juneau/rest/RestConfig.html" title="class in org.apache.juneau.rest"><code>RestConfig</code></a> and <a href="../../../../org/apache/juneau/rest/RestContext.html" title="class in org.apache.juneau.rest"><code>RestContext</code></a> objects: + <ul> + <li><code><jk>public void</jk> init(RestConfig);</code> + <li><code><jk>public void</jk> init(RestContext);</code> + </ul></div> +</li> +</ul> +</div> +<div class="summary"> +<ul class="blockList"> +<li class="blockList"> +<!-- ======== CONSTRUCTOR SUMMARY ======== --> +<ul class="blockList"> +<li class="blockList"><a name="constructor.summary"> +<!-- --> +</a> +<h3>Constructor Summary</h3> +<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> +<caption><span>Constructors</span><span class="tabEnd"> </span></caption> +<tr> +<th class="colOne" scope="col">Constructor and Description</th> +</tr> +<tr class="altColor"> +<td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/apache/juneau/rest/RestResourceResolverSimple.html#RestResourceResolverSimple--">RestResourceResolverSimple</a></span>()</code> </td> +</tr> +</table> +</li> +</ul> +<!-- ========== METHOD SUMMARY =========== --> +<ul class="blockList"> +<li class="blockList"><a name="method.summary"> +<!-- --> +</a> +<h3>Method Summary</h3> +<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> +<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption> +<tr> +<th class="colFirst" scope="col">Modifier and Type</th> +<th class="colLast" scope="col">Method and Description</th> +</tr> +<tr id="i0" class="altColor"> +<td class="colFirst"><code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></code></td> +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/juneau/rest/RestResourceResolverSimple.html#resolve-java.lang.Class-org.apache.juneau.rest.RestConfig-">resolve</a></span>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a><?> c, + <a href="../../../../org/apache/juneau/rest/RestConfig.html" title="class in org.apache.juneau.rest">RestConfig</a> config)</code> +<div class="block">Resolves the specified class to a resource object.</div> +</td> +</tr> +</table> +<ul class="blockList"> +<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> +<!-- --> +</a> +<h3>Methods inherited from class java.lang.<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3> +<code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#clone--" title="class or interface in java.lang">clone</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-" title="class or interface in java.lang">equals</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#finalize--" title="class or interface in java.lang">finalize</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#getClass--" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#hashCode--" title="class or interface in java.lang">hashCode</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#notify--" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang /Object.html?is-external=true#notifyAll--" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#toString--" title="class or interface in java.lang">toString</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait--" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait-long-" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait-long-int-" title="class or interface in java.lang">wait</a></code></li> +</ul> +</li> +</ul> +</li> +</ul> +</div> +<div class="details"> +<ul class="blockList"> +<li class="blockList"> +<!-- ========= CONSTRUCTOR DETAIL ======== --> +<ul class="blockList"> +<li class="blockList"><a name="constructor.detail"> +<!-- --> +</a> +<h3>Constructor Detail</h3> +<a name="RestResourceResolverSimple--"> +<!-- --> +</a> +<ul class="blockListLast"> +<li class="blockList"> +<h4>RestResourceResolverSimple</h4> +<pre>public <a href="../../../../src-html/org/apache/juneau/rest/RestResourceResolverSimple.html#line.43">RestResourceResolverSimple</a>()</pre> +</li> +</ul> +</li> +</ul> +<!-- ============ METHOD DETAIL ========== --> +<ul class="blockList"> +<li class="blockList"><a name="method.detail"> +<!-- --> +</a> +<h3>Method Detail</h3> +<a name="resolve-java.lang.Class-org.apache.juneau.rest.RestConfig-"> +<!-- --> +</a> +<ul class="blockListLast"> +<li class="blockList"> +<h4>resolve</h4> +<pre>public <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> <a href="../../../../src-html/org/apache/juneau/rest/RestResourceResolverSimple.html#line.46">resolve</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a><?> c, + <a href="../../../../org/apache/juneau/rest/RestConfig.html" title="class in org.apache.juneau.rest">RestConfig</a> config) + throws <a href="../../../../org/apache/juneau/rest/RestServletException.html" title="class in org.apache.juneau.rest">RestServletException</a></pre> +<div class="block"><span class="descfrmTypeLabel">Description copied from interface: <code><a href="../../../../org/apache/juneau/rest/RestResourceResolver.html#resolve-java.lang.Class-org.apache.juneau.rest.RestConfig-">RestResourceResolver</a></code></span></div> +<div class="block">Resolves the specified class to a resource object. + + <p> + Subclasses can override this method to provide their own custom resolution. + + <p> + The default implementation simply creates a new class instance using <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true#newInstance--" title="class or interface in java.lang"><code>Class.newInstance()</code></a>.</div> +<dl> +<dt><span class="overrideSpecifyLabel">Specified by:</span></dt> +<dd><code><a href="../../../../org/apache/juneau/rest/RestResourceResolver.html#resolve-java.lang.Class-org.apache.juneau.rest.RestConfig-">resolve</a></code> in interface <code><a href="../../../../org/apache/juneau/rest/RestResourceResolver.html" title="interface in org.apache.juneau.rest">RestResourceResolver</a></code></dd> +<dt><span class="paramLabel">Parameters:</span></dt> +<dd><code>c</code> - The class to resolve.</dd> +<dd><code>config</code> - The initialization configuration for the resource.</dd> +<dt><span class="returnLabel">Returns:</span></dt> +<dd>The instance of that class.</dd> +<dt><span class="throwsLabel">Throws:</span></dt> +<dd><code><a href="../../../../org/apache/juneau/rest/RestServletException.html" title="class in org.apache.juneau.rest">RestServletException</a></code> - If class could not be resolved.</dd> +</dl> +</li> +</ul> +</li> +</ul> +</li> +</ul> +</div> +</div> +<!-- ========= END OF CLASS DATA ========= --> +<!-- ======= START OF BOTTOM NAVBAR ====== --> +<div class="bottomNav"><a name="navbar.bottom"> +<!-- --> +</a> +<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> +<a name="navbar.bottom.firstrow"> +<!-- --> +</a> +<ul class="navList" title="Navigation"> +<li><a href="../../../../overview-summary.html">Overview</a></li> +<li><a href="package-summary.html">Package</a></li> +<li class="navBarCell1Rev">Class</li> +<li><a href="package-tree.html">Tree</a></li> +<li><a href="../../../../deprecated-list.html">Deprecated</a></li> +<li><a href="../../../../index-all.html">Index</a></li> +<li><a href="../../../../help-doc.html">Help</a></li> +</ul> +</div> +<div class="subNav"> +<ul class="navList"> +<li><a href="../../../../org/apache/juneau/rest/RestResourceResolver.html" title="interface in org.apache.juneau.rest"><span class="typeNameLink">Prev Class</span></a></li> +<li><a href="../../../../org/apache/juneau/rest/RestResponse.html" title="class in org.apache.juneau.rest"><span class="typeNameLink">Next Class</span></a></li> +</ul> +<ul class="navList"> +<li><a href="../../../../index.html?org/apache/juneau/rest/RestResourceResolverSimple.html" target="_top">Frames</a></li> +<li><a href="RestResourceResolverSimple.html" target="_top">No Frames</a></li> +</ul> +<ul class="navList" id="allclasses_navbar_bottom"> +<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> +</ul> +<div> +<script type="text/javascript"><!-- + allClassesLink = document.getElementById("allclasses_navbar_bottom"); + if(window==top) { + allClassesLink.style.display = "block"; + } + else { + allClassesLink.style.display = "none"; + } + //--> +</script> +</div> +<div> +<ul class="subNavList"> +<li>Summary: </li> +<li>Nested | </li> +<li>Field | </li> +<li><a href="#constructor.summary">Constr</a> | </li> +<li><a href="#method.summary">Method</a></li> +</ul> +<ul class="subNavList"> +<li>Detail: </li> +<li>Field | </li> +<li><a href="#constructor.detail">Constr</a> | </li> +<li><a href="#method.detail">Method</a></li> +</ul> +</div> +<a name="skip.navbar.bottom"> +<!-- --> +</a></div> +<!-- ======== END OF BOTTOM NAVBAR ======= --> +<p class="legalCopy"><small>Copyright © 2017 <a href="http://www.apache.org/">Apache</a>. All rights reserved.</small></p> +</body> +</html>
http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/RestResponse.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/RestResponse.html b/content/site/apidocs/org/apache/juneau/rest/RestResponse.html index 437dae0..9d9aff1 100644 --- a/content/site/apidocs/org/apache/juneau/rest/RestResponse.html +++ b/content/site/apidocs/org/apache/juneau/rest/RestResponse.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>RestResponse (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)</title> +<title>RestResponse (Apache Juneau (incubating) 6.3.2-incubating-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="RestResponse (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)"; + parent.document.title="RestResponse (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)"; } } catch(err) { @@ -48,7 +48,7 @@ var activeTableTab = "activeTableTab"; </div> <div class="subNav"> <ul class="navList"> -<li><a href="../../../../org/apache/juneau/rest/RestResourceResolver.DEFAULT.html" title="class in org.apache.juneau.rest"><span class="typeNameLink">Prev Class</span></a></li> +<li><a href="../../../../org/apache/juneau/rest/RestResourceResolverSimple.html" title="class in org.apache.juneau.rest"><span class="typeNameLink">Prev Class</span></a></li> <li><a href="../../../../org/apache/juneau/rest/RestServlet.html" title="class in org.apache.juneau.rest"><span class="typeNameLink">Next Class</span></a></li> </ul> <ul class="navList"> @@ -1240,7 +1240,7 @@ extends <a href="http://docs.oracle.com/javaee/5/api/javax/servlet/http/HttpServ </div> <div class="subNav"> <ul class="navList"> -<li><a href="../../../../org/apache/juneau/rest/RestResourceResolver.DEFAULT.html" title="class in org.apache.juneau.rest"><span class="typeNameLink">Prev Class</span></a></li> +<li><a href="../../../../org/apache/juneau/rest/RestResourceResolverSimple.html" title="class in org.apache.juneau.rest"><span class="typeNameLink">Prev Class</span></a></li> <li><a href="../../../../org/apache/juneau/rest/RestServlet.html" title="class in org.apache.juneau.rest"><span class="typeNameLink">Next Class</span></a></li> </ul> <ul class="navList"> http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/RestServlet.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/RestServlet.html b/content/site/apidocs/org/apache/juneau/rest/RestServlet.html index 340ca13..2ed2594 100644 --- a/content/site/apidocs/org/apache/juneau/rest/RestServlet.html +++ b/content/site/apidocs/org/apache/juneau/rest/RestServlet.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>RestServlet (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)</title> +<title>RestServlet (Apache Juneau (incubating) 6.3.2-incubating-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="RestServlet (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)"; + parent.document.title="RestServlet (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)"; } } catch(err) { http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/RestServletDefault.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/RestServletDefault.html b/content/site/apidocs/org/apache/juneau/rest/RestServletDefault.html index 3891348..309aa26 100644 --- a/content/site/apidocs/org/apache/juneau/rest/RestServletDefault.html +++ b/content/site/apidocs/org/apache/juneau/rest/RestServletDefault.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>RestServletDefault (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)</title> +<title>RestServletDefault (Apache Juneau (incubating) 6.3.2-incubating-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="RestServletDefault (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)"; + parent.document.title="RestServletDefault (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)"; } } catch(err) { http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/RestServletException.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/RestServletException.html b/content/site/apidocs/org/apache/juneau/rest/RestServletException.html index b96e3fd..67d40d5 100644 --- a/content/site/apidocs/org/apache/juneau/rest/RestServletException.html +++ b/content/site/apidocs/org/apache/juneau/rest/RestServletException.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>RestServletException (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)</title> +<title>RestServletException (Apache Juneau (incubating) 6.3.2-incubating-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="RestServletException (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)"; + parent.document.title="RestServletException (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)"; } } catch(err) { http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/RestServletGroupDefault.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/RestServletGroupDefault.html b/content/site/apidocs/org/apache/juneau/rest/RestServletGroupDefault.html index 33eac6f..f3f5136 100644 --- a/content/site/apidocs/org/apache/juneau/rest/RestServletGroupDefault.html +++ b/content/site/apidocs/org/apache/juneau/rest/RestServletGroupDefault.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>RestServletGroupDefault (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)</title> +<title>RestServletGroupDefault (Apache Juneau (incubating) 6.3.2-incubating-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="RestServletGroupDefault (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)"; + parent.document.title="RestServletGroupDefault (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)"; } } catch(err) { http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/RestUtils.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/RestUtils.html b/content/site/apidocs/org/apache/juneau/rest/RestUtils.html index ed4db04..973dd81 100644 --- a/content/site/apidocs/org/apache/juneau/rest/RestUtils.html +++ b/content/site/apidocs/org/apache/juneau/rest/RestUtils.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>RestUtils (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)</title> +<title>RestUtils (Apache Juneau (incubating) 6.3.2-incubating-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="RestUtils (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)"; + parent.document.title="RestUtils (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)"; } } catch(err) { http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/StreamResource.Builder.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/StreamResource.Builder.html b/content/site/apidocs/org/apache/juneau/rest/StreamResource.Builder.html index 3f30028..d511d93 100644 --- a/content/site/apidocs/org/apache/juneau/rest/StreamResource.Builder.html +++ b/content/site/apidocs/org/apache/juneau/rest/StreamResource.Builder.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>StreamResource.Builder (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)</title> +<title>StreamResource.Builder (Apache Juneau (incubating) 6.3.2-incubating-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="StreamResource.Builder (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)"; + parent.document.title="StreamResource.Builder (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)"; } } catch(err) { http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/StreamResource.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/StreamResource.html b/content/site/apidocs/org/apache/juneau/rest/StreamResource.html index d59f829..511b9e2 100644 --- a/content/site/apidocs/org/apache/juneau/rest/StreamResource.html +++ b/content/site/apidocs/org/apache/juneau/rest/StreamResource.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>StreamResource (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)</title> +<title>StreamResource (Apache Juneau (incubating) 6.3.2-incubating-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="StreamResource (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)"; + parent.document.title="StreamResource (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)"; } } catch(err) { http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/UrlPathPattern.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/UrlPathPattern.html b/content/site/apidocs/org/apache/juneau/rest/UrlPathPattern.html index 76cc4a7..b545286 100644 --- a/content/site/apidocs/org/apache/juneau/rest/UrlPathPattern.html +++ b/content/site/apidocs/org/apache/juneau/rest/UrlPathPattern.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>UrlPathPattern (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)</title> +<title>UrlPathPattern (Apache Juneau (incubating) 6.3.2-incubating-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="UrlPathPattern (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)"; + parent.document.title="UrlPathPattern (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)"; } } catch(err) { http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/annotation/Body.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/Body.html b/content/site/apidocs/org/apache/juneau/rest/annotation/Body.html index ac540ee..d60f9dc 100644 --- a/content/site/apidocs/org/apache/juneau/rest/annotation/Body.html +++ b/content/site/apidocs/org/apache/juneau/rest/annotation/Body.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>Body (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)</title> +<title>Body (Apache Juneau (incubating) 6.3.2-incubating-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="Body (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)"; + parent.document.title="Body (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)"; } } catch(err) { http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/annotation/FormData.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/FormData.html b/content/site/apidocs/org/apache/juneau/rest/annotation/FormData.html index 48d5ba7..c85ef60 100644 --- a/content/site/apidocs/org/apache/juneau/rest/annotation/FormData.html +++ b/content/site/apidocs/org/apache/juneau/rest/annotation/FormData.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>FormData (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)</title> +<title>FormData (Apache Juneau (incubating) 6.3.2-incubating-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="FormData (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)"; + parent.document.title="FormData (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)"; } } catch(err) { http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/annotation/HasFormData.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/HasFormData.html b/content/site/apidocs/org/apache/juneau/rest/annotation/HasFormData.html index 6f7a815..7aa0330 100644 --- a/content/site/apidocs/org/apache/juneau/rest/annotation/HasFormData.html +++ b/content/site/apidocs/org/apache/juneau/rest/annotation/HasFormData.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>HasFormData (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)</title> +<title>HasFormData (Apache Juneau (incubating) 6.3.2-incubating-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="HasFormData (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)"; + parent.document.title="HasFormData (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)"; } } catch(err) { http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/annotation/HasQuery.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/HasQuery.html b/content/site/apidocs/org/apache/juneau/rest/annotation/HasQuery.html index 177772a..b5e4481 100644 --- a/content/site/apidocs/org/apache/juneau/rest/annotation/HasQuery.html +++ b/content/site/apidocs/org/apache/juneau/rest/annotation/HasQuery.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>HasQuery (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)</title> +<title>HasQuery (Apache Juneau (incubating) 6.3.2-incubating-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="HasQuery (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)"; + parent.document.title="HasQuery (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)"; } } catch(err) { http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/annotation/Header.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/Header.html b/content/site/apidocs/org/apache/juneau/rest/annotation/Header.html index 8a87908..95bd6df 100644 --- a/content/site/apidocs/org/apache/juneau/rest/annotation/Header.html +++ b/content/site/apidocs/org/apache/juneau/rest/annotation/Header.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>Header (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)</title> +<title>Header (Apache Juneau (incubating) 6.3.2-incubating-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="Header (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)"; + parent.document.title="Header (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)"; } } catch(err) { http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/annotation/HtmlDoc.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/HtmlDoc.html b/content/site/apidocs/org/apache/juneau/rest/annotation/HtmlDoc.html index 3d4717f..d2324b0 100644 --- a/content/site/apidocs/org/apache/juneau/rest/annotation/HtmlDoc.html +++ b/content/site/apidocs/org/apache/juneau/rest/annotation/HtmlDoc.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>HtmlDoc (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)</title> +<title>HtmlDoc (Apache Juneau (incubating) 6.3.2-incubating-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="HtmlDoc (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)"; + parent.document.title="HtmlDoc (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)"; } } catch(err) { http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/annotation/Inherit.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/Inherit.html b/content/site/apidocs/org/apache/juneau/rest/annotation/Inherit.html index 607ac72..e5606e7 100644 --- a/content/site/apidocs/org/apache/juneau/rest/annotation/Inherit.html +++ b/content/site/apidocs/org/apache/juneau/rest/annotation/Inherit.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>Inherit (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)</title> +<title>Inherit (Apache Juneau (incubating) 6.3.2-incubating-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="Inherit (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)"; + parent.document.title="Inherit (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)"; } } catch(err) { http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/annotation/Messages.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/Messages.html b/content/site/apidocs/org/apache/juneau/rest/annotation/Messages.html index b6fc1d7..e7fff02 100644 --- a/content/site/apidocs/org/apache/juneau/rest/annotation/Messages.html +++ b/content/site/apidocs/org/apache/juneau/rest/annotation/Messages.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>Messages (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)</title> +<title>Messages (Apache Juneau (incubating) 6.3.2-incubating-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="Messages (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)"; + parent.document.title="Messages (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)"; } } catch(err) { http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/annotation/Method.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/Method.html b/content/site/apidocs/org/apache/juneau/rest/annotation/Method.html index 925661f..5f6530c 100644 --- a/content/site/apidocs/org/apache/juneau/rest/annotation/Method.html +++ b/content/site/apidocs/org/apache/juneau/rest/annotation/Method.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>Method (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)</title> +<title>Method (Apache Juneau (incubating) 6.3.2-incubating-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="Method (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)"; + parent.document.title="Method (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)"; } } catch(err) { http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/annotation/MethodSwagger.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/MethodSwagger.html b/content/site/apidocs/org/apache/juneau/rest/annotation/MethodSwagger.html index b0436be..c4acea9 100644 --- a/content/site/apidocs/org/apache/juneau/rest/annotation/MethodSwagger.html +++ b/content/site/apidocs/org/apache/juneau/rest/annotation/MethodSwagger.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>MethodSwagger (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)</title> +<title>MethodSwagger (Apache Juneau (incubating) 6.3.2-incubating-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="MethodSwagger (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)"; + parent.document.title="MethodSwagger (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)"; } } catch(err) { http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/annotation/Parameter.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/Parameter.html b/content/site/apidocs/org/apache/juneau/rest/annotation/Parameter.html index 2b06e3d..198bc4b 100644 --- a/content/site/apidocs/org/apache/juneau/rest/annotation/Parameter.html +++ b/content/site/apidocs/org/apache/juneau/rest/annotation/Parameter.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>Parameter (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)</title> +<title>Parameter (Apache Juneau (incubating) 6.3.2-incubating-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="Parameter (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)"; + parent.document.title="Parameter (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)"; } } catch(err) { http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/annotation/Path.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/Path.html b/content/site/apidocs/org/apache/juneau/rest/annotation/Path.html index 3d5b797..f62422c 100644 --- a/content/site/apidocs/org/apache/juneau/rest/annotation/Path.html +++ b/content/site/apidocs/org/apache/juneau/rest/annotation/Path.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>Path (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)</title> +<title>Path (Apache Juneau (incubating) 6.3.2-incubating-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="Path (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)"; + parent.document.title="Path (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)"; } } catch(err) { http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/annotation/PathRemainder.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/PathRemainder.html b/content/site/apidocs/org/apache/juneau/rest/annotation/PathRemainder.html index d76c4aa..a313fbc 100644 --- a/content/site/apidocs/org/apache/juneau/rest/annotation/PathRemainder.html +++ b/content/site/apidocs/org/apache/juneau/rest/annotation/PathRemainder.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>PathRemainder (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)</title> +<title>PathRemainder (Apache Juneau (incubating) 6.3.2-incubating-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="PathRemainder (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)"; + parent.document.title="PathRemainder (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)"; } } catch(err) { http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/annotation/Properties.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/Properties.html b/content/site/apidocs/org/apache/juneau/rest/annotation/Properties.html index c87dae5..4bc2b6d 100644 --- a/content/site/apidocs/org/apache/juneau/rest/annotation/Properties.html +++ b/content/site/apidocs/org/apache/juneau/rest/annotation/Properties.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>Properties (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)</title> +<title>Properties (Apache Juneau (incubating) 6.3.2-incubating-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="Properties (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)"; + parent.document.title="Properties (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)"; } } catch(err) { http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/annotation/Property.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/Property.html b/content/site/apidocs/org/apache/juneau/rest/annotation/Property.html index 6b42080..83cb690 100644 --- a/content/site/apidocs/org/apache/juneau/rest/annotation/Property.html +++ b/content/site/apidocs/org/apache/juneau/rest/annotation/Property.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>Property (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)</title> +<title>Property (Apache Juneau (incubating) 6.3.2-incubating-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="Property (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)"; + parent.document.title="Property (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)"; } } catch(err) { http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/annotation/Query.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/Query.html b/content/site/apidocs/org/apache/juneau/rest/annotation/Query.html index 198e534..8297a75 100644 --- a/content/site/apidocs/org/apache/juneau/rest/annotation/Query.html +++ b/content/site/apidocs/org/apache/juneau/rest/annotation/Query.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>Query (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)</title> +<title>Query (Apache Juneau (incubating) 6.3.2-incubating-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="Query (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)"; + parent.document.title="Query (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)"; } } catch(err) { http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/annotation/ResourceSwagger.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/ResourceSwagger.html b/content/site/apidocs/org/apache/juneau/rest/annotation/ResourceSwagger.html index 1e18872..a1cd2f5 100644 --- a/content/site/apidocs/org/apache/juneau/rest/annotation/ResourceSwagger.html +++ b/content/site/apidocs/org/apache/juneau/rest/annotation/ResourceSwagger.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>ResourceSwagger (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)</title> +<title>ResourceSwagger (Apache Juneau (incubating) 6.3.2-incubating-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="ResourceSwagger (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)"; + parent.document.title="ResourceSwagger (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)"; } } catch(err) { http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/annotation/Response.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/Response.html b/content/site/apidocs/org/apache/juneau/rest/annotation/Response.html index a546906..3574059 100644 --- a/content/site/apidocs/org/apache/juneau/rest/annotation/Response.html +++ b/content/site/apidocs/org/apache/juneau/rest/annotation/Response.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>Response (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)</title> +<title>Response (Apache Juneau (incubating) 6.3.2-incubating-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="Response (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)"; + parent.document.title="Response (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)"; } } catch(err) { http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/annotation/RestMethod.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/RestMethod.html b/content/site/apidocs/org/apache/juneau/rest/annotation/RestMethod.html index 1dc9fb2..3560208 100644 --- a/content/site/apidocs/org/apache/juneau/rest/annotation/RestMethod.html +++ b/content/site/apidocs/org/apache/juneau/rest/annotation/RestMethod.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>RestMethod (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)</title> +<title>RestMethod (Apache Juneau (incubating) 6.3.2-incubating-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="RestMethod (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)"; + parent.document.title="RestMethod (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)"; } } catch(err) { http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/annotation/RestResource.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/RestResource.html b/content/site/apidocs/org/apache/juneau/rest/annotation/RestResource.html index 6f88305..1e9f75a 100644 --- a/content/site/apidocs/org/apache/juneau/rest/annotation/RestResource.html +++ b/content/site/apidocs/org/apache/juneau/rest/annotation/RestResource.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>RestResource (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)</title> +<title>RestResource (Apache Juneau (incubating) 6.3.2-incubating-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="RestResource (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)"; + parent.document.title="RestResource (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)"; } } catch(err) { @@ -262,7 +262,7 @@ public @interface <a href="../../../../../src-html/org/apache/juneau/rest/annota </td> </tr> <tr class="rowColor"> -<td class="colFirst"><code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a><? extends <a href="../../../../../org/apache/juneau/rest/RestResourceResolver.html" title="class in org.apache.juneau.rest">RestResourceResolver</a>></code></td> +<td class="colFirst"><code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a><? extends <a href="../../../../../org/apache/juneau/rest/RestResourceResolver.html" title="interface in org.apache.juneau.rest">RestResourceResolver</a>></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/rest/annotation/RestResource.html#resourceResolver--">resourceResolver</a></span></code> <div class="block">Specifies the resolver class to use for resolving child resources by class name.</div> </td> @@ -1161,7 +1161,7 @@ public @interface <a href="../../../../../src-html/org/apache/juneau/rest/annota <ul class="blockList"> <li class="blockList"> <h4>resourceResolver</h4> -<pre>public abstract <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a><? extends <a href="../../../../../org/apache/juneau/rest/RestResourceResolver.html" title="class in org.apache.juneau.rest">RestResourceResolver</a>> <a href="../../../../../src-html/org/apache/juneau/rest/annotation/RestResource.html#line.633">resourceResolver</a></pre> +<pre>public abstract <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a><? extends <a href="../../../../../org/apache/juneau/rest/RestResourceResolver.html" title="interface in org.apache.juneau.rest">RestResourceResolver</a>> <a href="../../../../../src-html/org/apache/juneau/rest/annotation/RestResource.html#line.638">resourceResolver</a></pre> <div class="block">Specifies the resolver class to use for resolving child resources by class name. <p> @@ -1187,11 +1187,16 @@ public @interface <a href="../../../../../src-html/org/apache/juneau/rest/annota Subclasses can be used to provide customized resolution of REST resource class instances. <p> + If not specified on a child resource, the resource resolver is inherited from the parent resource context. + + <p> The programmatic equivalent to this annotation are the <a href="../../../../../org/apache/juneau/rest/RestConfig.html#setResourceResolver-java.lang.Class-"><code>RestConfig.setResourceResolver(Class)</code></a>/ - <a href="../../../../../org/apache/juneau/rest/RestConfig.html#setResourceResolver-org.apache.juneau.rest.RestResourceResolver-"><code>RestConfig.setResourceResolver(RestResourceResolver)</code></a> methods.</div> + <a href="../../../../../org/apache/juneau/rest/RestConfig.html#setResourceResolver-org.apache.juneau.rest.RestResourceResolver-"><code>RestConfig.setResourceResolver(RestResourceResolver)</code></a> methods. + <br>The value (class or instance) can also be set via the servlet context attribute + * <a href="../../../../../org/apache/juneau/rest/RestContext.html#REST_resourceResolver"><code>RestContext.REST_resourceResolver</code></a>.</div> <dl> <dt>Default:</dt> -<dd>org.apache.juneau.rest.RestResourceResolver.class</dd> +<dd>org.apache.juneau.rest.RestResourceResolverSimple.class</dd> </dl> </li> </ul> @@ -1204,7 +1209,7 @@ public @interface <a href="../../../../../src-html/org/apache/juneau/rest/annota <ul class="blockList"> <li class="blockList"> <h4>logger</h4> -<pre>public abstract <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a><? extends <a href="../../../../../org/apache/juneau/rest/RestLogger.html" title="class in org.apache.juneau.rest">RestLogger</a>> <a href="../../../../../src-html/org/apache/juneau/rest/annotation/RestResource.html#line.646">logger</a></pre> +<pre>public abstract <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a><? extends <a href="../../../../../org/apache/juneau/rest/RestLogger.html" title="class in org.apache.juneau.rest">RestLogger</a>> <a href="../../../../../src-html/org/apache/juneau/rest/annotation/RestResource.html#line.651">logger</a></pre> <div class="block">Specifies the logger class to use for logging. <p> @@ -1229,7 +1234,7 @@ public @interface <a href="../../../../../src-html/org/apache/juneau/rest/annota <ul class="blockList"> <li class="blockList"> <h4>callHandler</h4> -<pre>public abstract <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a><? extends <a href="../../../../../org/apache/juneau/rest/RestCallHandler.html" title="class in org.apache.juneau.rest">RestCallHandler</a>> <a href="../../../../../src-html/org/apache/juneau/rest/annotation/RestResource.html#line.659">callHandler</a></pre> +<pre>public abstract <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a><? extends <a href="../../../../../org/apache/juneau/rest/RestCallHandler.html" title="class in org.apache.juneau.rest">RestCallHandler</a>> <a href="../../../../../src-html/org/apache/juneau/rest/annotation/RestResource.html#line.664">callHandler</a></pre> <div class="block">Specifies the REST call handler class. <p> @@ -1254,7 +1259,7 @@ public @interface <a href="../../../../../src-html/org/apache/juneau/rest/annota <ul class="blockList"> <li class="blockList"> <h4>infoProvider</h4> -<pre>public abstract <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a><? extends <a href="../../../../../org/apache/juneau/rest/RestInfoProvider.html" title="class in org.apache.juneau.rest">RestInfoProvider</a>> <a href="../../../../../src-html/org/apache/juneau/rest/annotation/RestResource.html#line.671">infoProvider</a></pre> +<pre>public abstract <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a><? extends <a href="../../../../../org/apache/juneau/rest/RestInfoProvider.html" title="class in org.apache.juneau.rest">RestInfoProvider</a>> <a href="../../../../../src-html/org/apache/juneau/rest/annotation/RestResource.html#line.676">infoProvider</a></pre> <div class="block">Specifies the class used to retrieve title/description/swagger information about a resource. <p> @@ -1278,7 +1283,7 @@ public @interface <a href="../../../../../src-html/org/apache/juneau/rest/annota <ul class="blockList"> <li class="blockList"> <h4>serializerListener</h4> -<pre>public abstract <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a><? extends <a href="../../../../../org/apache/juneau/serializer/SerializerListener.html" title="class in org.apache.juneau.serializer">SerializerListener</a>> <a href="../../../../../src-html/org/apache/juneau/rest/annotation/RestResource.html#line.676">serializerListener</a></pre> +<pre>public abstract <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a><? extends <a href="../../../../../org/apache/juneau/serializer/SerializerListener.html" title="class in org.apache.juneau.serializer">SerializerListener</a>> <a href="../../../../../src-html/org/apache/juneau/rest/annotation/RestResource.html#line.681">serializerListener</a></pre> <div class="block">Specifies the serializer listener class to use for listening for non-fatal errors.</div> <dl> <dt>Default:</dt> @@ -1295,7 +1300,7 @@ public @interface <a href="../../../../../src-html/org/apache/juneau/rest/annota <ul class="blockList"> <li class="blockList"> <h4>parserListener</h4> -<pre>public abstract <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a><? extends <a href="../../../../../org/apache/juneau/parser/ParserListener.html" title="class in org.apache.juneau.parser">ParserListener</a>> <a href="../../../../../src-html/org/apache/juneau/rest/annotation/RestResource.html#line.681">parserListener</a></pre> +<pre>public abstract <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a><? extends <a href="../../../../../org/apache/juneau/parser/ParserListener.html" title="class in org.apache.juneau.parser">ParserListener</a>> <a href="../../../../../src-html/org/apache/juneau/rest/annotation/RestResource.html#line.686">parserListener</a></pre> <div class="block">Specifies the parser listener class to use for listening for non-fatal errors.</div> <dl> <dt>Default:</dt> @@ -1312,7 +1317,7 @@ public @interface <a href="../../../../../src-html/org/apache/juneau/rest/annota <ul class="blockList"> <li class="blockList"> <h4>swagger</h4> -<pre>public abstract <a href="../../../../../org/apache/juneau/rest/annotation/ResourceSwagger.html" title="annotation in org.apache.juneau.rest.annotation">ResourceSwagger</a> <a href="../../../../../src-html/org/apache/juneau/rest/annotation/RestResource.html#line.706">swagger</a></pre> +<pre>public abstract <a href="../../../../../org/apache/juneau/rest/annotation/ResourceSwagger.html" title="annotation in org.apache.juneau.rest.annotation">ResourceSwagger</a> <a href="../../../../../src-html/org/apache/juneau/rest/annotation/RestResource.html#line.711">swagger</a></pre> <div class="block">Provides swagger-specific metadata on this resource. <p> @@ -1349,7 +1354,7 @@ public @interface <a href="../../../../../src-html/org/apache/juneau/rest/annota <ul class="blockListLast"> <li class="blockList"> <h4>htmldoc</h4> -<pre>public abstract <a href="../../../../../org/apache/juneau/rest/annotation/HtmlDoc.html" title="annotation in org.apache.juneau.rest.annotation">HtmlDoc</a> <a href="../../../../../src-html/org/apache/juneau/rest/annotation/RestResource.html#line.750">htmldoc</a></pre> +<pre>public abstract <a href="../../../../../org/apache/juneau/rest/annotation/HtmlDoc.html" title="annotation in org.apache.juneau.rest.annotation">HtmlDoc</a> <a href="../../../../../src-html/org/apache/juneau/rest/annotation/RestResource.html#line.755">htmldoc</a></pre> <div class="block">Provides HTML-doc-specific metadata on this method. <p> http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/annotation/package-frame.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/package-frame.html b/content/site/apidocs/org/apache/juneau/rest/annotation/package-frame.html index ee8871a..472d1ba 100644 --- a/content/site/apidocs/org/apache/juneau/rest/annotation/package-frame.html +++ b/content/site/apidocs/org/apache/juneau/rest/annotation/package-frame.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>org.apache.juneau.rest.annotation (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)</title> +<title>org.apache.juneau.rest.annotation (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)</title> <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/annotation/package-summary.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/package-summary.html b/content/site/apidocs/org/apache/juneau/rest/annotation/package-summary.html index e62f2c6..ee2a78c 100644 --- a/content/site/apidocs/org/apache/juneau/rest/annotation/package-summary.html +++ b/content/site/apidocs/org/apache/juneau/rest/annotation/package-summary.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>org.apache.juneau.rest.annotation (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)</title> +<title>org.apache.juneau.rest.annotation (Apache Juneau (incubating) 6.3.2-incubating-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="org.apache.juneau.rest.annotation (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)"; + parent.document.title="org.apache.juneau.rest.annotation (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)"; } } catch(err) { http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/annotation/package-tree.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/package-tree.html b/content/site/apidocs/org/apache/juneau/rest/annotation/package-tree.html index 344f562..bb129dd 100644 --- a/content/site/apidocs/org/apache/juneau/rest/annotation/package-tree.html +++ b/content/site/apidocs/org/apache/juneau/rest/annotation/package-tree.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>org.apache.juneau.rest.annotation Class Hierarchy (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)</title> +<title>org.apache.juneau.rest.annotation Class Hierarchy (Apache Juneau (incubating) 6.3.2-incubating-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="org.apache.juneau.rest.annotation Class Hierarchy (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)"; + parent.document.title="org.apache.juneau.rest.annotation Class Hierarchy (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)"; } } catch(err) { http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/client/AllowAllRedirects.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/client/AllowAllRedirects.html b/content/site/apidocs/org/apache/juneau/rest/client/AllowAllRedirects.html index 9cde5c9..91ab0b0 100644 --- a/content/site/apidocs/org/apache/juneau/rest/client/AllowAllRedirects.html +++ b/content/site/apidocs/org/apache/juneau/rest/client/AllowAllRedirects.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>AllowAllRedirects (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)</title> +<title>AllowAllRedirects (Apache Juneau (incubating) 6.3.2-incubating-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="AllowAllRedirects (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)"; + parent.document.title="AllowAllRedirects (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)"; } } catch(err) { http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/client/DateHeader.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/client/DateHeader.html b/content/site/apidocs/org/apache/juneau/rest/client/DateHeader.html index f178c66..5ef201c 100644 --- a/content/site/apidocs/org/apache/juneau/rest/client/DateHeader.html +++ b/content/site/apidocs/org/apache/juneau/rest/client/DateHeader.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>DateHeader (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)</title> +<title>DateHeader (Apache Juneau (incubating) 6.3.2-incubating-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="DateHeader (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)"; + parent.document.title="DateHeader (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)"; } } catch(err) { http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/client/HttpMethod.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/client/HttpMethod.html b/content/site/apidocs/org/apache/juneau/rest/client/HttpMethod.html index 4b430d4..34c4fcd 100644 --- a/content/site/apidocs/org/apache/juneau/rest/client/HttpMethod.html +++ b/content/site/apidocs/org/apache/juneau/rest/client/HttpMethod.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>HttpMethod (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)</title> +<title>HttpMethod (Apache Juneau (incubating) 6.3.2-incubating-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="HttpMethod (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)"; + parent.document.title="HttpMethod (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)"; } } catch(err) { http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/client/NameValuePairs.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/client/NameValuePairs.html b/content/site/apidocs/org/apache/juneau/rest/client/NameValuePairs.html index b40b0d3..32e5580 100644 --- a/content/site/apidocs/org/apache/juneau/rest/client/NameValuePairs.html +++ b/content/site/apidocs/org/apache/juneau/rest/client/NameValuePairs.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>NameValuePairs (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)</title> +<title>NameValuePairs (Apache Juneau (incubating) 6.3.2-incubating-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="NameValuePairs (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)"; + parent.document.title="NameValuePairs (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)"; } } catch(err) { http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/client/ResponsePattern.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/client/ResponsePattern.html b/content/site/apidocs/org/apache/juneau/rest/client/ResponsePattern.html index 6bc9ff0..ba075e0 100644 --- a/content/site/apidocs/org/apache/juneau/rest/client/ResponsePattern.html +++ b/content/site/apidocs/org/apache/juneau/rest/client/ResponsePattern.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>ResponsePattern (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)</title> +<title>ResponsePattern (Apache Juneau (incubating) 6.3.2-incubating-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="ResponsePattern (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)"; + parent.document.title="ResponsePattern (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)"; } } catch(err) { http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/client/RestCall.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/client/RestCall.html b/content/site/apidocs/org/apache/juneau/rest/client/RestCall.html index 4b9a58e..c44566a 100644 --- a/content/site/apidocs/org/apache/juneau/rest/client/RestCall.html +++ b/content/site/apidocs/org/apache/juneau/rest/client/RestCall.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>RestCall (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)</title> +<title>RestCall (Apache Juneau (incubating) 6.3.2-incubating-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="RestCall (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)"; + parent.document.title="RestCall (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)"; } } catch(err) { http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/client/RestCallException.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/client/RestCallException.html b/content/site/apidocs/org/apache/juneau/rest/client/RestCallException.html index 86c0314..e7d0f07 100644 --- a/content/site/apidocs/org/apache/juneau/rest/client/RestCallException.html +++ b/content/site/apidocs/org/apache/juneau/rest/client/RestCallException.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>RestCallException (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)</title> +<title>RestCallException (Apache Juneau (incubating) 6.3.2-incubating-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="RestCallException (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)"; + parent.document.title="RestCallException (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)"; } } catch(err) { http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/client/RestCallInterceptor.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/client/RestCallInterceptor.html b/content/site/apidocs/org/apache/juneau/rest/client/RestCallInterceptor.html index 5cfca79..b2ac151 100644 --- a/content/site/apidocs/org/apache/juneau/rest/client/RestCallInterceptor.html +++ b/content/site/apidocs/org/apache/juneau/rest/client/RestCallInterceptor.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>RestCallInterceptor (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)</title> +<title>RestCallInterceptor (Apache Juneau (incubating) 6.3.2-incubating-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="RestCallInterceptor (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)"; + parent.document.title="RestCallInterceptor (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)"; } } catch(err) { http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/client/RestCallLogger.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/client/RestCallLogger.html b/content/site/apidocs/org/apache/juneau/rest/client/RestCallLogger.html index a6bcb77..af06329 100644 --- a/content/site/apidocs/org/apache/juneau/rest/client/RestCallLogger.html +++ b/content/site/apidocs/org/apache/juneau/rest/client/RestCallLogger.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>RestCallLogger (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)</title> +<title>RestCallLogger (Apache Juneau (incubating) 6.3.2-incubating-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="RestCallLogger (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)"; + parent.document.title="RestCallLogger (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)"; } } catch(err) { http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/ebea5c00/content/site/apidocs/org/apache/juneau/rest/client/RestClient.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/rest/client/RestClient.html b/content/site/apidocs/org/apache/juneau/rest/client/RestClient.html index b369bf3..fe5db0e 100644 --- a/content/site/apidocs/org/apache/juneau/rest/client/RestClient.html +++ b/content/site/apidocs/org/apache/juneau/rest/client/RestClient.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>RestClient (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)</title> +<title>RestClient (Apache Juneau (incubating) 6.3.2-incubating-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="RestClient (Apache Juneau (incubating) 6.3.1-incubating-SNAPSHOT)"; + parent.document.title="RestClient (Apache Juneau (incubating) 6.3.2-incubating-SNAPSHOT)"; } } catch(err) { @@ -294,7 +294,7 @@ extends <a href="../../../../../org/apache/juneau/CoreObject.html" title="class <!-- --> </a> <h3>Methods inherited from class org.apache.juneau.<a href="../../../../../org/apache/juneau/CoreObject.html" title="class in org.apache.juneau">CoreObject</a></h3> -<code><a href="../../../../../org/apache/juneau/CoreObject.html#builder--">builder</a>, <a href="../../../../../org/apache/juneau/CoreObject.html#createContext-java.lang.Class-">createContext</a>, <a href="../../../../../org/apache/juneau/CoreObject.html#createPropertyStore--">createPropertyStore</a>, <a href="../../../../../org/apache/juneau/CoreObject.html#getBeanContext--">getBeanContext</a>, <a href="../../../../../org/apache/juneau/CoreObject.html#getOverrideProperties--">getOverrideProperties</a>, <a href="../../../../../org/apache/juneau/CoreObject.html#object--">object</a>, <a href="../../../../../org/apache/juneau/CoreObject.html#string--">string</a></code></li> +<code><a href="../../../../../org/apache/juneau/CoreObject.html#builder--">builder</a>, <a href="../../../../../org/apache/juneau/CoreObject.html#createContext-java.lang.Class-">createContext</a>, <a href="../../../../../org/apache/juneau/CoreObject.html#createPropertyStore--">createPropertyStore</a>, <a href="../../../../../org/apache/juneau/CoreObject.html#getBeanContext--">getBeanContext</a>, <a href="../../../../../org/apache/juneau/CoreObject.html#object--">object</a>, <a href="../../../../../org/apache/juneau/CoreObject.html#string--">string</a></code></li> </ul> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
