blob: 2d926661bfa4a4ae8c7374559789b8e135ef62bf [file] [log] [blame]
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
#
# This file contains localization strings for configuration labels and
# descriptions as used in the metatype.xml descriptor generated by the
# the Sling SCR plugin
auth.form.name=Apache Sling Form Based Authentication Handler
auth.form.description=This handler extracts a hash value from a cookie or \
session attribute id and compares it to a hash generated on the server.
path.name = Path
path.description = Repository path for which this authentication handler \
should be used by Sling. If this is empty, the authentication handler will \
be disabled.
form.login.form.name = Login Form
form.login.form.description = The URL (without any context path prefix) to \
redirect the client to to present the login form. The default value is \
"/system/sling/form/login".
form.auth.storage.name = Hash Storage
form.auth.storage.description = The type of storage used to provide the \
authentication state. Valid values are cookie and session. The default value \
(cookie) also applies if any setting other than the supported values is \
configured.
form.auth.name.name = Cookie/Attribute Name
form.auth.name.description = The name of the Cookie or HTTP Session attribute \
providing the authentication state. The default value is "sling.formauth".
form.credentials.name.name = Credentials Attribute
form.credentials.name.description = The name of the SimpleCredentials \
attribute used to provide the authentication data to the LoginModulePlugin. \
The default value is "sling.formauth".
form.auth.timeout.name = Timeout
form.auth.timeout.description = The number of minutes after which a login \
session times out. This value is used as the expiry time set in the \
authentication data. The default value is 30 minutes. If the value is set \
a value less than 1, the default value is used instead.
form.token.file.name = Security Token File
form.token.file.description = The name of the file used to persist the \
security tokens. The default value is cookie-tokens.bin. This property \
currently refers to a file stored in the file system. If the path is a \
relative path, the file is either stored in the Authentication Handler bundle \
private data area or - if not possible - below the location indicated by the \
sling.home framework property or - if sling.home is not set - the current \
working directory. In the future this file may be store in the JCR Repository \
to support clustering scenarios.
form.token.fastseed.name = Fast Seed Generator
form.token.fastseed.description = Defines whether the random number generator \
should be seeded with a fast but less secure method. If this property is not \
set or is set to "false" the seed generator of the Java platform will be \
used. By default the secure seed generator is used, which may block startup \
on Linux and Solaris systems due to accessing /dev/random.
service.ranking.name = Ranking
service.ranking.description = The relative ranking of this service.
form.use.include.name = Include Form
form.use.include.description = If true, this authentication handler will attempt \
to include a Servlet resource at the login form path. If false, a redirect will \
be used instead.
form.onexpire.login.name = On Login Expire, Re-login
form.onexpire.login.description = If true, when the form login expires the user \
will be prompted to re-login. If false they become an anonymous user. The default \
is false.
form.default.cookie.domain.name = Default Cookie Domain
form.default.cookie.domain.description = The domain on which authentication cookies will \
be set, unless overridden in the AuthenticationInfo object. The default is null \
which means to set the cookie on the request domain.