Update PCE for OTUC4, ODUC4 and 100GE MXPDR
[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
31     public static final String SERVICE_TYPE_OTU4 = "OTU4";
32     public static final String SERVICE_TYPE_OTUC4 = "OTUC4";
33
34     public static final String SERVICE_TYPE_400GE = "400GE";
35
36     public static final String SERVICE_TYPE_10GE = "10GE";
37
38     public static final String SERVICE_TYPE_1GE = "1GE";
39
40     public static final String SERVICE_TYPE_ODU4 = "ODU4";
41     public static final String SERVICE_TYPE_ODUC4 = "ODUC4";
42
43     private StringConstants() {
44         // hiding the default constructor
45     }
46
47 }