Fix build broken due to Checkstyle, and prepare for more CS to come
[netvirt.git] / vpnservice / aclservice / impl / src / main / java / org / opendaylight / netvirt / aclservice / utils / AclConstants.java
1 /*
2  * Copyright (c) 2016 Ericsson India Global Services Pvt Ltd. and others. All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.netvirt.aclservice.utils;
10
11 /**
12  * The class to have ACL related constants.
13  */
14 public final class AclConstants {
15
16     // TODO: Move all service related constants across all modules to a common
17     // place
18     public static final short EGRESS_ACL_TABLE_ID = 40;
19     public static final short EGRESS_ACL_NEXT_TABLE_ID = 41;
20     public static final short EGRESS_ACL_SERVICE_PRIORITY = 2;
21     public static final short EGRESS_ACL_DEFAULT_FLOW_PRIORITY = 11;
22
23     public static final short INGRESS_ACL_TABLE_ID = 251;
24     public static final short INGRESS_ACL_NEXT_TABLE_ID = 252;
25     public static final short INGRESS_ACL_SERVICE_PRIORITY = 10;
26     public static final short INGRESS_ACL_DEFAULT_FLOW_PRIORITY = 1;
27
28     private AclConstants() {
29     }
30 }