65290979c65e221576f0c270e57078ac5558315a
[netvirt.git] / sfc / classifier / impl / src / test / java / org / opendaylight / netvirt / sfc / classifier / providers / GeniusProviderTestParams.java
1 /*
2  * Copyright © 2017 Ericsson, Inc. 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.sfc.classifier.providers;
10
11 import java.math.BigInteger;
12
13 public interface GeniusProviderTestParams {
14     String INTERFACE_NAME = "123456";
15     String INTERFACE_NAME_INVALID = "000000";
16     String INTERFACE_NAME_NO_EXIST = "111111";
17
18     BigInteger DPN_ID = new BigInteger("1234567890");
19     BigInteger DPN_ID_NO_PORTS = new BigInteger("111111111");
20     BigInteger DPN_ID_NO_VXGPE_PORTS = new BigInteger("222222222");
21     BigInteger DPN_ID_NO_OPTIONS = new BigInteger("333333333");
22     BigInteger DPN_ID_INVALID = new BigInteger("666666666");
23     BigInteger DPN_ID_NO_EXIST = new BigInteger("999999999");
24
25     String NODE_ID = "openflow:" + DPN_ID.toString();
26     String NODE_CONNECTOR_ID_PREFIX = "openflow:" + DPN_ID.toString() + ":";
27     String IPV4_ADDRESS_STR = "192.168.0.1";
28     long OF_PORT = 42L;
29 }