1 16 17 package org.apache.jetspeed.om.security; 18 19 20 26 public class UserIdPrincipal implements java.security.Principal  27 { 28 private final String userId; 29 30 public UserIdPrincipal(String userId) 31 { 32 this.userId = userId; 33 } 34 35 46 public boolean equals(Object another) 47 { 48 if (!(another instanceof UserIdPrincipal)) 49 return false; 50 UserIdPrincipal principal = (UserIdPrincipal)another; 51 return this.getName().equals(principal.getName()); 52 } 53 54 59 public String toString() 60 { 61 return this.userId; 62 } 63 64 65 70 public String getName() 71 { 72 return this.userId; 73 } 74 75 } 76 77 78 | Popular Tags |