LdapConstants.MODIFY_DN_RESPONSE_TAG, new GrammarAction<LdapMessageContainer<ModifyDnResponseDecorator>>( "Init ModifyDNResponse" )
{
public void action( LdapMessageContainer<ModifyDnResponseDecorator> container )
{
// Now, we can allocate the ModifyDnResponse Object
ModifyDnResponseDecorator modifyDnResponse = new ModifyDnResponseDecorator(
container.getLdapCodecService(), new ModifyDnResponseImpl( container.getMessageId() ) );
container.setMessage( modifyDnResponse );
LOG.debug( "Modify Dn response " );
}