Repository: incubator-juneau Updated Branches: refs/heads/master abdb11388 -> 6f02183cb
Javadoc update. Project: http://git-wip-us.apache.org/repos/asf/incubator-juneau/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-juneau/commit/6f02183c Tree: http://git-wip-us.apache.org/repos/asf/incubator-juneau/tree/6f02183c Diff: http://git-wip-us.apache.org/repos/asf/incubator-juneau/diff/6f02183c Branch: refs/heads/master Commit: 6f02183cbf46c51f150ab3a7945598edc0be438a Parents: abdb113 Author: JamesBognar <[email protected]> Authored: Wed Apr 5 16:09:18 2017 -0400 Committer: JamesBognar <[email protected]> Committed: Wed Apr 5 16:09:18 2017 -0400 ---------------------------------------------------------------------- juneau-core/src/main/java/org/apache/juneau/annotation/Bean.java | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/6f02183c/juneau-core/src/main/java/org/apache/juneau/annotation/Bean.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/annotation/Bean.java b/juneau-core/src/main/java/org/apache/juneau/annotation/Bean.java index 5b7bf93..9c61189 100644 --- a/juneau-core/src/main/java/org/apache/juneau/annotation/Bean.java +++ b/juneau-core/src/main/java/org/apache/juneau/annotation/Bean.java @@ -116,6 +116,10 @@ public @interface Bean { * This is similar in concept to the {@link BeanContext#BEAN_beanTypePropertyName} setting except this annotation * applies only to the annotated class and subclasses whereas the bean context property applies globally on * serializers and parsers. + * <p class='warning'> + * Be careful what value you specify for this. It should not interfere with bean property names or + * common HTML attribute names. + * </p * <p> * The default value if not specified is <js>"_type"</js> unless overridden by the {@link BeanContext#BEAN_beanTypePropertyName} setting. */
