edu.vt.middleware.ldap.bean.AbstractLdapAttribute Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vt-ldap Show documentation
Show all versions of vt-ldap Show documentation
Library for performing common LDAP operations
/*
$Id: AbstractLdapAttribute.java 1330 2010-05-23 22:10:53Z dfisher $
Copyright (C) 2003-2010 Virginia Tech.
All rights reserved.
SEE LICENSE FOR MORE INFORMATION
Author: Middleware Services
Email: [email protected]
Version: $Revision: 1330 $
Updated: $Date: 2010-05-23 18:10:53 -0400 (Sun, 23 May 2010) $
*/
package edu.vt.middleware.ldap.bean;
import java.util.Set;
import javax.naming.NamingEnumeration;
import javax.naming.NamingException;
import javax.naming.directory.Attribute;
import javax.naming.directory.BasicAttribute;
import edu.vt.middleware.ldap.LdapUtil;
/**
* AbstractLdapAttribute
provides a base implementation of
* LdapAttribute
where the underlying values are backed by a
* Set
.
*
* @param type of backing set
*
* @author Middleware Services
* @version $Revision: 1330 $ $Date: 2010-05-23 18:10:53 -0400 (Sun, 23 May 2010) $
*/
public abstract class AbstractLdapAttribute>
extends AbstractLdapBean implements LdapAttribute
{
/** hash code seed. */
protected static final int HASH_CODE_SEED = 41;
/** Name for this attribute. */
protected String name;
/** Values for this attribute. */
protected Set
© 2015 - 2025 Weber Informatics LLC | Privacy Policy