Home | History | Annotate | Download | only in attribute

Lines Matching refs:name

42     private final String name;
47 * @param name
48 * the principal name; may be {@code null}
50 public UserPrincipalNotFoundException(String name) {
52 this.name = name;
56 * Returns the user principal name if this exception was created with the
57 * user principal name that was not found, otherwise <tt>null</tt>.
59 * @return the user principal name or {@code null}
62 return name;