Skip to content

Package: NcActionsConstants

NcActionsConstants

Coverage

1: package networkconfigurator.actions;
2:
3: /**
4: * Constants for the fli4l network configurator.
5: *
6: * @author Erik Arand
7: */
8: final class NcActionsConstants {
9:         /**
10:          * the constants.
11:          */
12:         private NcActionsConstants() {
13:                 super();
14:         }
15:
16:         /**
17:          * title of the Warning message.
18:          */
19:         public static final String WARNING_TITEL = "Notification";
20:         /**
21:          * text of the Warning message.
22:          */
23:         public static final String WARNING_MESSAGE =
24:                         "Adapters can only be connected with one other item";
25:         /**
26:          * Title for the panel.
27:          */
28:         public static final String CONNECTION_TYPE = "Connection Type";
29:         /**
30:          * text for popup.
31:          */
32:         public static final String CHOOSE_A_CONNECTION_TYPE = "Choose a connection type.";
33:         /**
34:          * String for Hostname.
35:          */
36:         public static final String HOSTNAME = "HOSTNAME";
37:         /**
38:          * Error message for variable IP_ROUTE_N is undefined.
39:          */
40:         public static final String THE_VARIABLE_HOSTNAME_IS_UNDEFINED =
41:                         "The variable HOSTNAME is undefined.";
42:         /**
43:          * String for IP_NET_%d.
44:          */
45:         public static final String IP_NET_D = "IP_NET_%d";
46:         /**
47:          * String for IP_NET_%d_DEV.
48:          */
49:         public static final String IP_NET_D_DEV = "IP_NET_%d_DEV";
50:         /**
51:          * String for HOST_%d_NAME.
52:          */
53:         public static final String HOST_D_NAME = "HOST_%d_NAME";
54:         /**
55:          * String for IP_ROUTE_%d.
56:          */
57:         public static final String IP_ROUTE_D = "IP_ROUTE_%d";
58:         /**
59:          * String for IP_ROUTE_N.
60:          */
61:         public static final String IP_ROUTE_N = "IP_ROUTE_N";
62:         /**
63:          * String for IP_NET_N.
64:          */
65:         public static final String IP_NET_N = "IP_NET_N";
66:         /**
67:          * String for HOST_N.
68:          */
69:         public static final String HOST_N = "HOST_N";
70:         /**
71:          * Error message for variable IP_NET_N is undefined.
72:          */
73:         public static final String THE_VARIABLE_IP_NET_N_OR_IP_NET_N_DEV_FOR_THE_N_IS_UNDEFINED =
74:                         "The variable IP_NET_N or IP_NET_N_DEV for the n is undefined.";
75:         /**
76:          * Error message for variable IP_ROUTE_N is undefined.
77:          */
78:         public static final String THE_VARIABLE_IP_ROUTE_N_FOR_THE_N_IS_UNDEFINED =
79:                         "The variable IP_ROUTE_N for the n is undefined.";
80:         /**
81:          * Error message for variable HOST_N_NAME is undefined.
82:          */
83:         public static final String THE_VARIABLE_HOST_N_NAME_FOR_THE_N_IS_UNDEFINED =
84:                         "The variable HOST_N_NAME for the n is undefined.";
85: }