예제 #1
0
파일: User.java 프로젝트: nahi/jenkins
 private User(String id, String fullName) {
   this.id = id;
   this.fullName = fullName;
   load();
 }
예제 #2
0
파일: User.java 프로젝트: nahi/jenkins
 /** Reloads the configuration from disk. */
 public static void reload() {
   // iterate over an array to be concurrency-safe
   for (User u : byName.values().toArray(new User[0])) u.load();
 }