/** * Copyright (c) Members of the EGEE Collaboration. 2006-2009. * See http://www.eu-egee.org/partners/ for details on the copyright holders. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.glite.authz.pap.common.xacml.utils; public class Functions { public static final String AND = "urn:oasis:names:tc:xacml:1.0:function:and"; public static final String ANY_OF = "urn:oasis:names:tc:xacml:1.0:function:any-of"; public static final String ANY_OF_ALL = "urn:oasis:names:tc:xacml:1.0:function:any-of-all"; public static final String ANY_OF_ANY = "urn:oasis:names:tc:xacml:1.0:function:any-of-any"; public static final String NOT = "urn:oasis:names:tc:xacml:1.0:function:not"; public static final String OR = "urn:oasis:names:tc:xacml:1.0:function:or"; public static final String STRING_BAG = "urn:oasis:names:tc:xacml:1.0:function:string-bag"; public static final String STRING_EQUAL = "urn:oasis:names:tc:xacml:1.0:function:string-equal"; public static final String STRING_REGEXP_MATCH = "urn:oasis:names:tc:xacml:1.0:function:string-regexp-match"; private Functions() {} }