blob: 7034cb2b8aa60df96f741ea35877b7a7b68a1059 [file] [log] [blame]
Felix Meschberger1ac50ed2011-01-08 06:55:13 +00001#
2# Licensed to the Apache Software Foundation (ASF) under one
3# or more contributor license agreements. See the NOTICE file
4# distributed with this work for additional information
5# regarding copyright ownership. The ASF licenses this file
6# to you under the Apache License, Version 2.0 (the
7# "License"); you may not use this file except in compliance
8# with the License. You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing,
13# software distributed under the License is distributed on an
14# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15# KIND, either express or implied. See the License for the
16# specific language governing permissions and limitations
17# under the License.
18#
19
20
21#
22# This file contains localization strings for configuration labels and
23# descriptions as used in the metatype.xml descriptor generated by the
24# the Felix SCR plugin
25
26org.apache.felix.http.jetty.internal.JettyConfig.name = Apache Felix Jetty Based Http Service
27org.apache.felix.http.jetty.internal.JettyConfig.description = Configuration for \
28 the embedded Jetty Servlet Container.
29
30org.osgi.service.http.port.name = HTTP Port
31org.osgi.service.http.port.description = Port to listen on for HTTP requests. \
32 Defaults to 8080.
33
34org.osgi.service.http.port.secure.name = HTTPS Port
35org.osgi.service.http.port.secure.description = Port to listen on for HTTPS \
36 requests. Defaults to 433.
37
38org.apache.felix.http.debug.name = Debug Logging
39org.apache.felix.http.debug.description = Whether to write DEBUG level \
40 messages or not. Defaults to false.
41
42org.apache.felix.https.keystore.name = Keystore
43org.apache.felix.https.keystore.description = Absolute Path to the Keystore to \
44 use for HTTPS. Only used if HTTPS is enabled in which case this property is \
45 required.
46
47org.apache.felix.https.keystore.password.name = Keystore Password
48org.apache.felix.https.keystore.password.description = Password to access the \
49 Keystore. Only used if HTTPS is enabled.
50
51org.apache.felix.https.keystore.key.password.name = Key Password
52org.apache.felix.https.keystore.key.password.description = Password to unlock \
53 the secret key from the Keystore. Only used if HTTPS is enabled.
54
55org.apache.felix.http.enable.name = Enable HTTP
56org.apache.felix.http.enable.description = Whether or not HTTP is enabled. \
57 Defaults to true thus HTTP enabled.
58
59org.apache.felix.https.enable.name = Enable HTTPS
60org.apache.felix.https.enable.description = Whether or not HTTPS is enabled. \
61 Defaults to false thus HTTPS disabled.
62
63org.apache.felix.https.truststore.name = Truststore
64org.apache.felix.https.truststore.description = Absolute Path to the Truststore \
65 to use for HTTPS. Only used if HTTPS is enabled.
66
67 org.apache.felix.https.truststore.password.name = Truststore Password
68 org.apache.felix.https.truststore.password.description = Password to access the \
69 Truststore. Only used if HTTPS is enabled.
70
71org.apache.felix.https.clientcertificate.name = Client Certificate
72org.apache.felix.https.clientcertificate.description = Requirement for the \
73 Client to provide a valid certifcate. Defaults to none.
74
75clientcertificate.none = No Client Certificate
76clientcertificate.wants = Client Certficate Wanted
77clientcertificate.needs = Client Certificate Needed
78
79org.apache.felix.http.nio.name = NIO for HTTP
80org.apache.felix.http.nio.description = Wether or not to use NIO for HTTP. \
81 Defaults to true. Only used if HTTP is enabled.
82
83org.apache.felix.https.nio.name = NIO for HTTPS
84org.apache.felix.https.nio.description = Wether or not to use NIO for HTTP. \
85 Defaults to the value of the NIO for HTTP property. Only used if HTTPS is \
Felix Meschberger815934f2011-09-23 13:00:33 +000086 enabled.
87
88org.apache.felix.http.mbeans.name = Register MBeans
89org.apache.felix.http.mbeans.description = Whether or not to use register \
90 JMX MBeans from the servlet container (Jetty).