Update of /cvsroot/sunxacml/sunxacml/com/sun/xacml/attr
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18725/com/sun/xacml/attr
Modified Files:
StringAttribute.java
Log Message:
cleaned up comments on mixed content
Index: StringAttribute.java
===================================================================
RCS file: /cvsroot/sunxacml/sunxacml/com/sun/xacml/attr/StringAttribute.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** StringAttribute.java 17 Feb 2005 16:01:26 -0000 1.5
--- StringAttribute.java 16 Dec 2005 22:38:59 -0000 1.6
***************
*** 48,57 ****
* all methods of the class are thread-safe.
* <p>
! * Note that there is currently some confusion in the XACML specification
* about whether this datatype should be able to handle XML elements (ie,
* whether <AttributeValue DataType="...string"><foo/>
! * </AttributeValue> is valid). Until that is clarified the strict
! * definition of the string datatype is used in this code, which means that
! * elements are not valid.
*
* @since 1.0
--- 48,59 ----
* all methods of the class are thread-safe.
* <p>
! * Note that there was some confusion in the XACML specification
* about whether this datatype should be able to handle XML elements (ie,
* whether <AttributeValue DataType="...string"><foo/>
! * </AttributeValue> is valid). This has been clarified to provide
! * the correct requirement that a string may not contain mixed content (ie,
! * the example provided here is invalid). If you need to specify something
! * like this with the string datatype, then you must escape the
! * <code><</code> and <code>></code> characters.
*
* @since 1.0
|