[Sunxacml-commit] sunxacml/com/sun/xacml/ctx RequestCtx.java,1.1.1.1,1.2
Brought to you by:
farrukh_najmi,
sethp
|
From: <se...@us...> - 2003-05-27 14:23:14
|
Update of /cvsroot/sunxacml/sunxacml/com/sun/xacml/ctx
In directory sc8-pr-cvs1:/tmp/cvs-serv21082/com/sun/xacml/ctx
Modified Files:
RequestCtx.java
Log Message:
Index: RequestCtx.java
===================================================================
RCS file: /cvsroot/sunxacml/sunxacml/com/sun/xacml/ctx/RequestCtx.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** RequestCtx.java 13 Feb 2003 22:19:10 -0000 1.1.1.1
--- RequestCtx.java 27 May 2003 14:23:11 -0000 1.2
***************
*** 328,332 ****
* Returns the subjects associated with this request. Note that this is
* a <code>Set</code> that contains any number of <code>List</code>s.
! * Each <code>List</code> contains exactly two items: a <code>String</code>
* specifying the category, and a <code>Set</code> that contains
* <code>Attribute</code>s listed in that category.
--- 328,332 ----
* Returns the subjects associated with this request. Note that this is
* a <code>Set</code> that contains any number of <code>List</code>s.
! * Each <code>List</code> contains exactly two items: a <code>URI</code>
* specifying the category, and a <code>Set</code> that contains
* <code>Attribute</code>s listed in that category.
***************
*** 413,417 ****
while (it.hasNext()) {
List list = (List)(it.next());
! String category = (String)(list.get(0));
Set attrs = (Set)(list.get(1));
--- 413,417 ----
while (it.hasNext()) {
List list = (List)(it.next());
! String category = ((URI)(list.get(0)).toString();
Set attrs = (Set)(list.get(1));
|