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 2016/08/09 19:53:48 UTC

[15/51] [partial] incubator-juneau git commit: Rename project directories.

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/e6bf97a8/juneau-core/src/main/java/org/apache/juneau/urlencoding/package.html
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/urlencoding/package.html b/juneau-core/src/main/java/org/apache/juneau/urlencoding/package.html
new file mode 100644
index 0000000..612f177
--- /dev/null
+++ b/juneau-core/src/main/java/org/apache/juneau/urlencoding/package.html
@@ -0,0 +1,1309 @@
+<!DOCTYPE HTML>
+<!--
+/***************************************************************************************************************************
+ * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *  
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *  
+ * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations under the License.
+ *
+ ***************************************************************************************************************************/
+ -->
+<html>
+<head>
+	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+	<style type="text/css">
+		/* For viewing in Page Designer */
+		@IMPORT url("../../../../../../javadoc.css");
+
+		/* For viewing in REST interface */
+		@IMPORT url("../htdocs/javadoc.css");
+		body { 
+			margin: 20px; 
+		}	
+	</style>
+	<script>
+		/* Replace all @code and @link tags. */	
+		window.onload = function() {
+			document.body.innerHTML = document.body.innerHTML.replace(/\{\@code ([^\}]+)\}/g, '<code>$1</code>');
+			document.body.innerHTML = document.body.innerHTML.replace(/\{\@link (([^\}]+)\.)?([^\.\}]+)\}/g, '<code>$3</code>');
+		}
+	</script>
+</head>
+<body>
+<p>URL encoding serialization and parsing support</p>
+<script>
+	function toggle(x) {
+		var div = x.nextSibling;
+		while (div != null && div.nodeType != 1)
+			div = div.nextSibling;
+		if (div != null) {
+			var d = div.style.display;
+			if (d == 'block' || d == '') {
+				div.style.display = 'none';
+				x.className += " closed";
+			} else {
+				div.style.display = 'block';
+				x.className = x.className.replace(/(?:^|\s)closed(?!\S)/g , '' );
+			}
+		}
+	}
+</script>
+
+<a id='TOC'></a><h5 class='toc'>Table of Contents</h5>
+<ol class='toc'>
+	<li><p><a class='doclink' href='#Overview'>URL encoding support overview</a></p> 
+	<ol>
+		<li><p><a class='doclink' href='#OverviewExample'>Example</a></p>
+	</ol>
+	<li><p><a class='doclink' href='#UrlEncodingSerializer'>UrlEncodingSerializer and UonSerializer classes</a></p> 
+	<ol>
+		<li><p><a class='doclink' href='#BeanAnnotations'>@Bean and @BeanProperty annotations</a></p>
+		<li><p><a class='doclink' href='#Collections'>Collections</a></p>
+		<li><p><a class='doclink' href='#Recursion'> Non-tree models and recursion detection</a></p>
+		<li><p><a class='doclink' href='#SerializerConfigurableProperties'>Configurable properties</a></p>
+		<li><p><a class='doclink' href='#SerializerOtherNotes'>Other notes</a></p>
+	</ol>
+	<li><p><a class='doclink' href='#UrlEncodingParser'>UrlEncodingParser and UonParser classes</a></p> 
+	<ol>
+		<li><p><a class='doclink' href='#GenericParsing'>Parsing into generic POJO models</a></p>
+		<li><p><a class='doclink' href='#ParserConfigurableProperties'>Configurable properties</a></p>
+		<li><p><a class='doclink' href='#ParserOtherNotes'>Other notes</a></p>
+	</ol>
+	<li><p><a class='doclink' href='#RestApiSupport'>REST API support</a></p> 
+	<ol>
+		<li><p><a class='doclink' href='#RestServerSupport'>REST server support</a></p>
+		<ol>
+		<li><p><a class='doclink' href='#RestServletDefault'>Using RestServletDefault</a></p>
+		<li><p><a class='doclink' href='#RestServlet'>Using RestServlet with annotations</a></p>
+		<li><p><a class='doclink' href='#DefaultProvider'>Using JAX-RS DefaultProvider</a></p>
+		<li><p><a class='doclink' href='#BaseProvider'>Using JAX-RS BaseProvider with annotations</a></p>
+		</ol>
+		<li><p><a class='doclink' href='#RestClientSupport'>REST client support</a></p>
+	</ol>	
+</ol>
+
+<!-- ======================================================================================================== -->
+<a id="Overview"></a>
+<h2 class='topic' onclick='toggle(this)'>1 - URL encoding support overview</h2>
+<div class='topic'>
+	<p>
+		Juneau supports converting arbitrary POJOs to and from URL-encoded strings using ultra-efficient serializers and parsers.<br>
+		The serializer converts POJOs directly to URL-encoded strings without the need for intermediate DOM objects using a highly-efficient state machine.<br>
+		Likewise, the parser creates POJOs directly from URL-encoded strings without the need for intermediate DOM objects. 
+	</p>
+	<p>
+		Juneau uses UON (URL-Encoded Object Notation) for representing POJOs.  
+		The UON specification can be found <a href='doc-files/rfc_uon.txt'>here</a>.
+	</p>
+	<p>
+		Juneau can serialize and parse instances of any of the following POJO types:
+	</p>
+	<ul class='spaced-list'>
+		<li>Java primitives and primitive objects (e.g. <code>String</code>, <code>Integer</code>, <code>Boolean</code>, <code>Float</code>).
+		<li>Java Collections Framework objects (e.g. <code>HashSet</code>, <code>TreeMap</code>) containing anything on this list.
+		<li>Multi-dimensional arrays of any type on this list.
+		<li>Java Beans with properties of any type on this list.
+		<li>Classes with standard transformations to and from <code>Strings</code> (e.g. classes containing <code>toString()</code>, <code>fromString()</code>, <code>valueOf()</code>, <code>constructor(String)</code>).
+		<li>Non-serializable classes and properties with associated <code>PojoTransforms</code> that convert them to serializable forms.
+	</ul>
+	<p>
+		Refer to <a href='../package-summary.html#PojoCategories' class='doclink'>POJO Categories</a> for a complete definition of supported POJOs.
+	</p>
+	<h6 class='topic'>Prerequisites</h6>
+	<p>
+		The Juneau URL-encoding serialization and parsing support does not require any external prerequisites.  
+		It only requires Java 1.6 or above.
+	</p>
+
+	<!-- ======================================================================================================== -->
+	<a id="OverviewExample"></a>
+	<h3 class='topic' onclick='toggle(this)'>1.1 - URL-encoding support overview - example</h3>
+	<div class='topic'>
+		<p>
+			The example shown here is from the Address Book resource located in the <code>org.apache.juneau.sample.war</code> application.<br>
+			The POJO model consists of a <code>List</code> of <code>Person</code> beans, with each <code>Person</code> containing
+				zero or more <code>Address</code> beans.
+		</p>
+		<p>
+			When you point a browser at <code>/sample/addressBook/people/1</code>, the POJO is rendered as HTML:
+		</p>
+		<img class='bordered' src="doc-files/Example_HTML.png">
+		<p>
+			By appending <code>?Accept=application/x-www-form-urlencoded&plainText=true</code> to the URL, you can view the data as a URL-encoded string:
+		</p>
+		<img class='bordered' src="doc-files/Example_UrlEncoding.png">
+		
+		<p>
+			Juneau supports two kinds of serialization:
+		</p>
+		<ul class='spaced-list'>
+			<li>Construction of full URL query parameter strings (e.g. <code>&key=value</code> pairs) from beans and maps.
+			<li>Construction of URL query parameter value strings (e.g. just the <code>value</code> portion of <code>&key=value</code> pairs) from any POJO.  
+		</ul>
+		<p>
+			Top-level beans and maps can serialized as key/value pairs as shown below:
+		</p>
+		<h6 class='figure'>Example:  A bean with 2 string properties, 'foo' and 'baz', serialized to a query string</h6>
+		<p class='bcode'>	http://localhost/sample?<xa>foo</xa>=<xs>bar</xs>&<xa>baz</xa>=<xs>bing</xs></p>
+		<p>
+			Lower-level beans and maps are also serialized as key/value pairs, but are surrounded with a <js>"$o(...)"</js> construct to denote an object mapping, 
+				and uses a comma as the parameter delimiter instead of <js>"&"</js>.<br>
+		</p>
+		<h6 class='figure'>Example:  A bean serialized as a query parameter value.</h6>
+		<p class='bcode'>	http://localhost/sample?<xa>a1</xa>=$o(<xa>foo</xa>=<xs>bar</xs>,<xa>baz</xa>=<xs>bing</xs>)</p>
+		<p>
+			The UON specification defines two separate modes:  
+		</p>
+		<ul class='spaced-list'>
+			<li>Strict mode - Serialized model is fully equivalent to JSON and can be losslessly converted back and forth into a JSON model without additional information.
+			<li>Lax mode - A shortened form that excludes data type information.  Ideal if the data types of values are fixed and already known by the parser.
+		</ul>
+		<table class='styled' style='border-collapse: collapse;'>
+			<tr><th>Java type</th><th>JSON equivalent</th><th>Strict syntax</th><th>Lax syntax</th></tr>
+			<tr>
+				<td>Maps/beans</td>
+				<td>OBJECT</td>
+				<td class='code'><xa>a1</xa>=$o(<xa>b1</xa>=<xs>x1</xs>,<xa>b2</xa>=<xs>x2</xs>)<br><xa>a1</xa>=$o(<xa>b1</xa>=$o(<xa>c1</xa>=<xs>x1</xs>,<xa>c2</xa>=<xs>x2</xs>))</td>
+				<td class='code'><xa>a1</xa>=(<xa>b1</xa>=<xs>x1</xs>,<xa>b2</xa>=<xs>x2</xs>)<br><xa>a1</xa>=(<xa>b1</xa>=(<xa>c1</xa>=<xs>x1</xs>,<xa>c2</xa>=<xs>x2</xs>))</td>
+			</tr>
+			<tr>
+				<td>Collections/arrays</td>
+				<td>ARRAY</td>
+				<td class='code'><xa>a1</xa>=$a(<xs>x1</xs>,<xs>x2</xs>)<br><xa>a1</xa>=$a($a(<xs>x1</xs>,<xs>x2</xs>),$a(<xs>x3</xs>,<xs>x4</xs>))<br><xa>a1</xa>=$a($o(<xa>b1</xa>=<xs>x1</xs>,<xa>b2</xa>=<xs>x2</xs>),$o(<xa>c1</xa>=<xs>x1</xs>,<xa>c2</xa>=<xs>x2</xs>))</td>
+				<td class='code'><xa>a1</xa>=(<xs>x1</xs>,<xs>x2</xs>)<br><xa>a1</xa>=((<xs>x1</xs>,<xs>x2</xs>),(<xs>x3</xs>,<xs>x4</xs>))<br><xa>a1</xa>=((<xa>b1</xa>=<xs>x1</xs>,<xa>b2</xa>=<xs>x2</xs>),(<xa>c1</xa>=<xs>x1</xs>,<xa>c2</xa>=<xs>x2</xs>))</td>
+			</tr>
+			<tr>
+				<td>Booleans</td>
+				<td>BOOLEAN</td>
+				<td class='code'><xa>a1</xa>=$b(<xs>true</xs>)&<xa>a2</xa>=$b(<xs>false</xs>)</td>
+				<td class='code'><xa>a1</xa>=<xs>true</xs>&<xa>a2</xa>=<xs>false</xs></td>
+			</tr>
+			<tr>
+				<td>int/float/double/...</td>
+				<td>NUMBER</td>
+				<td class='code'><xa>a1</xa>=$n(<xs>123</xs>)&<xa>a2</xa>=$n(<xs>1.23e1</xs>)</td>
+				<td class='code'><xa>a1</xa>=<xs>123</xs>&<xa>a2</xa>=<xs>1.23e1</xs></td>
+			</tr>
+			<tr>
+				<td>null</td>
+				<td>NULL</td>
+				<td class='code'><xa>a1</xa>=<xs>%00</xs></td>
+				<td class='code'><xa>a1</xa>=<xs>%00</xs></td>
+			</tr>
+			<tr>
+				<td>String</td>
+				<td>STRING</td>
+				<td class='code'><xa>a1</xa>=<xs>foobar</xs></td>
+				<td class='code'><xa>a1</xa>=<xs>foobar</xs></td>
+			</tr>
+		</table>
+		<p>
+			Refer to the <a href='doc-files/rfc_uon.txt'>UON specification</a> for a complete set of syntax rules.		
+		<p>
+			Transforms can be used to convert non-serializable POJOs into serializable forms, such as converting 
+				<code>Calendar</code> object to ISO8601 strings, or <code><jk>byte</jk>[]</code> arrays to Base-64 encoded strings.<br>
+			These transforms can be associated at various levels:
+		</p>
+		<ul class='spaced-list'>
+			<li>On serializer and parser instances to handle all objects of the class type globally.
+			<li>On classes through the <code><ja>@Bean</ja></code> annotation.
+			<li>On bean properties through the <code><ja>@BeanProperty</ja></code> annotations.
+		</ul>
+		<h6 class='figure'>Example:  A serialized Calendar object using <code>CalendarTransform.RFC2822DTZ</code> transform.</h6>
+		<p class='bcode'>	http://localhost/sample?<xa>a1=<js>Sun~,+03+Mar+1901+09:05:06+GMT</js></p>
+		<p>
+			For more information about transforms, refer to {@link org.apache.juneau.transform}.
+		</p>
+	</div>
+	
+</div>
+
+<!-- ======================================================================================================== -->
+<a id="UrlEncodingSerializer"></a>
+<h2 class='topic' onclick='toggle(this)'>2 - UrlEncodingSerializer and UonSerializer classes</h2>
+<div class='topic'>
+	<p>
+		{@link org.apache.juneau.urlencoding.UrlEncodingSerializer} and {@link org.apache.juneau.urlencoding.UonSerializer} classes are used to convert POJOs to URL-encoded strings.<br>
+		The <code>UonSerializer</code> class converts parameter values to UON notation. 
+		The <code>UrlEncodingSerializer</code> class converts a POJO to key/value URL-Encoded pairs using <code>UonSerializer</code> to serialize the values.
+		If you're trying to construct complete URL-Encoded entities, use <code>UrlEncodingSerializer</code>. 
+		If you're constructing your own key/value pairs, use <code>UonSerializer</code>.
+	</p>	
+	<p>
+		The serializers include several configurable settings.<br>
+		Static reusable instances of serializers are provided with commonly-used settings:
+	</p>
+	<ul class='spaced-list'>
+		<li>{@link org.apache.juneau.urlencoding.UrlEncodingSerializer#DEFAULT} - All default settings, strict mode.
+		<li>{@link org.apache.juneau.urlencoding.UrlEncodingSerializer#DEFAULT_SIMPLE} - All default settings, lax mode.
+		<li>{@link org.apache.juneau.urlencoding.UrlEncodingSerializer#DEFAULT_READABLE} - Use whitespace and indentation for readability.
+		<li>{@link org.apache.juneau.urlencoding.UonSerializer#DEFAULT} - All default settings, strict mode.
+		<li>{@link org.apache.juneau.urlencoding.UonSerializer#DEFAULT_SIMPLE} - All default settings, lax mode.
+		<li>{@link org.apache.juneau.urlencoding.UonSerializer#DEFAULT_READABLE} - Use whitespace and indentation for readability.
+		<li>{@link org.apache.juneau.urlencoding.UonSerializer#DEFAULT_ENCODING} - Same as DEFAULT, but use URL-Encoding on special characters.
+		<li>{@link org.apache.juneau.urlencoding.UonSerializer#DEFAULT_SIMPLE_ENCODING} - Same as DEFAULT_SIMPLE, but use URL-Encoding on special characters.
+	</ul>
+	<p>
+		The general guidelines on which serializer to use is:
+	</p>
+	<ul class='spaced-list'>
+		<li>Use strict mode serializers if the data types of the value are not known on the parsing side, and this
+			information needs to be preserved during transmission.
+		<li>Use lax mode serializers if the data types of the value are known on the parsing side. 
+			For example, if you're serializing/parsing beans, lax mode is usually sufficient since the data types
+			can be inferred from the bean properties.
+		<li>Use encoding serializers when you're using the results to construct a URI yourself, and therefore 
+			need invalid URI characters to be encoded.
+		<li>Use unencoding serializers when you're creating parameter values and passing them off to some other
+			utility class that will itself encode invalid URI characters.
+		<li>Use the readable serializer for debugging purposes.
+	</ul>
+
+	<h6 class='topic'>Notes about examples</h6>
+	<p>
+		The examples shown in this document will use default strict settings.<br>
+		For brevity, the examples will use public fields instead of getters/setters to reduce the size of the examples.<br>
+		In the real world, you'll typically want to use standard bean getters and setters.
+	</p>
+	<p>
+		To start off simple, we'll begin with the following simplified bean and build upon it.
+	</p>
+	<p class='bcode'>
+	<jk>public class</jk> Person {
+		<jc>// Bean properties</jc>
+		<jk>public int</jk> <jf>id</jf>;
+		<jk>public</jk> String <jf>name</jf>;
+
+		<jc>// Bean constructor (needed by parser)</jc>
+		<jk>public</jk> Person() {}
+
+		<jc>// Normal constructor</jc>
+		<jk>public</jk> Person(<jk>int</jk> id, String name) {
+			<jk>this</jk>.<jf>id</jf> = id;
+			<jk>this</jk>.<jf>name</jf> = name;
+		}
+	}
+	</p>
+	<p>
+		The following code shows how to convert this to a URL-encoded value:
+	</p>
+	<p class='bcode'>
+	<jc>// Use serializer with readable output, simple mode.</jc>
+	UonSerializer s = UonSerializer.<jsf>DEFAULT</jsf>;
+
+	<jc>// Create our bean.</jc>
+	Person p = <jk>new</jk> Person(1, <js>"John Smith"</js>);
+
+	<jc>// Serialize the bean to URL-encoded parameter value.</jc>
+	String urlencoded = s.serialize(p);
+	</p>
+	<p>
+		The code above produces the following output:
+	</p>
+	<p class='bcode'>
+	$o(<xa>id</xa>=$n(<xs>1</xs>),<xa>name</xa>=<xs>John+Smith</xs>)
+	</p>
+	<p>
+		The {@link org.apache.juneau.urlencoding.UrlEncodingSerializer} class converts
+		maps and beans into top-level query parameter strings.
+	</p>
+	<p class='bcode'>
+	<jc>// Use serializer with readable output, simple mode.</jc>
+	UrlEncodingSerializer s = UrlEncodingSerializer.<jsf>DEFAULT</jsf>;
+	
+	<jc>// Serialize the bean to URL-encoded query string.</jc>
+	String urlencoded = s.serialize(p);
+	</p>
+	<p>
+		The code above produces the following output:
+	</p>
+	<p class='bcode'>
+	<xa>id</xa>=$n(<xs>1</xs>)&<xa>name</xa>=<xs>John+Smith</xs>
+	</p>
+	<p>
+		The general method guidelines are as follows:
+	</p>
+	<ul class='spaced-list'>
+		<li>Use <code>UonSerializer</code> to create individual query parameter values.
+		<li>Use <code>UrlEncodingSerializer</code> to create complete URL-encoded query strings.
+	</ul>
+	<p>
+		By default, the <code>UrlEncodingSerializer</code> class will URL-Encode special characters, and the <code>UonSerializer</code> will NOT URL-encode special characters.  
+	</p>
+	
+
+	<!-- ======================================================================================================== -->
+	<a id="BeanAnnotations"></a>
+	<h3 class='topic' onclick='toggle(this)'>2.1 - @Bean and @BeanProperty annotations</h3>
+	<div class='topic'>
+		<p>
+			The {@link org.apache.juneau.annotation.Bean @Bean} and {@link org.apache.juneau.annotation.BeanProperty @BeanProperty} annotations
+				are used to customize the behavior of beans across the entire framework.<br>
+			They have various uses:
+		</p>
+		<ul class='spaced-list'>
+			<li>Hiding bean properties.
+			<li>Specifying the ordering of bean properties.
+			<li>Overriding the names of bean properties.
+			<li>Associating transforms at both the class and property level (to convert non-serializable POJOs to serializable forms).
+		</ul>
+		<p>
+			For example, we now add a <code>birthDate</code> property, and associate a transform with it to transform
+				it to an ISO8601 date-time string in GMT time.<br>
+			We'll also add a couple of <code>URI</code> properties.<br>
+			By default, <code>Calendars</code> are treated as beans by the framework, which is usually not how you want them serialized.<br>
+			Using transforms, we can convert them to standardized string forms.
+		</p>
+		<p class='bcode'>	
+	<jk>public class</jk> Person {
+		<jc>// Bean properties</jc>
+		<jk>public int</jk> <jf>id</jf>;
+		<jk>public</jk> String <jf>name</jf>;
+		<jk>public</jk> URI <jf>uri</jf>;
+		<jk>public</jk> URI <jf>addressBookUri</jf>;
+
+		<ja>@BeanProperty</ja>(transform=CalendarTransform.ISO8601DTZ.<jk>class</jk>) <jk>public</jk> Calendar <jf>birthDate</jf>;
+
+
+		<jc>// Bean constructor (needed by parser)</jc>
+		<jk>public</jk> Person() {}
+
+		<jc>// Normal constructor</jc>
+		<jk>public</jk> Person(<jk>int</jk> id, String name, String uri, String addressBookUri, String birthDate) <jk>throws</jk> Exception {
+			<jk>this</jk>.<jf>id</jf> = id;
+			<jk>this</jk>.<jf>name</jf> = name;
+			<jk>this</jk>.<jf>uri</jf> = <jk>new</jk> URI(uri);
+			<jk>this</jk>.<jf>addressBookUri</jf> = <jk>new</jk> URI(addressBookUri);
+			<jk>this</jk>.<jf>birthDate</jf> = <jk>new</jk> GregorianCalendar();
+			<jk>this</jk>.<jf>birthDate</jf>.setTime(DateFormat.<jsm>getDateInstance</jsm>(DateFormat.<jsf>MEDIUM</jsf>).parse(birthDate));
+		}
+	}
+		</p>
+		<p>
+			Next, we alter our code to pass in the birthdate:
+		</p>
+		<p class='bcode'>
+	<jc>// Create our bean.</jc>
+	Person p = <jk>new</jk> Person(1, <js>"John Smith"</js>, <js>"http://sample/addressBook/person/1"</js>, <js>"http://sample/addressBook"</js>, <js>"Aug 12, 1946"</js>);
+		</p>
+		<p>
+			Now when we rerun the sample code, we'll get the following:
+		</p>
+		<p class='bcode'>
+	$o(<xa>id</xa>=$n(<xs>1</xs>),<xa>name</xa>=<xs>John+Smith</xs>,<xa>uri</xa>=<xs>http://sample/addressBook/person/1</xs>,<xa>addressBookUri</xa>=<xs>http://sample/addressBook</xs>,<xa>birthDate</xa>=<xs>1946-08-12T00:00:00Z</xs>)
+		</p>
+		<p>
+			Using <code>UrlEncodingSerializer</code> instead would create the following:
+		</p>
+		<p class='bcode'>
+	<xa>id</xa>=$n(<xs>1</xs>)&<xa>name</xa>=<xs>John+Smith</xs>&<xa>uri</xa>=<xs>http://sample/addressBook/person/1</xs>&<xa>addressBookUri</xa>=<xs>http://sample/addressBook</xs>&<xa>birthDate</xa>=<xs>1946-08-12T00:00:00Z</xs>
+		</p>
+		<p>
+			Another useful feature is the {@link org.apache.juneau.annotation.Bean#propertyNamer()} annotation that allows you to plug in your own
+				logic for determining bean property names.<br>
+			The {@link org.apache.juneau.PropertyNamerDashedLC} is an example of an alternate property namer.
+			It converts bean property names to lowercase-dashed format.
+		</p>
+		<h6 class='figure'>Example</h6>
+		<p class='bcode'>	
+	<ja>@Bean</ja>(propertyNamer=PropertyNamerDashedLC.<jk>class</jk>)
+	<jk>public class</jk> Person {
+		...
+		</p>
+		<h6 class='figure'>Results</h6>
+		<p class='bcode'>
+	$o(<xa>id</xa>=$n(<xs>1</xs>),<xa>name</xa>=<xs>John+Smith</xs>,<xa>uri</xa>=<xs>http://sample/addressBook/person/1</xs>,<xa>address-book-uri</xa>=<xs>http://sample/addressBook</xs>,<xa>birth-date</xa>=<xs>1946-08-12T00:00:00Z</xs>)
+		</p>
+	</div>
+	
+		
+	<!-- ======================================================================================================== -->
+	<a id="Collections"></a>
+	<h3 class='topic' onclick='toggle(this)'>2.2 - Collections</h3>
+	<div class='topic'>
+		<p>
+			In our example, let's add a list-of-beans property to our sample class:
+		</p>
+		<p class='bcode'>
+	<jk>public class</jk> Person {
+		
+		<jc>// Bean properties</jc>
+		<jk>public</jk> LinkedList&lt;Address&gt; <jf>addresses</jf> = <jk>new</jk> LinkedList&lt;Address&gt;();
+		...
+	}
+		</p>
+		<p>
+			The <code>Address</code> class has the following properties defined:
+		</p>
+		<p class='bcode'>
+	<jk>public class</jk> Address {
+
+		<jc>// Bean properties</jc>
+		<jk>public</jk> URI <jf>uri</jf>;
+		<jk>public</jk> URI <jf>personUri</jf>;
+		<jk>public int</jk> <jf>id</jf>;
+		<jk>public</jk> String <jf>street</jf>, <jf>city</jf>, <jf>state</jf>;
+		<jk>public int</jk> <jf>zip</jf>;
+		<jk>public boolean</jk> <jf>isCurrent</jf>;
+	}
+		</p>
+		<p>
+			Next, add some quick-and-dirty code to add an address to our person bean:
+		</p>
+		<p class='bcode'>
+	<jc>// Use serializer with readable output, simple mode.</jc>
+	UonSerializer s = UonSerializer.<jsf>DEFAULT_READABLE</jsf>;
+
+	<jc>// Create our bean.</jc>
+	Person p = <jk>new</jk> Person(1, <js>"John Smith"</js>, <js>"http://sample/addressBook/person/1"</js>, <js>"http://sample/addressBook"</js>, <js>"Aug 12, 1946"</js>);
+	Address a = <jk>new</jk> Address();
+	a.<jf>uri</jf> = <jk>new</jk> URI(<js>"http://sample/addressBook/address/1"</js>);
+	a.<jf>personUri</jf> = <jk>new</jk> URI(<js>"http://sample/addressBook/person/1"</js>);
+	a.<jf>id</jf> = 1;
+	a.<jf>street</jf> = <js>"100 Main Street"</js>;
+	a.<jf>city</jf> = <js>"Anywhereville"</js>;
+	a.<jf>state</jf> = <js>"NY"</js>;
+	a.<jf>zip</jf> = 12345;
+	a.<jf>isCurrent</jf> = <jk>true</jk>;
+	p.<jf>addresses</jf>.add(a);	
+		</p>
+		<p>
+			Now when we run the sample code, we get the following (in readable format):
+		</p>
+		<p class='bcode'>
+	$o(
+		<xa>id</xa>=$n(<xs>1</xs>), 
+		<xa>name</xa>=<xs>John+Smith</xs>, 
+		<xa>uri</xa>=<xs>http://sample/addressBook/person/1</xs>, 
+		<xa>addressBookUri</xa>=<xs>http://sample/addressBook</xs>,
+		<xa>birthDate</xa>=<xs>1946-08-12T00:00:00Z</xs>,
+		<xa>addresses</xa>=$a(
+			$o(
+				<xa>uri</xa>=<xs>http://sample/addressBook/address/1</xs>, 
+				<xa>personUri</xa>=<xs>http://sample/addressBook/person/1</xs>, 
+				<xa>id</xa>=$n(<xs>1</xs>), 
+				<xa>street</xa>=<xs>100+Main+Street</xs>, 
+				<xa>city</xa>=<xs>Anywhereville</xs>, 
+				<xa>state</xa>=<xs>NY</xs>, 
+				<xa>zip</xa>=$n(<xs>12345</xs>), 
+				<xa>isCurrent</xa>=$b(<xs>true</xs>)
+			)
+		)
+	)
+		</p>
+		<p>
+			If we were to use lax mode instead, we would get the following:
+		</p>
+		<p class='bcode'>
+	(
+		<xa>id</xa>=<xs>1</xs>, 
+		<xa>name</xa>=<xs>John+Smith</xs>, 
+		<xa>uri</xa>=<xs>http://sample/addressBook/person/1</xs>, 
+		<xa>addressBookUri</xa>=<xs>http://sample/addressBook</xs>,
+		<xa>birthDate</xa>=<xs>1946-08-12T00:00:00Z</xs>,
+		<xa>addresses</xa>=(
+			(
+				<xa>uri</xa>=<xs>http://sample/addressBook/address/1</xs>, 
+				<xa>personUri</xa>=<xs>http://sample/addressBook/person/1</xs>, 
+				<xa>id</xa>=<xs>1</xs>, 
+				<xa>street</xa>=<xs>100+Main+Street</xs>, 
+				<xa>city</xa>=<xs>Anywhereville</xs>, 
+				<xa>state</xa>=<xs>NY</xs>, 
+				<xa>zip</xa>=<xs>12345</xs>, 
+				<xa>isCurrent</xa>=<xs>true</xs>
+			)
+		)
+	)
+		</p>
+		<p>
+			Note how the data type information is removed, so it's not possible to distinguish between numbers/booleans/strings, and between objects/arrays.
+			However, this is fine if we're parsing back into the same beans, since we can inver the data types from the bean property metadata.
+		</p>
+		<p>
+			If we were to use <code>UrlEncodingSerializer</code> instead, we would get the following:
+		</p>
+		<p class='bcode'>
+	<xa>id</xa>=$n(<xs>1</xs>)& 
+	<xa>name</xa>=<xs>John+Smith</xs>& 
+	<xa>uri</xa>=<xs>http://sample/addressBook/person/1</xs>& 
+	<xa>addressBookUri</xa>=<xs>http://sample/addressBook</xs>&
+	<xa>birthDate</xa>=<xs>1946-08-12T00:00:00Z</xs>&
+	<xa>addresses</xa>=$a(
+		$o(
+			<xa>uri</xa>=<xs>http://sample/addressBook/address/1</xs>, 
+			<xa>personUri</xa>=<xs>http://sample/addressBook/person/1</xs>, 
+			<xa>id</xa>=$n(<xs>1</xs>), 
+			<xa>street</xa>=<xs>100+Main+Street</xs>, 
+			<xa>city</xa>=<xs>Anywhereville</xs>, 
+			<xa>state</xa>=<xs>NY</xs>, 
+			<xa>zip</xa>=$n(<xs>12345</xs>), 
+			<xa>isCurrent</xa>=$b(<xs>true</xs>)
+		)
+	)
+		</p>
+	</div>
+	<p>
+		Note how the top level <code>Person</code> bean is serialized using the standard <js>'&'</js> delimiter, whereas the lower-level <code>Address</code>
+			bean is serialized using the <js>','</js> character to prevent the <code>addresses</code> field from being incompletely parsed.
+	</p>
+	
+
+
+
+	<!-- ======================================================================================================== -->
+	<a id="Recursion"></a>
+	<h3 class='topic' onclick='toggle(this)'>2.3 - Non-tree models and recursion detection</h3>
+	<div class='topic'>
+		<p>
+			The URL-encoding serializer is designed to be used against POJO tree structures. <br> 
+			It expects that there not be loops in the POJO model (e.g. children with references to parents, etc...).<br>
+			If you try to serialize models with loops, you will usually cause a <code>StackOverflowError</code> to 
+				be thrown (if {@link org.apache.juneau.serializer.SerializerContext#SERIALIZER_maxDepth} is not reached first).
+		</p>
+		<p>
+			If you still want to use the URL-encoding serializer on such models, Juneau provides the 
+				{@link org.apache.juneau.serializer.SerializerContext#SERIALIZER_detectRecursions} setting.<br>
+			It tells the serializer to look for instances of an object in the current branch of the tree and
+				skip serialization when a duplicate is encountered.
+		</p>
+		<p>
+			For example, let's make a POJO model out of the following classes:
+		</p>
+		<p class='bcode'>
+	<jk>public class</jk> A {
+		<jk>public</jk> B b;
+	}
+	
+	<jk>public class</jk> B {
+		<jk>public</jk> C c;
+	}
+	
+	<jk>public class</jk> C {
+		<jk>public</jk> A a;
+	}
+		</p>
+		<p>
+			Now we create a model with a loop and serialize the results.
+		</p>
+		<p class='bcode'>
+	<jc>// Clone an existing serializer and set property for detecting recursions.</jc>
+	UrlEncodingSerializer s = UrlEncodingSerializer.<jsf>DEFAULT_READABLE</jsf>.clone().setProperty(SerializerContext.<jsf>SERIALIZER_detectRecursions</jsf>, <jk>true</jk>);
+
+	<jc>// Create a recursive loop.</jc>
+	A a = <jk>new</jk> A();
+	a.<jf>b</jf> = <jk>new</jk> B();
+	a.<jf>b</jf>.<jf>c</jf> = <jk>new</jk> C();
+	a.<jf>b</jf>.<jf>c</jf>.<jf>a</jf> = a;
+	
+	<jc>// Serialize.</jc>
+	String json = s.serialize(a);
+		</p>
+		<p>
+			What we end up with is the following, which does not serialize the contents of the <code>c</code> field:
+		</p>
+		<p class='bcode'>
+	$o(
+		<xa>b</xa>=$o(
+			<xa>c</xa>=$o()
+		)
+	)
+		</p>
+		<p>
+			Without recursion detection enabled, this would cause a stack-overflow error.
+		</p>
+		<p>
+			Recursion detection introduces a performance penalty of around 20%.<br>
+			For this reason the setting is disabled by default.
+		</p>
+	</div>
+
+
+	<!-- ======================================================================================================== -->
+	<a id="SerializerConfigurableProperties"></a>
+	<h3 class='topic' onclick='toggle(this)'>2.4 - Configurable properties</h3>
+	<div class='topic'>
+		<p>
+			See the following classes for all configurable properties that can be used on this serializer:
+		</p>
+		<ul class='spaced-list'>
+			<li>{@link org.apache.juneau.BeanContext} - Bean context properties.
+			<li>{@link org.apache.juneau.urlencoding.UonSerializerContext} - UON serializer context properties.
+			<li>{@link org.apache.juneau.urlencoding.UrlEncodingSerializerContext} - URL-Encoding serializer context properties.
+		</ul>
+	</div>		
+
+
+	<!-- ======================================================================================================== -->
+	<a id="SerializerOtherNotes"></a>
+	<h3 class='topic' onclick='toggle(this)'>2.5 - Other notes</h3>
+	<div class='topic'>
+		<ul class='spaced-list'>
+			<li>Like all other Juneau serializers, the URL-encoding serializers are thread safe and maintain an internal cache of bean classes encountered.<br>
+				For performance reasons, it's recommended that serializers be reused whenever possible instead of always creating new instances.
+		</ul>
+	</div>
+</div>
+
+
+<!-- ======================================================================================================== -->
+<a id="UrlEncodingParser"></a>
+<h2 class='topic' onclick='toggle(this)'>3 - UrlEncodingParser and UonParser classes</h2>
+<div class='topic'>
+	<p>
+		{@link org.apache.juneau.urlencoding.UrlEncodingParser} and {@link org.apache.juneau.urlencoding.UonParser} classes are used to convert URL-encoded strings back into POJOs.<br>
+		The <code>UonParser</code> class converts UON-encoded parameter values to POJOs.
+		The <code>UrlEncodingParser</code> class converts entire URL-Encoded strings to POJOs using <code>UonSerializer</code> to serialize indivisual values.
+		If you're trying to parse an entire URL-Encoded string, use <code>UrlEncodingParser</code>. 
+		If you're trying to parse an individual value (such as that returned by <code>RestServlet.getParameter(name)</code>), use <code>UonParser</code>.
+	</p>	
+	<p>
+		The following static reusable instances of <code>UrlEncodingParser</code> are provided for convenience:
+	</p>
+	<ul class='spaced-list'>
+		<li>{@link org.apache.juneau.urlencoding.UrlEncodingParser#DEFAULT} - Default parser for entire URL-encoded strings, decode <code>%xx</code> sequences.
+		<li>{@link org.apache.juneau.urlencoding.UonParser#DEFAULT} - Default parser for URL-encoded parameter values, don't decode <code>%xx</code> sequences.
+		<li>{@link org.apache.juneau.urlencoding.UonParser#DEFAULT_DECODING} - Default parser for URL-encoded parameter values, decode <code>%xx</code> sequences.
+	</ul>
+	<p>
+		The general guildlines on which parser to use is:
+	</p>
+	<ul class='spaced-list'>
+		<li>Use the <code>DEFAULT</code> parser for parameter values that have already had <code>%xx</code> sequences decoded, 
+			such as when using <code>HttpServletRequest.getParameter(name)</code>.
+		<li>Use the <code>DEFAULT_ENCODED</code> parser if the input has not already had <code>%xx</code> sequences decoded.
+	</ul>
+	<p>
+		Let's build upon the previous example and parse the generated URL-encoded string back into the original bean.<br>
+		We start with the URL-encoded string that was generated.
+	</p>
+	<p class='bcode'>
+	<jc>// Use serializer with readable output.</jc>
+	UonSerializer s = UonSerializer.<jsf>DEFAULT_READABLE</jsf>;
+
+	<jc>// Create our bean.</jc>
+	Person p = <jk>new</jk> Person(1, <js>"John Smith"</js>, <js>"http://sample/addressBook/person/1"</js>, <js>"http://sample/addressBook"</js>, <js>"Aug 12, 1946"</js>);
+	Address a = <jk>new</jk> Address();
+	a.<jf>uri</jf> = <jk>new</jk> URI(<js>"http://sample/addressBook/address/1"</js>);
+	a.<jf>personUri</jf> = <jk>new</jk> URI(<js>"http://sample/addressBook/person/1"</js>);
+	a.<jf>id</jf> = 1;
+	a.<jf>street</jf> = <js>"100 Main Street"</js>;
+	a.<jf>city</jf> = <js>"Anywhereville"</js>;
+	a.<jf>state</jf> = <js>"NY"</js>;
+	a.<jf>zip</jf> = 12345;
+	a.<jf>isCurrent</jf> = <jk>true</jk>;
+	p.<jf>addresses</jf>.add(a);	
+
+	<jc>// Serialize the bean.</jc>
+	String urlencoded = s.serialize(p);
+	</p>
+	<p>
+		This code produced the following:
+	</p>
+	<p class='bcode'>
+	$o(
+		<xa>id</xa>=$n(<xs>1</xs>), 
+		<xa>name</xa>=<xs>John+Smith</xs>, 
+		<xa>uri</xa>=<xs>http://sample/addressBook/person/1</xs>, 
+		<xa>addressBookUri</xa>=<xs>http://sample/addressBook</xs>,
+		<xa>birthDate</xa>=<xs>1946-08-12T00:00:00Z</xs>,
+		<xa>addresses</xa>=$a(
+			$o(
+				<xa>uri</xa>=<xs>http://sample/addressBook/address/1</xs>, 
+				<xa>personUri</xa>=<xs>http://sample/addressBook/person/1</xs>, 
+				<xa>id</xa>=$n(<xs>1</xs>), 
+				<xa>street</xa>=<xs>100+Main+Street</xs>, 
+				<xa>city</xa>=<xs>Anywhereville</xs>, 
+				<xa>state</xa>=<xs>NY</xs>, 
+				<xa>zip</xa>=$n(<xs>12345</xs>), 
+				<xa>isCurrent</xa>=$b(<xs>true</xs>)
+			)
+		)
+	)
+	</p>
+	<p>
+		The code to convert this back into a bean is:
+	</p>
+	<p class='bcode'>
+	<jc>// Parse it back into a bean using the reusable JSON parser.</jc>
+	Person p = UonParser.<jsf>DEFAULT</jsf>.parse(urlencoded, Person.<jk>class</jk>);
+
+	<jc>// Render it back as JSON.</jc>
+	json = JsonSerializer.<jsf>DEFAULT_SIMPLE_READABLE</jsf>.serialize(p);
+	</p>
+	<p>
+		We print it back out to JSON to show that all the data has been preserved:
+	</p>
+	<p class='bcode'>
+	{
+		id: <jk>1</jk>, 
+		name: <js>'John Smith'</js>, 
+		uri: <js>'http://sample/addressBook/person/1'</js>, 
+		addressBookUri: <js>'http://sample/addressBook'</js>, 
+		birthDate: <js>'1946-08-12T00:00:00Z'</js>, 
+		addresses: [
+			{
+				uri: <js>'http://sample/addressBook/address/1'</js>, 
+				personUri: <js>'http://sample/addressBook/person/1'</js>, 
+				id: <jk>1</jk>, 
+				street: <js>'100 Main Street'</js>, 
+				city: <js>'Anywhereville'</js>, 
+				state: <js>'NY'</js>, 
+				zip: <jk>12345</jk>, 
+				isCurrent: <jk>true</jk>
+			}
+		]
+	}	
+	</p>
+	
+
+	<!-- ======================================================================================================== -->
+	<a id="GenericParsing"></a>
+	<h3 class='topic' onclick='toggle(this)'>3.1 - Parsing into generic POJO models</h3>
+	<div class='topic'>
+		<p>
+			The URL-encoding parser is not limited to parsing back into the original bean classes.<br>  
+			If the bean classes are not available on the parsing side, the parser can also be used to 
+				parse into a generic model consisting of <code>Maps</code>, <code>Collections</code>, and primitive
+				objects.
+		</p>
+		<p>
+			You can parse into any <code>Map</code> type (e.g. <code>HashMap</code>, <code>TreeMap</code>), but
+				using {@link org.apache.juneau.ObjectMap} is recommended since it has many convenience methods
+				for converting values to various types.<br> 
+			The same is true when parsing collections.  You can use any Collection (e.g. <code>HashSet</code>, <code>LinkedList</code>)
+				or array (e.g. <code>Object[]</code>, <code>String[]</code>, <code>String[][]</code>), but using 
+				{@link org.apache.juneau.ObjectList} is recommended.
+		</p>
+		<p>
+			When the map or list type is not specified, or is the abstract <code>Map</code>, <code>Collection</code>, or <code>List</code> types, 
+				the parser will use <code>ObjectMap</code> and <code>ObjectList</code> by default.
+		</p>
+		<p>
+			Starting back with our original URL-encoded string:
+		</p>
+		<p class='bcode'>
+	$o(
+		<xa>id</xa>=$n(<xs>1</xs>), 
+		<xa>name</xa>=<xs>John+Smith</xs>, 
+		<xa>uri</xa>=<xs>http://sample/addressBook/person/1</xs>, 
+		<xa>addressBookUri</xa>=<xs>http://sample/addressBook</xs>,
+		<xa>birthDate</xa>=<xs>1946-08-12T00:00:00Z</xs>,
+		<xa>addresses</xa>=$a(
+			$o(
+				<xa>uri</xa>=<xs>http://sample/addressBook/address/1</xs>, 
+				<xa>personUri</xa>=<xs>http://sample/addressBook/person/1</xs>, 
+				<xa>id</xa>=$n(<xs>1</xs>), 
+				<xa>street</xa>=<xs>100+Main+Street</xs>, 
+				<xa>city</xa>=<xs>Anywhereville</xs>, 
+				<xa>state</xa>=<xs>NY</xs>, 
+				<xa>zip</xa>=$n(<xs>12345</xs>), 
+				<xa>isCurrent</xa>=$b(<xs>true</xs>)
+			)
+		)
+	)
+		</p>
+		<p>
+			We can parse this into a generic <code>ObjectMap</code>:
+		</p>
+		<p class='bcode'>	
+	<jc>// Parse URL-encoded string into a generic POJO model.</jc>
+	ObjectMap m = UonParser.<jsf>DEFAULT</jsf>.parse(urlencoded, ObjectMap.<jk>class</jk>);
+
+	<jc>// Convert it back to JSON.</jc>
+	String json = JsonSerializer.<jsf>DEFAULT_SIMPLE_READABLE</jsf>.serialize(m);
+		</p>
+		<p>
+			What we end up with is the exact same output.<br>
+			Even the numbers and booleans are preserved because they are parsed into <code>Number</code> and <code>Boolean</code> objects
+				when parsing into generic models.
+		</p>
+		<p class='bcode'>
+	{
+		id: <jk>1</jk>, 
+		name: <js>'John Smith'</js>, 
+		uri: <js>'http://sample/addressBook/person/1'</js>, 
+		addressBookUri: <js>'http://sample/addressBook'</js>, 
+		birthDate: <js>'1946-08-12T00:00:00Z'</js>, 
+		addresses: [
+			{
+				uri: <js>'http://sample/addressBook/address/1'</js>, 
+				personUri: <js>'http://sample/addressBook/person/1'</js>, 
+				id: <jk>1</jk>, 
+				street: <js>'100 Main Street'</js>, 
+				city: <js>'Anywhereville'</js>, 
+				state: <js>'NY'</js>, 
+				zip: <jk>12345</jk>, 
+				isCurrent: <jk>true</jk>
+			}
+		]
+	}
+		</p>
+		<p>
+			Once parsed into a generic model, various convenience methods are provided on the <code>ObjectMap</code>
+				and <code>ObjectList</code> classes to retrieve values:
+		</p>
+		<p class='bcode'>
+	<jc>// Parse URL-encoded string into a generic POJO model.</jc>
+	ObjectMap m = UonParser.<jsf>DEFAULT</jsf>.parse(urlencoded, ObjectMap.<jk>class</jk>);
+
+	<jc>// Get some simple values.</jc>
+	String name = m.getString(<js>"name"</js>);
+	<jk>int</jk> id = m.getInt(<js>"id"</js>);
+
+	<jc>// Get a value convertable from a String.</jc>
+	URI uri = m.get(URI.<jk>class</jk>, <js>"uri"</js>);
+
+	<jc>// Get a value using a transform.</jc>
+	CalendarTransform transform = <jk>new</jk> CalendarTransform.ISO8601DTZ();
+	Calendar birthDate = m.get(transform, <js>"birthDate"</js>);
+
+	<jc>// Get the addresses.</jc>
+	ObjectList addresses = m.getObjectList(<js>"addresses"</js>);
+
+	<jc>// Get the first address and convert it to a bean.</jc>
+	Address address = addresses.get(Address.<jk>class</jk>, 0);
+		</p>
+
+		<p>
+			As a general rule, parsing into beans is often more efficient than parsing into generic models.<br>
+			And working with beans is often less error prone than working with generic models.
+		</p>		
+	</div>
+
+
+	<!-- ======================================================================================================== -->
+	<a id="ParserConfigurableProperties"></a>
+	<h3 class='topic' onclick='toggle(this)'>3.2 - Configurable properties</h3>
+	<div class='topic'>
+		<p>
+			See the following classes for all configurable properties that can be used on this parser:
+		</p>
+		<ul class='spaced-list'>
+			<li>{@link org.apache.juneau.BeanContext} - Bean context properties.
+			<li>{@link org.apache.juneau.urlencoding.UonParserContext} - UON parser context properties.
+			<li>{@link org.apache.juneau.urlencoding.UrlEncodingParserContext} - URL-Encoding parser context properties.
+		</ul>
+	</div>		
+
+
+	<!-- ======================================================================================================== -->
+	<a id="ParserOtherNotes"></a>
+	<h3 class='topic' onclick='toggle(this)'>3.3 - Other notes</h3>
+	<div class='topic'>
+		<ul class='spaced-list'>
+			<li>Like all other Juneau parsers, the URL-encoding parsers are thread safe and maintain an internal cache of bean classes encountered.<br>
+				For performance reasons, it's recommended that parser be reused whenever possible instead of always creating new instances.
+		</ul>
+	</div>
+	
+</div>
+
+
+<!-- ======================================================================================================== -->
+<a id="RestApiSupport"></a>
+<h2 class='topic' onclick='toggle(this)'>4 - REST API support</h2>
+<div class='topic'>
+	<p>
+		Juneau provides fully-integrated support for URL-encoding serialization/parsing in the REST server and client APIs.<br>
+		The next two sections describe these in detail.
+	</p>
+
+	<!-- ======================================================================================================== -->
+	<a id="RestServerSupport"></a>
+	<h3 class='topic' onclick='toggle(this)'>4.1 - REST server support</h3>
+	<div class='topic'>
+		<p>
+			There are four general ways of defining REST interfaces with support for JSON.
+			Two using the built-in Juneau Server API, and two using the JAX-RS integration component.
+		</p>
+		<ul class='spaced-list'>
+			<li>Create a servlet that subclasses from {@link org.apache.juneau.server.RestServletDefault}.<br>
+					This includes URL-encoding serialization/parsing support by default, in addition to several other media types.
+			<li>Create a servlet that subclasses from {@link org.apache.juneau.server.RestServlet} and specify the
+					URL-encoding serializer and/or parser using the {@link org.apache.juneau.server.annotation.RestResource#serializers()} and
+					{@link org.apache.juneau.server.annotation.RestResource#parsers()} on the entire servlet class, or 
+					the {@link org.apache.juneau.server.annotation.RestMethod#serializers()} and {@link org.apache.juneau.server.annotation.RestMethod#parsers()}
+					annotations on individual methods within the class.
+			<li>Register {@link org.apache.juneau.server.jaxrs.DefaultProvider} with JAX-RS.<br>
+					This includes URL-encoding serialization/parsing support by default, in addition to several other media types.
+			<li>Create and register a subclass of {@link org.apache.juneau.server.jaxrs.BaseProvider} and specify the serializers and parsers to use on JAX-RS resources.
+		</ul>
+		<p>
+			In general, the Juneau REST server API is much more configurable and easier to use than JAX-RS, but beware that the author may be slightly biased in this statement.
+		</p>
+
+		<!-- ======================================================================================================== -->
+		<a id="RestServletDefault"></a>
+		<h4 class='topic' onclick='toggle(this)'>4.1.1 - Using RestServletDefault</h4>
+		<div class='topic'>
+			<p>
+				The quickest way to implement a REST resource with URL-encoding support is to create a subclass of {@link org.apache.juneau.server.RestServletDefault}.<br>
+				This class provides support for JSON, XML, HTML, URL-Encoding, and others.
+			</p>
+			<p>
+				The <code>AddressBookResource</code> example shown in the first chapter uses the <code>RestServletJenaDefault</code> class
+					which is a subclass of <code>RestServletDefault</code> with additional support for RDF languages.<br>
+				The start of the class definition is shown below:
+			</p>
+			<p class='bcode'>
+	<jc>// Proof-of-concept resource that shows off the capabilities of working with POJO resources.
+	// Consists of an in-memory address book repository.</jc>
+	<ja>@RestResource</ja>(
+		messages=<js>"nls/AddressBookResource"</js>,
+		properties={
+			<ja>@Property</ja>(name=UonSerializerContext.<jsf>UON_simpleMode</jsf>, value=<js>"true"</js>),
+			<ja>@Property</ja>(name=HtmlDocSerializerContext.<jsf>HTMLDOC_title</jsf>, value=<js>"$L{title}"</js>),
+			<ja>@Property</ja>(name=HtmlDocSerializerContext.<jsf>HTMLDOC_description</jsf>, value=<js>"$L{description}"</js>),
+			<ja>@Property</ja>(name=HtmlDocSerializerContext.<jsf>HTMLDOC_links</jsf>, value=<js>"{options:'?method=OPTIONS',doc:'doc'}"</js>)
+		},
+		encoders=GzipEncoder.<jk>class</jk>
+	)
+	<jk>public class</jk> AddressBookResource <jk>extends</jk> RestServletJenaDefault {
+			</p>
+			<p>
+				Notice how serializer and parser properties can be specified using the <code>@RestResource.properties()</code> annotation.<br>
+				In this case, we're overriding the <jsf>UON_simpleMode</jsf> property to produce lax UON notation.
+				The remaining properties are specific to the HTML serializer.
+			</p>
+			<p>
+ 				The <code>$L{...}</code> variable represent localized strings pulled from the resource bundle identified by the <code>messages</code> annotation.
+ 				These variables are replaced at runtime based on the HTTP request locale.
+				Several built-in runtime variable types are defined, and the API can be extended to include user-defined variables.
+				See {@link org.apache.juneau.server.RestServlet#getVarResolver()} for more information.
+			</p>
+			<p>
+				This document won't go into all the details of the Juneau <code>RestServlet</code> class.<br>
+				Refer to the {@link org.apache.juneau.server} documentation for more information on the REST servlet class in general.
+			</p>
+			<p>
+				The rest of the code in the resource class consists of REST methods that simply accept and return POJOs.<br>
+				The framework takes care of all content negotiation, serialization/parsing, and error handling.<br>
+				Below are 3 of those methods to give you a general idea of the concept:
+			</p>
+			<p class='bcode'>
+	<jc>// GET person request handler</jc>
+	<ja>@RestMethod</ja>(name=<js>"GET"</js>, path=<js>"/people/{id}/*"</js>, rc={200,404})
+	<jk>public</jk> Person getPerson(RestRequest req, <ja>@Attr</ja> <jk>int</jk> id) throws Exception {
+		properties.put(HtmlDocSerializerContext.<jsf>HTMLDOC_title</jsf>, req.getPathInfo());
+		<jk>return</jk> findPerson(id);
+	}
+	
+	<jc>// POST person handler</jc>
+	<ja>@RestMethod</ja>(name=<js>"POST"</js>, path=<js>"/people"</js>, guards=AdminGuard.<jk>class</jk>, rc={307,404})
+	<jk>public void</jk> createPerson(RestResponse res, <ja>@Content</ja> CreatePerson cp) <jk>throws</jk> Exception {
+		Person p = addressBook.createPerson(cp);
+		res.sendRedirect(p.<jf>uri</jf>);
+	}
+
+	<jc>// DELETE person handler</jc>
+	<ja>@RestMethod</ja>(name=<js>"DELETE"</js>, path=<js>"/people/{id}"</js>, guards=AdminGuard.<jk>class</jk>, rc={200,404})
+	<jk>public</jk> String deletePerson(RestResponse res, <ja>@Attr</ja> <jk>int</jk> id) <jk>throws</jk> Exception {
+		Person p = findPerson(id);
+		addressBook.remove(p);
+		<jk>return</jk> <js>"DELETE successful"</js>;			
+	}	
+			</p>
+			<p>
+				The resource class can be registered with the web application like any other servlet, or can be 
+					defined as a child of another resource through the {@link org.apache.juneau.server.annotation.RestResource#children()} annotation.
+		</div>
+
+		<!-- ======================================================================================================== -->
+		<a id="RestServlet"></a>
+		<h4 class='topic' onclick='toggle(this)'>4.1.2 - Using RestServlet with annotations</h4>
+		<div class='topic'>
+			<p>
+				For fine-tuned control of media types, the {@link org.apache.juneau.server.RestServlet} class 
+					can be subclassed directly.<br>
+				The serializers/parsers can be specified through annotations at the class and/or method levels.
+			</p>
+			<p>
+				An equivalent <code>AddressBookResource</code> class could be defined to only support URL-encoding using
+					the following definition:
+			</p>
+			<p class='bcode'>
+	<ja>@RestResource</ja>(
+		serializers={UrlEncodingSerializer.<jk>class</jk>},
+		parsers={UrlEncodingParser.<jk>class</jk>},
+		properties={
+			<ja>@Property</ja>(name=UonSerializerContext.<jsf>UON_simpleMode</jsf>, value=<js>"true"</js>)
+		}
+	)
+	<jk>public class</jk> AddressBookResource <jk>extends</jk> RestServlet {
+			</p>
+			<p>
+				Likewise, serializers and parsers can be specified/augmented/overridden at the method level like so:
+			</p>
+			<p class='bcode'>
+	<jc>// GET person request handler</jc>
+	<ja>@RestMethod</ja>(name=<js>"GET"</js>, path=<js>"/people/{id}/*"</js>, rc={200,404},
+		serializers={UrlEncodingSerializer.<jk>class</jk>},
+		parsers={UrlEncodingParser.<jk>class</jk>},
+		properties={
+			<ja>@Property</ja>(name=UonSerializerContext.<jsf>UON_simpleMode</jsf>, value=<js>"true"</js>)
+		}
+	)
+	<jk>public</jk> Person getPerson(RestRequest req, <ja>@Attr</ja> <jk>int</jk> id) throws Exception {
+		properties.put(HtmlDocSerializerContext.<jsf>HTMLDOC_title</jsf>, req.getPathInfo());
+		<jk>return</jk> findPerson(id);
+	}
+			</p>
+			<p>
+				The {@link org.apache.juneau.server.annotation.RestMethod#serializersInherit()} and 
+					{@link org.apache.juneau.server.annotation.RestMethod#parsersInherit()} control how various artifacts
+					are inherited from the parent class.<br>
+				Refer to {@link org.apache.juneau.server} for additional information on using these annotations.
+			</p>
+		</div>
+
+		<!-- ======================================================================================================== -->
+		<a id="DefaultProvider"></a>
+		<h4 class='topic' onclick='toggle(this)'>4.1.3 - Using JAX-RS DefaultProvider</h4>
+		<div class='topic'>
+			<p>
+				URL-encoding media type support in JAX-RS can be achieved by using the {@link org.apache.juneau.server.jaxrs.DefaultProvider} class.<br>
+				It implements the JAX-RS <code>MessageBodyReader</code> and <code>MessageBodyWriter</code> interfaces for all Juneau supported media types.
+			</p>
+			<p>
+				The <code>DefaultProvider</code> class definition is shown below:
+			</p>
+			<p class='bcode'>
+	<ja>@Provider</ja>
+	<ja>@Produces</ja>({
+		<js>"application/json"</js>, <js>"text/json"</js>,                 <jc>// JsonSerializer</jc>
+		<js>"application/json+simple"</js>,<js>"text/json+simple"</js>,    <jc>// JsonSerializer.Simple</jc>
+		<js>"application/json+schema"</js>,<js>"text/json+schema"</js>,    <jc>// JsonSchemaSerializer</jc>
+		<js>"text/xml"</js>,                                      <jc>// XmlDocSerializer</jc>
+		<js>"text/xml+simple"</js>,                               <jc>// XmlDocSerializer.Simple</jc>
+		<js>"text/xml+schema"</js>,                               <jc>// XmlSchemaDocSerializer</jc>
+		<js>"text/html"</js>,                                     <jc>// HtmlDocSerializer</jc>
+		<js>"text/uon"</js>,                                      <jc>// UonSerializer</jc>
+		<js>"application/x-www-form-urlencoded"</js>,             <jc>// UrlEncodingSerializer</jc>
+		<js>"text/xml+soap"</js>,                                 <jc>// SoapXmlSerializer</jc>
+		<js>"application/x-java-serialized-object"</js>           <jc>// JavaSerializedObjectSerializer</jc>
+	})
+	<ja>@Consumes</ja>({
+		<js>"application/json"</js>, <js>"text/json"</js>,                 <jc>// JsonParser</jc>
+		<js>"text/xml"</js>,                                      <jc>// XmlParser</jc>
+		<js>"text/html"</js>,                                     <jc>// HtmlParser</jc>
+		<js>"text/uon"</js>,                                      <jc>// UonParser</jc>
+		<js>"application/x-www-form-urlencoded"</js>,             <jc>// UrlEncodingParser</jc>
+		<js>"application/x-java-serialized-object"</js>           <jc>// JavaSerializedObjectParser</jc>
+	})
+	<ja>@JuneauProvider</ja>(
+		serializers={
+			JsonSerializer.<jk>class</jk>,
+			JsonSerializer.Simple.<jk>class</jk>,
+			JsonSchemaSerializer.<jk>class</jk>,
+			XmlDocSerializer.<jk>class</jk>,
+			XmlDocSerializer.Simple.<jk>class</jk>,
+			XmlSchemaDocSerializer.<jk>class</jk>,
+			HtmlDocSerializer.<jk>class</jk>,
+			UonSerializer.<jk>class</jk>,
+			UrlEncodingSerializer.<jk>class</jk>,
+			SoapXmlSerializer.<jk>class</jk>,
+			JavaSerializedObjectSerializer.<jk>class</jk>
+		},
+		parsers={
+			JsonParser.<jk>class</jk>,
+			XmlParser.<jk>class</jk>,
+			HtmlParser.<jk>class</jk>,
+			UonParser.<jk>class</jk>,
+			UrlEncodingParser.<jk>class</jk>,
+			JavaSerializedObjectParser.<jk>class</jk>,
+		}
+	)
+	<jk>public final class</jk> DefaultProvider <jk>extends</jk> BaseProvider {}
+			</p>
+			<p>
+				That's the entire class.  It consists of only annotations to hook up media types to Juneau serializers and parsers.
+				The <ja>@Provider</ja>, <ja>@Produces</ja>, and <ja>@Consumes</ja> annotations are standard JAX-RS annotations, and the <ja>@JuneauProvider</ja> annotation is from Juneau.
+			</p>
+			<p>
+				To enable the provider, you need to make the JAX-RS environment aware of it.
+				In Wink, this is accomplished by adding an entry to a config file.
+			</p>
+			<p class='bcode'>
+	<xt>&lt;web-app</xt> <xa>version</xa>=<xs>"2.3"</xs><xt>&gt;</xt>
+		<xt>&lt;servlet&gt;</xt>
+			<xt>&lt;servlet-name&gt;</xt>WinkService<xt>&lt;/servlet-name&gt;</xt>
+			<xt>&lt;servlet-class&gt;</xt>org.apache.wink.server.internal.servlet.RestServlet<xt>&lt;/servlet-class&gt;</xt>
+			<xt>&lt;init-param&gt;</xt>
+				<xt>&lt;param-name&gt;</xt>applicationConfigLocation<xt>&lt;/param-name&gt;</xt>
+				<xt>&lt;param-value&gt;</xt>/WEB-INF/wink.cfg<xt>&lt;/param-value&gt;</xt>
+			<xt>&lt;/init-param&gt;</xt>
+		<xt>&lt;/servlet&gt;</xt>
+			</p>
+			<p>
+				Simply include a reference to the provider in the configuration file.
+			<p class='bcode'>
+	org.apache.juneau.server.jaxrs.DefaultProvider
+			</p>
+			<p>
+				Properties can be specified on providers through the {@link org.apache.juneau.server.jaxrs.JuneauProvider#properties()} annotation.<br>
+				Properties can also be specified at the method level by using the {@link org.apache.juneau.server.annotation.RestMethod#properties} annotation, like so:
+			</p>
+			<p class='bcode'>
+	<ja>@GET</ja>
+	<ja>@Produces</ja>(<js>"*/*"</js>)
+	<ja>@RestMethod</ja>( <jc>/* Override some properties */</jc>
+		properties={
+			<ja>@Property</ja>(name=UonSerializerContext.<jsf>UON_simpleMode</jsf>, value=<js>"true"</js>)
+		}
+	)
+	<jk>public</jk> Message getMessage() {
+		<jk>return</jk> message;
+	}
+			</p>
+			<h6 class='topic'>Limitations</h6>
+			<p>
+				In general, the Juneau REST API is considerably more flexible than the JAX-RS API, since you can specify and override
+					serializers, parsers, properties, transforms, converters, guards, etc... at both the class and method levels.<br>
+				Therefore, the JAX-RS API has the following limitations that the Juneau Server API does not:
+			</p>
+			<ul class='spaced-list'>
+				<li>The ability to specify different media type providers at the class and method levels.<br> 
+					For example, you may want to use <code>JsonSerializer</code> with one set of properties on 
+						one class, and another instance with different properties on another class.<br>
+					There is currently no way to define this at the class level.<br>
+					You can override properties at the method level, but this can be cumbersome since it would have to be
+						done for all methods in the resource.
+				<li>The Juneau Server API allows you to manipulate properties programatically through the {@link org.apache.juneau.server.RestResponse#setProperty(String,Object)}
+					method, and through the {@link org.apache.juneau.server.annotation.Properties} annotation.<br>
+					There is no equivalent in JAX-RS.
+			</ul>
+		</div>
+
+		<!-- ======================================================================================================== -->
+		<a id="BaseProvider"></a>
+		<h4 class='topic' onclick='toggle(this)'>4.1.4 - Using JAX-RS BaseProvider with annotations</h4>
+		<div class='topic'>
+			<p>
+				To provide support for only JSON media types, you can define your own provider class, like so:
+			</p>
+			<p class='bcode'>
+	<ja>@Provider</ja>
+	<ja>@Produces</ja>({
+		<js>"application/x-www-form-urlencoded"</js>,                 <jc>// UrlEncodingSerializer</jc>
+	})
+	<ja>@Consumes</ja>({
+		<js>"application/x-www-form-urlencoded"</js>                  <jc>// UrlEncodingParser</jc>
+	})
+	<ja>@JuneauProvider</ja>(
+		serializers={
+			UrlEncodingSerializer.<jk>class</jk>
+		},
+		parsers={
+			UrlEncodingParser.<jk>class</jk>,
+		}
+		properties={
+			<ja>@Property</ja>(name=UonSerializerContext.<jsf>UON_simpleMode</jsf>, value=<js>"true"</js>)
+		}
+	)
+	<jk>public final class</jk> MyUrlEncodingProvider <jk>extends</jk> BaseProvider {}
+			</p>
+			<p>
+				Then register it with Wink the same way as <code>DefaultProvider</code>.
+			</p>
+		</div>
+
+	</div>
+
+	<!-- ======================================================================================================== -->
+	<a id="RestClientSupport"></a>
+	<h3 class='topic' onclick='toggle(this)'>4.2 - REST client support</h3>
+	<div class='topic'>
+		<p>
+			The {@link org.apache.juneau.client.RestClient} class provides an easy-to-use REST client interface with 
+				pluggable media type handling using any of the Juneau serializers and parsers.<br>
+			Defining a client to support the URL-encoding media type on HTTP requests and responses can be done in one line of code:
+		</p>
+		<p class='bcode'>
+	<jc>// Create a client to handle URL-encoded requests and responses.</jc>
+	RestClient client = <jk>new</jk> RestClient(UrlEncodingSerializer.<jk>class</jk>, UrlEncodingParser.<jk>class</jk>);
+		</p>
+		<p>
+			The client handles all content negotiation based on the registered serializers and parsers.
+		</p>
+		<p>
+			The following code is pulled from the main method of the <code>ClientTest</code> class in the sample web application, and
+				is run against the <code>AddressBookResource</code> class running within the sample app.<br>
+			It shows how the client can be used to interact with the REST API while completely hiding the negotiated content type and working with nothing more than beans.
+		</p>
+		<h6 class='figure'>Example</h6>
+		<p class='bcode'>
+	String root = <js>"http://localhost:9080/sample/addressBook"</js>;
+	
+	<jc>// Get the current contents of the address book</jc>
+	AddressBook ab = client.doGet(root).getResponse(AddressBook.<jk>class</jk>);
+	System.<jsm>out</jsm>.println(<js>"Number of entries = "</js> + ab.size());
+	
+	<jc>// Delete the existing entries</jc>
+	<jk>for</jk> (Person p : ab) {
+		String r = client.doDelete(p.<jf>uri</jf>).getResponse(String.<jk>class</jk>);
+		System.<jsm>out</jsm>.println(<js>"Deleted person "</js> + p.<jf>name</jf> + <js>", response = "</js> + r);
+	}
+	
+	<jc>// Make sure they're gone</jc>
+	ab = client.doGet(root).getResponse(AddressBook.<jk>class</jk>);
+	System.<jsm>out</jsm>.println(<js>"Number of entries = "</js> + ab.size());
+	
+	<jc>// Add 1st person again</jc>
+	CreatePerson cp = <jk>new</jk> CreatePerson(
+		<js>"Barack Obama"</js>, 
+		<jsm>toCalendar</jsm>(<js>"Aug 4, 1961"</js>),
+		<jk>new</jk> CreateAddress(<js>"1600 Pennsylvania Ave"</js>, <js>"Washington"</js>, <js>"DC"</js>, 20500, <jk>true</jk>),
+		<jk>new</jk> CreateAddress(<js>"5046 S Greenwood Ave"</js>, <js>"Chicago"</js>, <js>"IL"</js>, 60615, <jk>false</jk>)
+	); 
+	Person p = client.doPost(root + <js>"/people"</js>, cp).getResponse(Person.<jk>class</jk>);
+	System.<jsm>out</jsm>.println(<js>"Created person "</js> + p.<jf>name</jf> + <js>", uri = "</js> + p.<jf>uri</jf>);
+	
+	<jc>// Add 2nd person again, but add addresses separately</jc>
+	cp = <jk>new</jk> CreatePerson(
+		<js>"George Walker Bush"</js>, 
+		toCalendar(<js>"Jul 6, 1946"</js>)
+	);
+	p = client.doPost(root + <js>"/people"</js>, cp).getResponse(Person.<jk>class</jk>);
+	System.<jsm>out</jsm>.println(<js>"Created person "</js> + p.<jf>name</jf> + <js>", uri = "</js> + p.<jf>uri</jf>);
+	
+	<jc>// Add addresses to 2nd person</jc>
+	CreateAddress ca = <jk>new</jk> CreateAddress(<js>"43 Prairie Chapel Rd"</js>, <js>"Crawford"</js>, <js>"TX"</js>, 76638, <jk>true</jk>);
+	Address a = client.doPost(p.<jf>uri</jf> + <js>"/addresses"</js>, ca).getResponse(Address.<jk>class</jk>);
+	System.<jsm>out</jsm>.println(<js>"Created address "</js> + a.<jf>uri</jf>);
+				
+	ca = <jk>new</jk> CreateAddress(<js>"1600 Pennsylvania Ave"</js>, <js>"Washington"</js>, <js>"DC"</js>, 20500, <jk>false</jk>);
+	a = client.doPost(p.<jf>uri</jf> + "/addresses"</js>, ca).getResponse(Address.<jk>class</jk>);
+	System.<jsm>out</jsm>.println(<js>"Created address "</js> + a.<jf>uri</jf>);
+	
+	<jc>// Find 1st person, and change name</jc>
+	Person[] pp = client.doGet(root + <js>"?q={name:\"'Barack+Obama'\"}"</js>).getResponse(Person[].<jk>class</jk>);
+	String r = client.doPut(pp[0].<jf>uri</jf> + <js>"/name"</js>, <js>"Barack Hussein Obama"</js>).getResponse(String.<jk>class</jk>);
+	System.<jsm>out</jsm>.println(<js>"Changed name, response = "</js> + r);
+	p = client.doGet(pp[0].<jf>uri</jf>).getResponse(Person.<jk>class</jk>);
+	System.<jsm>out</jsm>.println(<js>"New name = "</js> + p.<jf>name</jf>);
+		</p>
+		<h6 class='figure'>Results</h6>
+		<p class='bcode'>
+	Number of entries = 2
+	Deleted person Barack Obama, response = DELETE successful
+	Deleted person George Walker Bush, response = DELETE successful
+	Number of entries = 0
+	Created person Barack Obama, uri = http://localhost:9080/sample/addressBook/people/3
+	Created person George Walker Bush, uri = http://localhost:9080/sample/addressBook/people/4
+	Created address http://localhost:9080/sample/addressBook/addresses/7
+	Created address http://localhost:9080/sample/addressBook/addresses/8
+	Changed name, response = PUT successful
+	New name = Barack Hussein Obama
+		</p>
+	</div>
+</div>
+<p align="center"><i><b>*** f�n ***</b></i></p>
+
+</body>
+</html>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/e6bf97a8/juneau-core/src/main/java/org/apache/juneau/utils/Args.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/utils/Args.java b/juneau-core/src/main/java/org/apache/juneau/utils/Args.java
new file mode 100644
index 0000000..19086b2
--- /dev/null
+++ b/juneau-core/src/main/java/org/apache/juneau/utils/Args.java
@@ -0,0 +1,245 @@
+/***************************************************************************************************************************
+ * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations under the License.
+ ***************************************************************************************************************************/
+package org.apache.juneau.utils;
+
+import java.util.*;
+
+import org.apache.juneau.*;
+import org.apache.juneau.internal.*;
+
+/**
+ * Utility class to make it easier to work with command-line arguments pass in through a <code>main(String[] args)</code> method.
+ * <p>
+ * Used to parse command-line arguments of the form <js>"[zero or more main arguments] [zero or more optional arguments]"</js>.
+ * <p>
+ * The format of a main argument is a token that does not start with <js>'-'</js>.
+ * <p>
+ * The format of an optional argument is <js>"-argName [zero or more tokens]"</js>.
+ * <p>
+ * <h6 class='topic'>Command-line examples</h6>
+ * <ul>
+ * 	<li><code>java com.sample.MyClass mainArg1</code>
+ * 	<li><code>java com.sample.MyClass mainArg1 mainArg2</code>
+ * 	<li><code>java com.sample.MyClass mainArg1 -optArg1</code>
+ * 	<li><code>java com.sample.MyClass -optArg1</code>
+ * 	<li><code>java com.sample.MyClass mainArg1 -optArg1 optArg1Val</code>
+ * 	<li><code>java com.sample.MyClass mainArg1 -optArg1 optArg1Val1 optArg1Val2</code>
+ * 	<li><code>java com.sample.MyClass mainArg1 -optArg1 optArg1Val1 -optArg1 optArg1Val2</code>
+ * </ul>
+ *
+ * <h6 class='topic'>Code examples</h6>
+ * <p class='bcode'>
+ *
+ * 	<jc>// Main method with arguments</jc>
+ * 	<jk>public static void</jk> <jsm>main</jsm>(String[] args) {
+ *
+ * 		<jc>// Wrap in Args</jc>
+ * 		Args a = new Args(args);
+ *
+ * 		<jc>// One main argument</jc>
+ * 		<jc>// a1</jc>
+ * 		String a1 = a.getArg(0); <jc>// "a1"</jc>
+ * 		String a2 = a.getArg(1); <jc>// null</jc>
+ *
+ * 		<jc>// Two main arguments</jc>
+ * 		<jc>// a1 a2</jc>
+ * 		String a1 = a.getArg(0); <jc>// "a1"</jc>
+ * 		String a2 = a.getArg(1); <jc>// "a2"</jc>
+ *
+ * 		<jc>// One main argument and one optional argument with no value</jc>
+ * 		<jc>// a1 -a2</jc>
+ * 		String a1 = a.getArg(0);
+ * 		<jk>boolean</jk> hasA2 = a.hasArg(<js>"a2"</js>); <jc>// true</jc>
+ * 		<jk>boolean</jk> hasA3 = a.hasArg(<js>"a3"</js>); <jc>// false</jc>
+ *
+ * 		<jc>// One main argument and one optional argument with one value</jc>
+ * 		<jc>// a1 -a2 v2</jc>
+ * 		String a1 = a.getArg(0);
+ * 		String a2 = a.getArg(<js>"a2"</js>); <jc>// "v2"</jc>
+ * 		String a3 = a.getArg(<js>"a3"</js>); <jc>// null</jc>
+ *
+ * 		<jc>// One main argument and one optional argument with two values</jc>
+ * 		<jc>// a1 -a2 v2a v2b</jc>
+ * 		String a1 = a.getArg(0);
+ * 		List&lt;String&gt; a2 = a.getArgs(<js>"a2"</js>); <jc>// Contains ["v2a","v2b"]</jc>
+ * 		List&lt;String&gt; a3 = a.getArgs(<js>"a3"</js>); <jc>// Empty list</jc>
+ *
+ * 		<jc>// Same as previous, except specify optional argument name multiple times</jc>
+ * 		<jc>// a1 -a2 v2a -a2 v2b</jc>
+ * 		String a1 = a.getArg(0);
+ * 		List&lt;String&gt; a2 = a.getArgs(<js>"a2"</js>); <jc>// Contains ["v2a","v2b"]</jc>
+ * 	}
+ * </p>
+ * <p>
+ * Main arguments are available through numeric string keys (e.g. <js>"0"</js>, <js>"1"</js>, ...).
+ * So you could use the {@link ObjectMap} API to convert main arguments directly to POJOs, such as an <code>Enum</code>
+ * <p class='bcode'>
+ * 	<jc>// Get 1st main argument as an Enum</jc>
+ * 	MyEnum e = a.get(MyEnum.<jk>class</jk>, <js>"0"</js>);
+ *
+ * 	<jc>// Get 1st main argument as an integer</jc>
+ * 	int i = a.get(<jk>int</jk>.<jk>class</jk>, <js>"0"</js>);
+ * </p>
+ * <p>
+ * Equivalent operations are available on optional arguments through the {@link #getArg(Class, String)} method.
+ *
+ * @author jbognar
+ */
+public final class Args extends ObjectMap {
+
+	private static final long serialVersionUID = 1L;
+
+	/**
+	 * Constructor.
+	 *
+	 * @param args Arguments passed in through a <code>main(String[] args)</code> method.
+	 */
+	public Args(String[] args) {
+		List<String> argList = new LinkedList<String>(Arrays.asList(args));
+
+		// Capture the main arguments.
+		Integer i = 0;
+		while (! argList.isEmpty()) {
+			String s = argList.get(0);
+			if (StringUtils.startsWith(s,'-'))
+				break;
+			put(i.toString(), argList.remove(0));
+			i++;
+		}
+
+		// Capture the mapped arguments.
+		String key = null;
+		while (! argList.isEmpty()) {
+			String s = argList.remove(0);
+			if (StringUtils.startsWith(s, '-')) {
+				key = s.substring(1);
+				if (key.matches("\\d*"))
+					throw new RuntimeException("Invalid optional key name '"+key+"'");
+				if (! containsKey(key))
+					put(key, new ObjectList());
+			} else {
+				((ObjectList)get(key)).add(s);
+			}
+		}
+	}
+
+	/**
+	 * Returns main argument at the specified index, or <jk>null</jk> if the index is out of range.
+	 * <p>
+	 * Can be used in conjuction with {@link #hasArg(int)} to check for existence of arg.
+	 * <p class='bcode'>
+	 * 	<jc>// Check for no arguments</jc>
+	 * 	<jk>if</jk> (! args.hasArg(0))
+	 * 		printUsageAndExit();
+	 *
+	 * 	<jc>// Get the first argument</jc>
+	 * 	String firstArg = args.getArg(0);
+	 * </p>
+	 * <p>
+	 * Since main arguments are stored as numeric keys, this method is essentially equivalent to...
+	 * <p class='bcode'>
+	 * 	<jc>// Check for no arguments</jc>
+	 * 	<jk>if</jk> (! args.containsKey(<js>"0"</js>))
+	 * 		printUsageAndExit();
+	 *
+	 * 	<jc>// Get the first argument</jc>
+	 * 	String firstArg = args.getString("0");
+	 * </p>
+	 *
+	 * @param i The index position of the main argument (zero-indexed).
+	 * @return The main argument value, or <js>""</js> if argument doesn't exist at that position.
+	 */
+	public String getArg(int i) {
+		return getString(Integer.toString(i));
+	}
+
+	/**
+	 * Returns <jk>true</jk> if argument exists at specified index.
+	 *
+	 * @param i The zero-indexed position of the argument.
+	 * @return <jk>true</jk> if argument exists at specified index.
+	 */
+	public boolean hasArg(int i) {
+		return containsKey(Integer.toString(i));
+	}
+
+	/**
+	 * Returns the optional argument value, or blank if the optional argument was not specified.
+	 * <p>
+	 * If the optional arg has multiple values, returns values as a comma-delimited list.
+	 *
+	 * @param name The optional argument name.
+	 * @return The optional argument value, or blank if the optional argument was not specified.
+	 */
+	public String getArg(String name) {
+		ObjectList l = (ObjectList)get(name);
+		if (l == null || l.size() == 0)
+			return null;
+		if (l.size() == 1)
+			return l.get(0).toString();
+		return Arrays.toString(l.toArray()).replaceAll("[\\[\\]]", "");
+	}
+
+	/**
+	 * Returns the optional argument value converted to the specified object type.
+	 * <p>
+	 * If the optional arg has multiple values, returns only the first converted value.
+	 *
+	 * <dl>
+	 * 	<dt>Example:</dt>
+	 * 	<dd>
+	 *			<p class='bcode'>
+	 * 	<jc>// Command:  java com.sample.MyClass -verbose true -debug 5</jc>
+	 * 	<jk>boolean</jk> b = args.getArg(<jk>boolean</jk>.<jk>class</jk>, <js>"verbose"</js>);
+	 * 	<jk>int</jk> i = args.getArg(<jk>int</jk>.<jk>class</jk>, <js>"debug"</js>);
+	 * 		</p>
+	 * 	</dd>
+	 * </dl>
+	 *
+	 * @param c The class type to convert the value to.
+	 * @param <T> The class type to convert the value to.
+	 * @param name The optional argument name.
+	 * @return The optional argument value, or blank if the optional argument was not specified.
+	 */
+	public <T> T getArg(Class<T> c, String name) {
+		ObjectList l = (ObjectList)get(name);
+		if (l == null || l.size() == 0)
+			return null;
+		return l.get(c, 0);
+	}
+
+	/**
+	 * Returns the optional argument values as a list of strings.
+	 *
+	 * <dl>
+	 * 	<dt>Example:</dt>
+	 * 	<dd>
+	 * 		<p class='bcode'>
+	 * 	<jc>// Command:  java com.sample.MyClass -extraArgs foo bar baz</jc>
+	 * 	List&lt;String&gt; l1 = args.getArgs(<js>"extraArgs"</js>); <jc>// ['foo','bar','baz']</jc>
+	 * 	List&lt;String&gt; l2 = args.getArgs(<js>"nonExistentArgs"</js>); <jc>// An empty list</jc>
+	 * 		</p>
+	 * 	</dd>
+	 * </dl>
+	 *
+	 * @param name The optional argument name.
+	 * @return The optional argument values, or an empty list if the optional argument was not specified.
+	 */
+	@SuppressWarnings({"rawtypes", "unchecked"})
+	public List<String> getArgs(String name) {
+		List l = (ObjectList)get(name);
+		if (l == null)
+			return Collections.emptyList();
+		return l;
+	}
+}

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/e6bf97a8/juneau-core/src/main/java/org/apache/juneau/utils/IOPipe.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/utils/IOPipe.java b/juneau-core/src/main/java/org/apache/juneau/utils/IOPipe.java
new file mode 100644
index 0000000..ffae8f9
--- /dev/null
+++ b/juneau-core/src/main/java/org/apache/juneau/utils/IOPipe.java
@@ -0,0 +1,218 @@
+/***************************************************************************************************************************
+ * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations under the License.
+ ***************************************************************************************************************************/
+package org.apache.juneau.utils;
+
+import static org.apache.juneau.internal.ThrowableUtils.*;
+
+import java.io.*;
+import java.util.*;
+
+import org.apache.juneau.internal.*;
+
+/**
+ * A utility class for piping input streams and readers to output streams and writers.
+ * <p>
+ * 	A typical usage is as follows...
+ * <p class='bcode'>
+ * 	InputStream in = getInputStream();
+ * 	Writer out = getWriter();
+ * 	IOPipe.create(in, out).closeOut().run();
+ * </p>
+ * <p>
+ * 	By default, the input stream is closed and the output stream is not.
+ * 	This can be changed by calling {@link #closeOut()} and {@link #close(boolean, boolean)}.
+ *
+ * @author James Bognar (james.bognar@salesforce.com)
+ */
+@SuppressWarnings("hiding")
+public class IOPipe {
+
+	private Object input, output;
+	private boolean byLines;
+	private boolean closeIn = true, closeOut;
+	private int buffSize = 1024;
+	private LineProcessor lineProcessor;
+
+	private IOPipe(Object input, Object output) {
+		assertFieldNotNull(input, "input");
+		assertFieldNotNull(output, "output");
+
+		if (input instanceof CharSequence)
+			this.input = new StringReader(input.toString());
+		else if (input instanceof InputStream || input instanceof Reader)
+			this.input = input;
+		else
+			illegalArg("Invalid input class type.  Must be one of the following:  InputStream, Reader, CharSequence");
+
+		if (output instanceof OutputStream || output instanceof Writer)
+			this.output = output;
+		else
+			illegalArg("Invalid output class type.  Must be one of the following:  OutputStream, Writer");
+	}
+
+	/**
+	 * Creates a new pipe with the specified input and output.
+	 *
+	 * @param input The input.  Must be one of the following types:  Reader, InputStream, CharSequence.
+	 * @param output The output.  Must be one of the following types:  Writer, OutputStream.
+	 * @return This object (for method chaining).
+	 */
+	public static IOPipe create(Object input, Object output) {
+		return new IOPipe(input, output);
+	}
+
+	/**
+	 * Close output after piping.
+	 *
+	 * @return This object (for method chaining).
+	 */
+	public IOPipe closeOut() {
+		this.closeOut = true;
+		return this;
+	}
+
+	/**
+	 * Specifies whether to close the input and output after piping.
+	 *
+	 * @param in Close input stream.  Default is <jk>true</jk>.
+	 * @param out Close output stream.  Default is <jk>false</jk>.
+	 * @return This object (for method chaining).
+	 */
+	public IOPipe close(boolean in, boolean out) {
+		this.closeIn = in;
+		this.closeOut = out;
+		return this;
+	}
+
+	/**
+	 * Specifies the temporary buffer size.
+	 *
+	 * @param buffSize The buffer size.  Default is <code>1024</code>.
+	 * @return This object (for method chaining).
+	 */
+	public IOPipe buffSize(int buffSize) {
+		assertFieldPositive(buffSize, "buffSize");
+		this.buffSize = buffSize;
+		return this;
+	}
+
+	/**
+	 * Specifies whether the content should be piped line-by-line.
+	 * This can be useful if you're trying to pipe console-based input.
+	 *
+	 * @param byLines Pipe content line-by-line.  Default is <jk>false</jk>.
+	 * @return This object (for method chaining).
+	 */
+	public IOPipe byLines(boolean byLines) {
+		this.byLines = byLines;
+		return this;
+	}
+
+	/**
+	 * Sames as calling {@link #byLines()} with <jk>true</jk>.
+	 *
+	 * @return This object (for method chaining).
+	 */
+	public IOPipe byLines() {
+		this.byLines = true;
+		return this;
+	}
+
+	/**
+	 * Specifies a line processor that can be used to process lines before they're piped to the output.
+	 *
+	 * @param lineProcessor The line processor.
+	 * @return This object (for method chaining).
+	 */
+	public IOPipe lineProcessor(LineProcessor lineProcessor) {
+		this.lineProcessor = lineProcessor;
+		return this;
+	}
+
+	/**
+	 * Interface to implement for the {@link #lineProcessor(LineProcessor)} method.
+	 */
+	public interface LineProcessor {
+		/**
+		 * Process the specified line.
+		 *
+		 * @param line The line to process.
+		 * @return The processed line.
+		 */
+		public String process(String line);
+	}
+
+	/**
+	 * Performs the piping of the input to the output.
+	 *
+	 * @return The number of bytes (if streams) or characters (if readers/writers) piped.
+	 * @throws IOException
+	 */
+	public int run() throws IOException {
+
+		int c = 0;
+
+		try {
+		if (input instanceof InputStream && output instanceof OutputStream && lineProcessor == null) {
+			InputStream in = (InputStream)input;
+			OutputStream out = (OutputStream)output;
+			byte[] b = new byte[buffSize];
+			int i;
+				while ((i = in.read(b)) > 0) {
+					c += i;
+					out.write(b, 0, i);
+				}
+		} else {
+				Reader in = (input instanceof Reader ? (Reader)input : new InputStreamReader((InputStream)input, IOUtils.UTF8));
+				Writer out = (output instanceof Writer ? (Writer)output : new OutputStreamWriter((OutputStream)output, IOUtils.UTF8));
+				output = out;
+				input = in;
+				if (byLines || lineProcessor != null) {
+					Scanner s = new Scanner(in);
+					try {
+						while (s.hasNextLine()) {
+							String l = s.nextLine();
+							if (lineProcessor != null)
+								l = lineProcessor.process(l);
+							if (l != null) {
+								out.write(l);
+								out.write("\n");
+								out.flush();
+								c += l.length() + 1;
+							}
+						}
+					} finally {
+						s.close();
+					}
+				} else {
+					int i;
+					char[] b = new char[buffSize];
+					while ((i = in.read(b)) > 0) {
+						c += i;
+						out.write(b, 0, i);
+					}
+				}
+			}
+			} finally {
+			closeQuietly(input, output);
+		}
+		return c;
+	}
+
+	private void closeQuietly(Object input, Object output) {
+					if (closeIn)
+			IOUtils.closeQuietly(input);
+					if (closeOut)
+			IOUtils.closeQuietly(output);
+	}
+}

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/e6bf97a8/juneau-core/src/main/java/org/apache/juneau/utils/ManifestFile.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/utils/ManifestFile.java b/juneau-core/src/main/java/org/apache/juneau/utils/ManifestFile.java
new file mode 100644
index 0000000..e44e8eb
--- /dev/null
+++ b/juneau-core/src/main/java/org/apache/juneau/utils/ManifestFile.java
@@ -0,0 +1,90 @@
+/***************************************************************************************************************************
+ * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations under the License.
+ ***************************************************************************************************************************/
+package org.apache.juneau.utils;
+
+import java.io.*;
+import java.net.*;
+import java.util.*;
+import java.util.jar.*;
+
+import org.apache.juneau.*;
+import org.apache.juneau.internal.*;
+
+/**
+ * Utility class for working with Jar manifest files.
+ * <p>
+ * Copies the contents of a {@link Manifest} into an {@link ObjectMap} so that the various
+ * 	convenience methods on that class can be used to retrieve values.
+ *
+ * @author James Bognar (james.bognar@salesforce.com)
+ */
+public class ManifestFile extends ObjectMap {
+
+	private static final long serialVersionUID = 1L;
+
+	/**
+	 * Create an instance of this class from a manifest file on the file system.
+	 *
+	 * @param f The manifest file.
+	 * @throws IOException If a problem occurred while trying to read the manifest file.
+	 */
+	public ManifestFile(File f) throws IOException {
+		Manifest mf = new Manifest();
+		FileInputStream fis = new FileInputStream(f);
+		try {
+			mf.read(fis);
+			load(mf);
+		} catch (IOException e) {
+			throw new IOException("Problem detected in MANIFEST.MF.  Contents below:\n" + IOUtils.read(f), e);
+		} finally {
+			IOUtils.closeQuietly(fis);
+		}
+	}
+
+	/**
+	 * Create an instance of this class from a {@link Manifest} object.
+	 *
+	 * @param f The manifest to read from.
+	 */
+	public ManifestFile(Manifest f) {
+		load(f);
+	}
+
+	/**
+	 * Finds and loads the manifest file of the jar file that the specified class is contained within.
+	 *
+	 * @param c The class to get the manifest file of.
+	 * @throws IOException If a problem occurred while trying to read the manifest file.
+	 */
+	public ManifestFile(Class<?> c) throws IOException {
+		String className = c.getSimpleName() + ".class";
+		String classPath = c.getResource(className).toString();
+		if (! classPath.startsWith("jar")) {
+			return;
+		}
+		String manifestPath = classPath.substring(0, classPath.lastIndexOf("!") + 1) +  "/META-INF/MANIFEST.MF";
+		try {
+			Manifest mf = new Manifest(new URL(manifestPath).openStream());
+			load(mf);
+		} catch (MalformedURLException e) {
+			throw new IOException(e);
+		} catch (IOException e) {
+			e.printStackTrace();
+		}
+	}
+
+	private void load(Manifest mf) {
+		for (Map.Entry<Object,Object> e : mf.getMainAttributes().entrySet())
+			put(e.getKey().toString(), e.getValue().toString());
+	}
+}