@@ -32,87 +32,87 @@ public class TelnetOption
32
32
/*** The maximum value an option code can have. This value is 255. ***/
33
33
public static final int MAX_OPTION_VALUE = 255 ;
34
34
35
- public static int BINARY = 0 ;
35
+ public static final int BINARY = 0 ;
36
36
37
- public static int ECHO = 1 ;
37
+ public static final int ECHO = 1 ;
38
38
39
- public static int PREPARE_TO_RECONNECT = 2 ;
39
+ public static final int PREPARE_TO_RECONNECT = 2 ;
40
40
41
- public static int SUPPRESS_GO_AHEAD = 3 ;
41
+ public static final int SUPPRESS_GO_AHEAD = 3 ;
42
42
43
- public static int APPROXIMATE_MESSAGE_SIZE = 4 ;
43
+ public static final int APPROXIMATE_MESSAGE_SIZE = 4 ;
44
44
45
- public static int STATUS = 5 ;
45
+ public static final int STATUS = 5 ;
46
46
47
- public static int TIMING_MARK = 6 ;
47
+ public static final int TIMING_MARK = 6 ;
48
48
49
- public static int REMOTE_CONTROLLED_TRANSMISSION = 7 ;
49
+ public static final int REMOTE_CONTROLLED_TRANSMISSION = 7 ;
50
50
51
- public static int NEGOTIATE_OUTPUT_LINE_WIDTH = 8 ;
51
+ public static final int NEGOTIATE_OUTPUT_LINE_WIDTH = 8 ;
52
52
53
- public static int NEGOTIATE_OUTPUT_PAGE_SIZE = 9 ;
53
+ public static final int NEGOTIATE_OUTPUT_PAGE_SIZE = 9 ;
54
54
55
- public static int NEGOTIATE_CARRIAGE_RETURN = 10 ;
55
+ public static final int NEGOTIATE_CARRIAGE_RETURN = 10 ;
56
56
57
- public static int NEGOTIATE_HORIZONTAL_TAB_STOP = 11 ;
57
+ public static final int NEGOTIATE_HORIZONTAL_TAB_STOP = 11 ;
58
58
59
- public static int NEGOTIATE_HORIZONTAL_TAB = 12 ;
59
+ public static final int NEGOTIATE_HORIZONTAL_TAB = 12 ;
60
60
61
- public static int NEGOTIATE_FORMFEED = 13 ;
61
+ public static final int NEGOTIATE_FORMFEED = 13 ;
62
62
63
- public static int NEGOTIATE_VERTICAL_TAB_STOP = 14 ;
63
+ public static final int NEGOTIATE_VERTICAL_TAB_STOP = 14 ;
64
64
65
- public static int NEGOTIATE_VERTICAL_TAB = 15 ;
65
+ public static final int NEGOTIATE_VERTICAL_TAB = 15 ;
66
66
67
- public static int NEGOTIATE_LINEFEED = 16 ;
67
+ public static final int NEGOTIATE_LINEFEED = 16 ;
68
68
69
- public static int EXTENDED_ASCII = 17 ;
69
+ public static final int EXTENDED_ASCII = 17 ;
70
70
71
- public static int FORCE_LOGOUT = 18 ;
71
+ public static final int FORCE_LOGOUT = 18 ;
72
72
73
- public static int BYTE_MACRO = 19 ;
73
+ public static final int BYTE_MACRO = 19 ;
74
74
75
- public static int DATA_ENTRY_TERMINAL = 20 ;
75
+ public static final int DATA_ENTRY_TERMINAL = 20 ;
76
76
77
- public static int SUPDUP = 21 ;
77
+ public static final int SUPDUP = 21 ;
78
78
79
- public static int SUPDUP_OUTPUT = 22 ;
79
+ public static final int SUPDUP_OUTPUT = 22 ;
80
80
81
- public static int SEND_LOCATION = 23 ;
81
+ public static final int SEND_LOCATION = 23 ;
82
82
83
- public static int TERMINAL_TYPE = 24 ;
83
+ public static final int TERMINAL_TYPE = 24 ;
84
84
85
- public static int END_OF_RECORD = 25 ;
85
+ public static final int END_OF_RECORD = 25 ;
86
86
87
87
public static int TACACS_USER_IDENTIFICATION = 26 ;
88
88
89
- public static int OUTPUT_MARKING = 27 ;
89
+ public static final int OUTPUT_MARKING = 27 ;
90
90
91
- public static int TERMINAL_LOCATION_NUMBER = 28 ;
91
+ public static final int TERMINAL_LOCATION_NUMBER = 28 ;
92
92
93
- public static int REGIME_3270 = 29 ;
93
+ public static final int REGIME_3270 = 29 ;
94
94
95
- public static int X3_PAD = 30 ;
95
+ public static final int X3_PAD = 30 ;
96
96
97
- public static int WINDOW_SIZE = 31 ;
97
+ public static final int WINDOW_SIZE = 31 ;
98
98
99
- public static int TERMINAL_SPEED = 32 ;
99
+ public static final int TERMINAL_SPEED = 32 ;
100
100
101
- public static int REMOTE_FLOW_CONTROL = 33 ;
101
+ public static final int REMOTE_FLOW_CONTROL = 33 ;
102
102
103
- public static int LINEMODE = 34 ;
103
+ public static final int LINEMODE = 34 ;
104
104
105
- public static int X_DISPLAY_LOCATION = 35 ;
105
+ public static final int X_DISPLAY_LOCATION = 35 ;
106
106
107
- public static int OLD_ENVIRONMENT_VARIABLES = 36 ;
107
+ public static final int OLD_ENVIRONMENT_VARIABLES = 36 ;
108
108
109
- public static int AUTHENTICATION = 37 ;
109
+ public static final int AUTHENTICATION = 37 ;
110
110
111
- public static int ENCRYPTION = 38 ;
111
+ public static final int ENCRYPTION = 38 ;
112
112
113
- public static int NEW_ENVIRONMENT_VARIABLES = 39 ;
113
+ public static final int NEW_ENVIRONMENT_VARIABLES = 39 ;
114
114
115
- public static int EXTENDED_OPTIONS_LIST = 255 ;
115
+ public static final int EXTENDED_OPTIONS_LIST = 255 ;
116
116
117
117
private static int __FIRST_OPTION = BINARY ;
118
118
private static int __LAST_OPTION = EXTENDED_OPTIONS_LIST ;
0 commit comments