blob: 662e985fabae0215a9d3b7d78e794f12afe11398 [file] [log] [blame]
Carmelo Cascone995fd682019-11-14 14:22:39 -08001/*
Joey Armstrong163c0302023-01-03 14:08:06 -05002 * Copyright 2019-2023 Open Networking Foundation (ONF) and the ONF Contributors
Carmelo Cascone995fd682019-11-14 14:22:39 -08003 *
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
Daniele Moro8ea9e102020-03-24 18:56:52 +010017package org.opencord.cordmcast.impl;
Carmelo Cascone995fd682019-11-14 14:22:39 -080018
19/**
20 * Constants for default values of configurable properties.
21 */
22public final class OsgiPropertyConstants {
23
24 private OsgiPropertyConstants() {
25 }
26
27 public static final String VLAN_ENABLED = "vlanEnabled";
28 public static final boolean DEFAULT_VLAN_ENABLED = true;
29
30 public static final String PRIORITY = "priority";
31 public static final int DEFAULT_PRIORITY = 500;
Arjun E Kabf9e6e2020-03-02 10:15:21 +000032
33 public static final String EVENT_GENERATION_PERIOD = "eventGenerationPeriodInSeconds";
34 public static final int EVENT_GENERATION_PERIOD_DEFAULT = 30;
Carmelo Cascone995fd682019-11-14 14:22:39 -080035}