1 64 65 package com.jcorporate.expresso.core.misc; 66 67 68 public class ConfigLdap { 69 private String server = null; 70 private String user = null; 71 private String password = null; 72 private String root = null; 73 74 public ConfigLdap() { 75 } 76 77 public void setRoot(String newRoot) { 78 root = newRoot; 79 } 80 81 public String getRoot() { 82 return root; 83 } 84 85 public void setServer(String newServer) { 86 server = newServer; 87 } 88 89 public String getServer() { 90 return server; 91 } 92 93 public void setUser(String newUser) { 94 user = newUser; 95 } 96 97 public String getUser() { 98 return user; 99 } 100 101 public void setPassword(String newPassword) { 102 password = newPassword; 103 } 104 105 public String getPassword() { 106 return password; 107 } 108 } | Popular Tags |