Interface RequestBuilder<T>
-
- Type Parameters:
T
- The request type
public interface RequestBuilder<T>
Edits a supplied request adding specifics.- Author:
- Apache Directory Project
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
buildRequest(T request)
Modifies the provided request adding specific information to it.
-
-
-
Method Detail
-
buildRequest
void buildRequest(T request) throws LdapException
Modifies the provided request adding specific information to it. The supplied request is typically a factory built request with just its Dn set. It is the responsibility of this method to fill in all of the details. The request will be sent to the LDAP server upon upon returning from this method.- Parameters:
request
- The request to be modified- Throws:
LdapException
- If something goes wrong
-
-