001/*
002 * (C) Copyright 2006-2009 Nuxeo SA (http://nuxeo.com/) and others.
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 *     http://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 *
016 * Contributors:
017 *     Nuxeo - initial API and implementation
018 *     Academie de Rennes - proxy CAS support
019 *
020 * $Id: JOOoConvertPluginImpl.java 18651 2007-05-13 20:28:53Z sfermigier $
021 */
022
023package org.nuxeo.ecm.platform.ui.web.auth.cas2;
024
025/**
026 * @author Thierry Delprat
027 * @author Olivier Adam
028 * @author M.-A. Darche
029 * @author Thierry Martins
030 */
031public final class CAS2Parameters {
032
033    public static final String TICKET_NAME_KEY = "ticketKey";
034
035    public static final String PROXY_NAME_KEY = "proxyKey";
036
037    public static final String NUXEO_APP_URL_KEY = "appURL";
038
039    public static final String SERVICE_LOGIN_URL_KEY = "serviceLoginURL";
040
041    public static final String SERVICE_VALIDATE_URL_KEY = "serviceValidateURL";
042
043    public static final String PROXY_VALIDATE_URL_KEY = "proxyValidateURL";
044
045    public static final String SERVICE_NAME_KEY = "serviceKey";
046
047    public static final String LOGOUT_URL_KEY = "logoutURL";
048
049    public static final String DEFAULT_CAS_SERVER_KEY = "defaultCasServer";
050
051    public static final String SERVICE_VALIDATOR_CLASS = "serviceValidatorClass";
052
053    public static final String PROXY_VALIDATOR_CLASS = "proxyValidatorClass";
054
055    public static final String PROMPT_LOGIN = "promptLogin";
056
057    public final static String ERROR_PAGE = "errorPage";
058
059    // Constant utility class.
060    private CAS2Parameters() {
061    }
062
063}