comparison src/com/five_ten_sg/connectbot/bean/HostBean.java @ 119:6969d6cebcd7

add more 5250 config items
author Carl Byington <carl@five-ten-sg.com>
date Wed, 18 Jun 2014 18:55:56 -0700
parents 1c22e6a7efff
children 52b1d0ee27b1
comparison
equal deleted inserted replaced
118:9c0aaf27ce28 119:6969d6cebcd7
54 private String x11Host = "localhost"; 54 private String x11Host = "localhost";
55 private int x11Port = 6000; 55 private int x11Port = 6000;
56 private String monitor = null; 56 private String monitor = null;
57 private String hostemulation = null; 57 private String hostemulation = null;
58 private String encryption5250 = null; 58 private String encryption5250 = null;
59 private String password = null;
60 private String library = null;
61 private String initialMenu = null;
62 private String program = null;
59 63
60 public HostBean() { 64 public HostBean() {
61 } 65 }
62 66
63 @Override 67 @Override
282 return this.encryption5250; 286 return this.encryption5250;
283 } 287 }
284 288
285 public void setEncryption5250(String encryption5250) { 289 public void setEncryption5250(String encryption5250) {
286 this.encryption5250 = encryption5250; 290 this.encryption5250 = encryption5250;
291 }
292
293 public String getPassword() {
294 return this.password;
295 }
296
297 public void setPassword(String password) {
298 this.password = password;
299 }
300
301 public String getLibrary() {
302 return this.library;
303 }
304
305 public void setLibrary(String library) {
306 this.library = library;
307 }
308
309 public String getInitialMenu() {
310 return this.initialMenu;
311 }
312
313 public void setInitialMenu(String initialMenu) {
314 this.initialMenu = initialMenu;
315 }
316
317 public String getProgram() {
318 return this.program;
319 }
320
321 public void setProgram(String program) {
322 this.program = program;
323 }
324
325 public String getxxx() {
326 return this.xxx;
327 }
328
329 public void setxxx(String xxx) {
330 this.xxx = xxx;
287 } 331 }
288 332
289 @Override 333 @Override
290 public ContentValues getValues() { 334 public ContentValues getValues() {
291 ContentValues values = new ContentValues(); 335 ContentValues values = new ContentValues();