Sync Common folder
[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     public static final String DEFAULT_NETCONF_NODEID = "controller-config";
15     public static final String OPENROADM_DEVICE_VERSION_2_2 = "(http://org/openroadm/device?revision=2017-12-15)org-openroadm-device";
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 NETWORK_TOKEN = "XPDR1-NETWORK";
18     public static final String TTP_TOKEN = "TTP";
19     public static final String CLIENT_TOKEN = "XPDR1-CLIENT";
20     public static final String PP_TOKEN = "PP";
21
22     private StringConstants() {
23         // hiding the default constructor
24     }
25
26 }