Adjust to yangtools-2.0.0/odlparent-3.0.0 changes
[netconf.git] / netconf / netconf-console / src / main / java / org / opendaylight / netconf / console / utils / NetconfConsoleConstants.java
1 /*
2  * Copyright (c) 2016 Inocybe Technologies 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.netconf.console.utils;
10
11 public final class NetconfConsoleConstants {
12
13     private NetconfConsoleConstants() {
14         throw new IllegalStateException("Instantiating utility class.");
15     }
16
17     public static final String STATUS = "Status";
18
19     public static final String NETCONF_PORT = "NETCONF Port";
20
21     public static final String NETCONF_IP = "NETCONF IP";
22
23     public static final String NETCONF_ID = "NETCONF ID";
24
25     public static final String USERNAME = "username";
26
27     public static final String PASSWORD = "password";
28
29     public static final String TCP_ONLY = "tcp-only";
30
31     public static final String SCHEMALESS = "schemaless";
32
33     public static final int DEFAULT_INDEX = 0;
34
35     public static final String AVAILABLE_CAPABILITIES = "Available Capabilities";
36
37     public static final long DEFAULT_TIMEOUT_MILLIS = 4000;
38
39     public static final String NETCONF_NODE_CONTROLLER = "controller-config";
40
41 }