devutility.internal.security.ldap.LdapAccount Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of devutility.internal Show documentation
Show all versions of devutility.internal Show documentation
Utilities for Java development
package devutility.internal.security.ldap;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;
public class LdapAccount extends HashMap> {
private static final long serialVersionUID = 1150936436248723995L;
public List get(String key) {
List values = super.get(key);
if (values == null) {
return new LinkedList<>();
}
return values;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy