Package org.ldaptive.ad.handler
Class AbstractBinaryAttributeHandler<T>
- java.lang.Object
-
- org.ldaptive.transport.MessageFunctional<Q,S>
-
- org.ldaptive.transport.MessageFunctional.Function<SearchRequest,SearchResponse,T,T>
-
- org.ldaptive.handler.AbstractEntryHandler<T>
-
- org.ldaptive.ad.handler.AbstractBinaryAttributeHandler<T>
-
- Type Parameters:
T
- type of object to handle
- All Implemented Interfaces:
java.util.function.Function<T,T>
- Direct Known Subclasses:
ObjectGuidHandler
,ObjectSidHandler
public abstract class AbstractBinaryAttributeHandler<T> extends AbstractEntryHandler<T>
Base class for entry handlers that convert a binary attribute to it's string form.- Author:
- Middleware Services
-
-
Field Summary
-
Fields inherited from class org.ldaptive.handler.AbstractEntryHandler
logger
-
-
Constructor Summary
Constructors Constructor Description AbstractBinaryAttributeHandler()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected abstract java.lang.String
convertValue(byte[] value)
Converts the supplied binary value to it's string form.boolean
equals(java.lang.Object o)
java.lang.String
getAttributeName()
Returns the attribute name to convert from binary to string.protected void
handleAttributes(LdapEntry entry)
Handle the attributes of a search entry.int
hashCode()
void
setAttributeName(java.lang.String name)
Sets the attribute name to convert from binary to string.void
setRequest(SearchRequest request)
-
Methods inherited from class org.ldaptive.handler.AbstractEntryHandler
handleAttribute, handleAttributeName, handleAttributeValue, handleAttributeValue, handleDn, handleEntry
-
Methods inherited from class org.ldaptive.transport.MessageFunctional
getConnection, getHandle, getRequest, setConnection, setHandle
-
-
-
-
Method Detail
-
getAttributeName
public java.lang.String getAttributeName()
Returns the attribute name to convert from binary to string.- Returns:
- attribute name
-
setAttributeName
public void setAttributeName(java.lang.String name)
Sets the attribute name to convert from binary to string.- Parameters:
name
- of the attribute
-
handleAttributes
protected void handleAttributes(LdapEntry entry)
Description copied from class:AbstractEntryHandler
Handle the attributes of a search entry.- Overrides:
handleAttributes
in classAbstractEntryHandler<T>
- Parameters:
entry
- search entry to extract the attributes from
-
convertValue
protected abstract java.lang.String convertValue(byte[] value)
Converts the supplied binary value to it's string form.- Parameters:
value
- to convert- Returns:
- string form of the value
-
setRequest
public void setRequest(SearchRequest request)
- Overrides:
setRequest
in classMessageFunctional<SearchRequest,SearchResponse>
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classAbstractEntryHandler<T>
-
hashCode
public int hashCode()
- Specified by:
hashCode
in classAbstractEntryHandler<T>
-
-