blob: 207f7660ac4c46306ea7027c5867344cc7949708 [file] [log] [blame]
Ray Milkey687c00c2018-10-31 10:18:41 -07001/*
2 * Copyright 2018-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.onosproject.dhcprelay;
18
19public final class OsgiPropertyConstants {
20 private OsgiPropertyConstants() {
21 }
22
23 static final String ARP_ENABLED = "arpEnabled";
24 static final boolean ARP_ENABLED_DEFAULT = true;
25
26 static final String DHCP_POLL_INTERVAL = "dhcpPollInterval";
27 static final int DHCP_POLL_INTERVAL_DEFAULT = 86400;
28
29 static final String DHCP_FPM_ENABLED = "dhcpFpmEnabled";
30 static final boolean DHCP_FPM_ENABLED_DEFAULT = false;
31
Harshada Chaundkar6d852122019-05-30 15:02:06 +000032 static final String DHCP_PROBE_INTERVAL = "dhcpHostRelearnProbeInterval";
33 static final int DHCP_PROBE_INTERVAL_DEFAULT = 500;
34
35 static final String DHCP_PROBE_COUNT = "dhcpHostRelearnProbeCount";
36 static final int DHCP_PROBE_COUNT_DEFAULT = 3;
37
Ray Milkey687c00c2018-10-31 10:18:41 -070038 static final String LEARN_ROUTE_FROM_LEASE_QUERY = "learnRouteFromLeasequery";
39 static final boolean LEARN_ROUTE_FROM_LEASE_QUERY_DEFAULT = false;
40}