Fix some SpotBugs issues
[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
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     private StringConstants() {
29         // hiding the default constructor
30     }
31
32 }