[juneau-website] branch asf-site updated: Update documentation page.

2018-01-29 Thread jamesbognar
This is an automated email from the ASF dual-hosted git repository.

jamesbognar pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/juneau-website.git


The following commit(s) were added to refs/heads/asf-site by this push:
 new e1bbc0c  Update documentation page.
e1bbc0c is described below

commit e1bbc0c11b80e18f17816a54685f86003d7cb229
Author: JamesBognar 
AuthorDate: Mon Jan 29 08:23:15 2018 -0500

Update documentation page.
---
 content/documentation.html | 74 +-
 1 file changed, 67 insertions(+), 7 deletions(-)

diff --git a/content/documentation.html b/content/documentation.html
index d910c4d..ada448f 100644
--- a/content/documentation.html
+++ b/content/documentation.html
@@ -97,19 +97,79 @@
juneau-config

juneau-rest
+   
+   juneau-rest-server

-   juneau-rest-server
+   Hello
 World Example
+   Class
 Hierarchy
+   Instantiation

-   Remoteable
 Proxies
-   Using
 with Spring or other Injection frameworks
-   Using
 HTTP/2 features
+   Children
+   Router
 Pages
+   Resource
 Resolvers
+   Lifecycle
 Hooks
+   Annotation
 Inheritance

-   juneau-rest-server-jaxrs
-   juneau-rest-client
+   @RestMethod
 Annotation

-   Interface
 proxies against 3rd-party REST interfaces
+   Java
 Method Parameters
+   Method
 Return Types
+   @RestMethod.path()
+   @RestMethod.matchers()

+   @Body
+   
+   Handling
 Form Posts
+   Handling
 Multi-Part Form Posts
+   
+   @FormData
+   @Query
+   @Header
+   Serializers
+   Parsers
+   Properties
+   Transforms
+   Guards
+   Converters
+   Messages
+   Encoders
+   SVL
 Variables
+   Configuration
 Files
+   Static
 files
+   Client
 Versioning
+   OPTIONS
 pages
+   
+   Info
 Providers
+   
+   
 @HtmlDoc
+   
+   Widgets
+   UI
 Customization
+   Stylesheets
+   
+   Default
 Headers
+   Logging
 and Error Handling
+   HTTP
 Status Codes
+   Overloading
 HTTP Methods
+   Built-in
 Parameters
+   Custom
 Serializers and Parsers
+   Using
 with OSGi
+   Remoteable
 Proxies
+   
+   Remoteable
 Proxies - Client Side
+   Remoteable
 Proxies - Server Side
+   Remoteable
 Proxies - @Remoteable Annotation
+   
+   Using
 with Spring or other Injection frameworks
+   Using
 HTTP/2 features
+   Other
 Notes

+   3.2
 - juneau-rest-server-jaxrs
+   3.3
 - juneau-rest-client
+   
+   3.3.1
 - Interface proxies against 3rd-party REST interfaces
+   
+   
juneau-microservice

juneau-microservice-server

-- 
To stop receiving notification emails like this one, please contact
jamesbog...@apache.org.


[juneau] branch master updated: Javadoc updates.

2018-01-29 Thread jamesbognar
This is an automated email from the ASF dual-hosted git repository.

jamesbognar pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/juneau.git


The following commit(s) were added to refs/heads/master by this push:
 new 3c48e1c  Javadoc updates.
3c48e1c is described below

commit 3c48e1cce71cfffec19c453422be0363c87a6b67
Author: JamesBognar 
AuthorDate: Mon Jan 29 08:38:06 2018 -0500

Javadoc updates.
---
 .../src/main/java/org/apache/juneau/annotation/Builder.java|  1 -
 juneau-doc/src/main/javadoc/overview.html  | 10 --
 2 files changed, 8 insertions(+), 3 deletions(-)

diff --git 
a/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/annotation/Builder.java
 
b/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/annotation/Builder.java
index a5c1fea..a3529bb 100644
--- 
a/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/annotation/Builder.java
+++ 
b/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/annotation/Builder.java
@@ -23,7 +23,6 @@ import java.lang.annotation.*;
  * 
  * Example:
  * 
- * 
  * // POJO class.
  * @Builder(MyBeanBuilder.class)
  * public class MyBean {
diff --git a/juneau-doc/src/main/javadoc/overview.html 
b/juneau-doc/src/main/javadoc/overview.html
index 404ba88..b2edee3 100644
--- a/juneau-doc/src/main/javadoc/overview.html
+++ b/juneau-doc/src/main/javadoc/overview.html
@@ -2411,8 +2411,9 @@
}


-   Builders MUST be beans with one or more 
writable properties.
-   The bean properties themselves do 
not need to be readable (e.g. setters without getters).
+   The POJO class can be any type 
including beans.
+   Builders MUST be beans with one or 
more writable properties.
+   The bean properties themselves do 
not need to be readable (i.e. getters are optional).


Builders require two parts:
@@ -2454,6 +2455,11 @@
public MyPojo(MyBuilder b) {...}


+   See Also:
+   
+   {@link 
org.apache.juneau.annotation.Builder}
+   {@link 
org.apache.juneau.transform.Builder}
+   




-- 
To stop receiving notification emails like this one, please contact
jamesbog...@apache.org.