001/*
002 * (C) Copyright 2006-2009 Nuxeo SA (http://nuxeo.com/) and contributors.
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the GNU Lesser General Public License
006 * (LGPL) version 2.1 which accompanies this distribution, and is available at
007 * http://www.gnu.org/licenses/lgpl.html
008 *
009 * This library is distributed in the hope that it will be useful,
010 * but WITHOUT ANY WARRANTY; without even the implied warranty of
011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
012 * Lesser General Public License for more details.
013 *
014 * Contributors:
015 *     Nuxeo - initial API and implementation
016 *     Academie de Rennes - proxy CAS support
017 *
018 * $Id: JOOoConvertPluginImpl.java 18651 2007-05-13 20:28:53Z sfermigier $
019 */
020
021package org.nuxeo.ecm.platform.ui.web.auth.cas2;
022
023/**
024 * @author Thierry Delprat
025 * @author Olivier Adam
026 * @author M.-A. Darche
027 * @author Thierry Martins
028 */
029public final class CAS2Parameters {
030
031    public static final String TICKET_NAME_KEY = "ticketKey";
032
033    public static final String PROXY_NAME_KEY = "proxyKey";
034
035    public static final String NUXEO_APP_URL_KEY = "appURL";
036
037    public static final String SERVICE_LOGIN_URL_KEY = "serviceLoginURL";
038
039    public static final String SERVICE_VALIDATE_URL_KEY = "serviceValidateURL";
040
041    public static final String PROXY_VALIDATE_URL_KEY = "proxyValidateURL";
042
043    public static final String SERVICE_NAME_KEY = "serviceKey";
044
045    public static final String LOGOUT_URL_KEY = "logoutURL";
046
047    public static final String DEFAULT_CAS_SERVER_KEY = "defaultCasServer";
048
049    public static final String SERVICE_VALIDATOR_CLASS = "serviceValidatorClass";
050
051    public static final String PROXY_VALIDATOR_CLASS = "proxyValidatorClass";
052
053    public static final String PROMPT_LOGIN = "promptLogin";
054
055    public final static String ERROR_PAGE = "errorPage";
056
057    // Constant utility class.
058    private CAS2Parameters() {
059    }
060
061}