use of org.apache.directory.api.ldap.model.message.ModifyRequestImpl in project directory-ldap-api by apache.
the class InitModifyRequest method action.
/**
* {@inheritDoc}
*/
public void action(LdapMessageContainer<ModifyRequestDecorator> container) {
// Now, we can allocate the ModifyRequest Object
ModifyRequest internalModifyRequest = new ModifyRequestImpl();
internalModifyRequest.setMessageId(container.getMessageId());
ModifyRequestDecorator modifyRequestDecorator = new ModifyRequestDecorator(container.getLdapCodecService(), internalModifyRequest);
container.setMessage(modifyRequestDecorator);
}
Aggregations