Open Kilda Java Documentation
RuleConstants.java
Go to the documentation of this file.
1 /* Copyright 2017 Telstra Open Source
2  *
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 package org.openkilda.messaging.model.rule;
17 
19 
20 public final class RuleConstants {
24  public static final String OF_COMMAND = "of_command";
25 
27  public static final String FLOW_ID = Utils.FLOW_ID;
28 
30  public static final String SWITCH_ID = "switch_id";
31 
33  public static final String COOKIE = "cookie";
34 
36  public static final String OUTPUT_PORT = "output_port";
37 
39  public static final String OUTPUT_VLAN = "output_vlan";
40 
42  public static final String OUTPUT_VLAN_TYPE = "output_vlan_type";
43 
45  public static final String MATCH_PORT = "match_port";
46 
48  public static final String MATCH_VLAN = "match_vlan";
49 
51  public static final String METER_ID = "meter_id";
52 
54  public static final String BANDWIDTH = "bandwidth";
55 
57  public static final String PRIORITY = "priority";
58 }
static final String FLOW_ID
Definition: Utils.java:61