/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library 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 library 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. */ package com.liferay.portal.security.sso.opensso.constants; /** * @author Mika Koivisto */ public class OpenSSOConfigurationKeys { public static final String AUTH_ENABLED = "enabled"; public static final String EMAIL_ADDRESS_ATTR = "emailAddressAttr"; public static final String FIRST_NAME_ATTR = "firstNameAttr"; public static final String IMPORT_FROM_LDAP = "importFromLDAP"; public static final String LAST_NAME_ATTR = "lastNameAttr"; public static final String LOGIN_URL = "loginURL"; public static final String LOGOUT_ON_SESSION_EXPIRATION = "logoutOnSessionExpiration"; public static final String LOGOUT_URL = "logoutURL"; public static final String SCREEN_NAME_ATTR = "screenNameAttr"; public static final String SERVICE_URL = "serviceURL"; }