blob: 67bd5fa00c0c2ae1822eb550584b24c0fc524f84 [file] [log] [blame]
Carmelo Casconeca931162019-07-15 18:22:24 -07001/*
2 * Copyright 2019-present Open Networking Foundation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package org.opencord.olt.impl;
18
19/**
20 * Constants for default values of configurable properties.
21 */
22public final class OsgiPropertyConstants {
23
24 private OsgiPropertyConstants() {
25 }
26
Andrea Campanellacbbb7952019-11-25 06:38:41 +000027 public static final String DEFAULT_MCAST_SERVICE_NAME = "multicastServiceName";
28 public static final String DEFAULT_MCAST_SERVICE_NAME_DEFAULT = "MC";
29
Carmelo Casconeca931162019-07-15 18:22:24 -070030 public static final String ENABLE_DHCP_ON_PROVISIONING = "enableDhcpOnProvisioning";
31 public static final boolean ENABLE_DHCP_ON_PROVISIONING_DEFAULT = false;
32
33 public static final String ENABLE_DHCP_V4 = "enableDhcpV4";
34 public static final boolean ENABLE_DHCP_V4_DEFAULT = true;
35
36 public static final String ENABLE_DHCP_V6 = "enableDhcpV6";
37 public static final boolean ENABLE_DHCP_V6_DEFAULT = false;
38
39 public static final String ENABLE_IGMP_ON_PROVISIONING = "enableIgmpOnProvisioning";
40 public static final boolean ENABLE_IGMP_ON_PROVISIONING_DEFAULT = false;
41
42 public static final String DELETE_METERS = "deleteMeters";
43 public static final boolean DELETE_METERS_DEFAULT = true;
44
45 public static final String DEFAULT_TP_ID = "defaultTechProfileId";
46 public static final int DEFAULT_TP_ID_DEFAULT = 64;
47
48 public static final String DEFAULT_BP_ID = "defaultBpId";
49 public static final String DEFAULT_BP_ID_DEFAULT = "Default";
50
51 public static final String ENABLE_EAPOL = "enableEapol";
52 public static final boolean ENABLE_EAPOL_DEFAULT = true;
Saurav Das2d3777a2020-08-07 18:48:51 -070053
54 public static final String EAPOL_DELETE_RETRY_MAX_ATTEMPS = "eapolDeleteRetryMaxAttempts";
55 public static final int EAPOL_DELETE_RETRY_MAX_ATTEMPS_DEFAULT = 3;
Carmelo Casconeca931162019-07-15 18:22:24 -070056}