blob: e4c795a3456cc85a43238f61f96e60fde4d62f45 [file] [log] [blame]
Ray Milkey90fdd0e2018-10-30 15:27:12 -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.fwd;
18
19public final class OsgiPropertyConstants {
20 private OsgiPropertyConstants() {
21 }
22
23 static final String PACKET_OUT_ONLY = "packetOutOnly";
24 static final boolean PACKET_OUT_ONLY_DEFAULT = false;
25
26 static final String PACKET_OUT_OFPP_TABLE = "packetOutOfppTable";
27 static final boolean PACKET_OUT_OFPP_TABLE_DEFAULT = false;
28
29 static final String FLOW_TIMEOUT = "flowTimeout";
30 static final int FLOW_TIMEOUT_DEFAULT = 10;
31
32 static final String FLOW_PRIORITY = "flowPriority";
33 static final int FLOW_PRIORITY_DEFAULT = 10;
34
35 static final String IPV6_FORWARDING = "ipv6Forwarding";
36 static final boolean IPV6_FORWARDING_DEFAULT = false;
37
38 static final String MATCH_DST_MAC_ONLY = "matchDstMacOnly";
39 static final boolean MATCH_DST_MAC_ONLY_DEFAULT = false;
40
41 static final String MATCH_VLAN_ID = "matchVlanId";
42 static final boolean MATCH_VLAN_ID_DEFAULT = false;
43
44 static final String MATCH_IPV4_ADDRESS = "matchIpv4Address";
45 static final boolean MATCH_IPV4_ADDRESS_DEFAULT = false;
46
47 static final String MATCH_IPV4_DSCP = "matchIpv4Dscp";
48 static final boolean MATCH_IPV4_DSCP_DEFAULT = false;
49
50 static final String MATCH_IPV6_ADDRESS = "matchIpv6Address";
51 static final boolean MATCH_IPV6_ADDRESS_DEFAULT = false;
52
53 static final String MATCH_IPV6_FLOW_LABEL = "matchIpv6FlowLabel";
54 static final boolean MATCH_IPV6_FLOW_LABEL_DEFAULT = false;
55
56 static final String MATCH_TCP_UDP_PORTS = "matchTcpUdpPorts";
57 static final boolean MATCH_TCP_UDP_PORTS_DEFAULT = false;
58
59 static final String MATCH_ICMP_FIELDS = "matchIcmpFields";
60 static final boolean MATCH_ICMP_FIELDS_DEFAULT = false;
61
62 static final String IGNORE_IPV4_MCAST_PACKETS = "ignoreIPv4Multicast";
63 static final boolean IGNORE_IPV4_MCAST_PACKETS_DEFAULT = false;
64
65 static final String RECORD_METRICS = "recordMetrics";
66 static final boolean RECORD_METRICS_DEFAULT = false;
67}