blob: 790e1852d4ee7a974b9525c747b4002c0d5e1629 [file] [log] [blame]
Karl Pauls36407322008-03-07 00:37:30 +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 */
19package org.apache.felix.framework.security;
20
Karl Pauls36407322008-03-07 00:37:30 +000021public interface SecurityConstants
22{
23 public static final String KEYSTORE_FILE_PROP = "felix.keystore";
24
Karl Pauls23287bd2010-01-10 22:11:27 +000025 public static final String KEYSTORE_FILE_VALUE = "";
Karl Pauls36407322008-03-07 00:37:30 +000026
27 public static final String KEYSTORE_TYPE_PROP = "felix.keystore.type";
28
Karl Pauls23287bd2010-01-10 22:11:27 +000029 public static final String KEYSTORE_TYPE_VALUE = "";
Karl Pauls36407322008-03-07 00:37:30 +000030
31 public static final String KEYSTORE_PASS_PROP = "felix.keystore.pass";
32
Karl Pauls23287bd2010-01-10 22:11:27 +000033 public static final String KEYSTORE_PASS_VALUE = "";
Karl Pauls36407322008-03-07 00:37:30 +000034
35 public static final String CRL_FILE_PROP = "felix.crl";
36
37 public static final String CRL_FILE_VALUE = "";
38
Karl Pauls23287bd2010-01-10 22:11:27 +000039 public static final String ENABLE_CONDPERMADMIN_PROP = "felix.security.conpermadmin";
Karl Pauls36407322008-03-07 00:37:30 +000040
41 public static final String ENABLE_CONDPERMADMIN_VALUE = "true";
42
Karl Pauls23287bd2010-01-10 22:11:27 +000043 public static final String ENABLE_PERMISSIONADMIN_PROP = "felix.security.permissionadmin";
Karl Pauls36407322008-03-07 00:37:30 +000044
45 public static final String ENABLE_PERMISSIONADMIN_VALUE = "true";
46}