Move netconf-console to apps/
[netconf.git] / apps / 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 package org.opendaylight.netconf.console.utils;
9
10 public final class NetconfConsoleConstants {
11
12     public static final String STATUS = "Status";
13
14     public static final String NETCONF_PORT = "NETCONF Port";
15
16     public static final String NETCONF_IP = "NETCONF IP";
17
18     public static final String NETCONF_ID = "NETCONF ID";
19
20     public static final String USERNAME = "username";
21
22     public static final String PASSWORD = "password";
23
24     public static final String TCP_ONLY = "tcp-only";
25
26     public static final String SCHEMALESS = "schemaless";
27
28     public static final int DEFAULT_INDEX = 0;
29
30     public static final String AVAILABLE_CAPABILITIES = "Available Capabilities";
31
32     public static final long DEFAULT_TIMEOUT_MILLIS = 4000;
33
34     public static final String NETCONF_NODE_CONTROLLER = "controller-config";
35
36     private NetconfConsoleConstants() {
37         // Hidden on purpose
38     }
39 }