Update project version for Chlorine release train
[transportpce.git] / common / src / main / java / org / opendaylight / transportpce / common / StringConstants.java
1 /*
2  * Copyright © 2016 AT&T 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.transportpce.common;
10
11 public final class StringConstants {
12
13     public static final String OPENROADM_DEVICE_MODEL_NAME = "org-openroadm-device";
14
15     public static final String DEFAULT_NETCONF_NODEID = "controller-config";
16     public static final String OPENROADM_DEVICE_VERSION_1_2_1 = "(http://org/openroadm/device?revision=2017-02-06)org-openroadm-device";
17     public static final String OPENROADM_DEVICE_VERSION_2_2_1 = "(http://org/openroadm/device?revision=2018-10-19)org-openroadm-device";
18     public static final String OPENROADM_DEVICE_VERSION_7_1 = "(http://org/openroadm/device?revision=2020-05-29)org-openroadm-device";
19
20     public static final String NETWORK_TOKEN = "NETWORK";
21
22     public static final String TTP_TOKEN = "TTP";
23
24     public static final String CLIENT_TOKEN = "CLIENT";
25
26     public static final String PP_TOKEN = "PP";
27
28     public static final String SERVICE_TYPE_100GE_T = "100GEt";
29     public static final String SERVICE_TYPE_100GE_M = "100GEm";
30     public static final String SERVICE_TYPE_100GE_S = "100GEs";
31
32     public static final String SERVICE_TYPE_OTU4 = "OTU4";
33     public static final String SERVICE_TYPE_OTUC2 = "OTUC2";
34     public static final String SERVICE_TYPE_OTUC3 = "OTUC3";
35     public static final String SERVICE_TYPE_OTUC4 = "OTUC4";
36
37     public static final String SERVICE_TYPE_400GE = "400GE";
38
39     public static final String SERVICE_TYPE_10GE = "10GE";
40
41     public static final String SERVICE_TYPE_1GE = "1GE";
42
43     public static final String SERVICE_TYPE_ODU4 = "ODU4";
44     public static final String SERVICE_TYPE_ODUC2 = "ODUC2";
45     public static final String SERVICE_TYPE_ODUC3 = "ODUC3";
46     public static final String SERVICE_TYPE_ODUC4 = "ODUC4";
47
48
49     public static final String SERVICE_DIRECTION_AZ = "aToz";
50     public static final String SERVICE_DIRECTION_ZA = "zToa";
51
52     private StringConstants() {
53         // hiding the default constructor
54     }
55
56 }