/* * JBoss, Home of Professional Open Source. * Copyright 2008, Red Hat Middleware LLC, and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.picketlink.identity.federation.core.constants; /** * Constants useful to the JBoss Identity Federation project * * @author Anil.Saldhana@redhat.com * @since Feb 23, 2009 */ public interface PicketLinkFederationConstants { /** * Flag to indicate whether JAXB Schema Validation is turned on */ String JAXB_SCHEMA_VALIDATION = "org.picketlink.jaxb.schema.validation"; String SCHEMA_IDFED = "schema/config/picketlink-fed.xsd"; String SCHEMA_IDFED_HANDLER = "schema/config/picketlink-fed-handler.xsd"; String DSA_SIGNATURE_ALGORITHM = "SHA1withDSA"; String RSA_SIGNATURE_ALGORITHM = "SHA1withRSA"; // File Based Meta data Configuration Constants String SERIALIZATION_EXTENSION = ".SER"; String FILE_STORE_DIRECTORY = "/picketlink-store"; String IDP_PROPERTIES = "/identityproviders.properties"; String SP_PROPERTIES = "/serviceproviders.properties"; String SALT = "salt"; String ITERATION_COUNT = "iterationCount"; String PBE_ALGORITHM = "PBEwithMD5andDES"; // Prefix to indicate a particular configuration property value is masked String PASS_MASK_PREFIX = "MASK-"; }