All Downloads are FREE. Search and download functionalities are using the official Maven repository.

devutility.internal.security.ldap.LdapAccount Maven / Gradle / Ivy

There is a newer version: 1.3.8.1
Show newest version
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