Example usage for javax.naming.directory BasicAttributes subclass-usage

List of usage examples for javax.naming.directory BasicAttributes subclass-usage

Introduction

In this page you can find the example usage for javax.naming.directory BasicAttributes subclass-usage.

Usage

From source file ldap.UserAccountImpl.java

public class UserAccountImpl extends BasicAttributes implements UserAccount {

    protected final Log logger = LogFactory.getLog(getClass());

    public String getUserID() {
        try {

From source file org.springframework.ldap.core.LdapAttributes.java

/**
 * Extends {@link javax.naming.directory.BasicAttributes} to add specialized support
 * for DNs.
 * <p>
 * While DNs appear to be and can be treated as attributes, they have a special
 * meaning in that they define the address to which the object is bound.  DNs must

From source file ldap.Entry.java

/**
 * Combines an Attributes object with a name to reflect a directory entry.
 * *
 * Provides a handful of utility methods for easy creation and testing
 */
public class Entry extends BasicAttributes implements Comparable {