/******************************************************************************* * Copyright (c) 2008 Cambridge Semantics Incorporated. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * * Cambridge Semantics Incorporated - Initial Implementation *******************************************************************************/ package org.openanzo.services; /** * Constants for the Encrypted Token Authenticator * * @author Matthew Roy ( <a href="mailto:mroy@cambridgesemantics.com">mroy@cambridgesemantics.com</a>) * */ public interface EncryptedTokenAuthenticatorConstants { /** login URI suffix */ public final static String LOGIN_URI_SUFFIX = "/anzo_authenticate"; /** user name parameter */ public final static String USERNAME_PARAMETER_NAME = "anzo_username"; /** user password parameter */ public final static String PASSWORD_PARAMETER_NAME = "anzo_password"; /** Authenticated token cookie name */ public final static String ANZO_TOKEN_COOKIE_NAME = "ANZOTOKEN"; /** Goto URL query param */ public final static String ANZO_URL_QUERY_PARAM = "anzourl"; }