Returns a user with the specified name. @param name username @return username or null
(final String name)
| 154 | * @return username or {@code null} |
| 155 | */ |
| 156 | public synchronized User get(final String name) { |
| 157 | return users.get(name); |
| 158 | } |
| 159 | |
| 160 | /** |
| 161 | * Returns the names of all users that match the specified pattern. |