[Sunxacml-commit] sunxacml/com/sun/xacml/cond FunctionBase.java,1.5,1.6
Brought to you by:
farrukh_najmi,
sethp
From: Seth P. <se...@us...> - 2005-12-16 22:38:23
|
Update of /cvsroot/sunxacml/sunxacml/com/sun/xacml/cond In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18675/com/sun/xacml/cond Modified Files: FunctionBase.java Log Message: added the new 2.0 namespace Index: FunctionBase.java =================================================================== RCS file: /cvsroot/sunxacml/sunxacml/com/sun/xacml/cond/FunctionBase.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** FunctionBase.java 5 Dec 2005 23:34:51 -0000 1.5 --- FunctionBase.java 16 Dec 2005 22:38:16 -0000 1.6 *************** *** 75,83 **** /** ! * The standard namespace where all the spec-defined functions live */ public static final String FUNCTION_NS = "urn:oasis:names:tc:xacml:1.0:function:"; // A List used by makeProcessingError() to save some steps. private static List processingErrList = null; --- 75,89 ---- /** ! * The standard namespace where all XACML 1.0 spec-defined functions live */ public static final String FUNCTION_NS = "urn:oasis:names:tc:xacml:1.0:function:"; + /** + * The standard namespace where all XACML 2.0 spec-defined functions live + */ + public static final String FUNCTION_NS_2 = + "urn:oasis:names:tc:xacml:2.0:function:"; + // A List used by makeProcessingError() to save some steps. private static List processingErrList = null; |