[Sunxacml-commit] sunxacml/com/sun/xacml/ctx Attribute.java,1.5,1.6
Brought to you by:
farrukh_najmi,
sethp
From: <se...@us...> - 2003-10-27 04:43:05
|
Update of /cvsroot/sunxacml/sunxacml/com/sun/xacml/ctx In directory sc8-pr-cvs1:/tmp/cvs-serv10368/com/sun/xacml/ctx Modified Files: Attribute.java Log Message: updated so null null values aren't supported Index: Attribute.java =================================================================== RCS file: /cvsroot/sunxacml/sunxacml/com/sun/xacml/ctx/Attribute.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Attribute.java 30 Sep 2003 19:59:13 -0000 1.5 --- Attribute.java 27 Oct 2003 04:43:02 -0000 1.6 *************** *** 1,5 **** /* ! * @(#)Attribute.java 1.11 01/30/03 * * Copyright 2003 Sun Microsystems, Inc. All Rights Reserved. --- 1,5 ---- /* ! * @(#)Attribute.java * * Copyright 2003 Sun Microsystems, Inc. All Rights Reserved. *************** *** 288,295 **** encoded += " IssueInstant=\"" + issueInstant.encode() + "\""; ! if (value != null) ! encoded += ">" + value.encodeWithTags(false) + "</Attribute>"; ! else ! encoded += "/>"; return encoded; --- 288,292 ---- encoded += " IssueInstant=\"" + issueInstant.encode() + "\""; ! encoded += ">" + value.encodeWithTags(false) + "</Attribute>"; return encoded; |