blob: cc754f56fae1533c8d5e14c54c1bf3b1484bacfb [file] [log] [blame]
Ray Milkey8e406512018-10-24 15:56:50 -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.openstacktelemetry.impl;
18
19/**
20 * Name/Value constants for properties.
21 */
22public final class OsgiPropertyConstants {
23 private OsgiPropertyConstants() {
24 }
25
Ray Milkey8e406512018-10-24 15:56:50 -070026 // Stats flow rule manager
Ray Milkey8e406512018-10-24 15:56:50 -070027 static final String PROP_REVERSE_PATH_STATS = "reversePathStats";
28 static final boolean PROP_REVERSE_PATH_STATS_DEFAULT = false;
29
30 static final String PROP_EGRESS_STATS = "egressStats";
31 static final boolean PROP_EGRESS_STATS_DEFAULT = false;
32
33 static final String PROP_PORT_STATS = "portStats";
34 static final boolean PROP_PORT_STATS_DEFAULT = true;
35
36 static final String PROP_MONITOR_OVERLAY = "monitorOverlay";
37 static final boolean PROP_MONITOR_OVERLAY_DEFAULT = true;
38
39 static final String PROP_MONITOR_UNDERLAY = "monitorUnderlay";
40 static final boolean PROP_MONITOR_UNDERLAY_DEFAULT = true;
Ray Milkey8e406512018-10-24 15:56:50 -070041}