blob: 155baa077b8d035c6a1af6ef01ffa75637683212 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/
package org.apache.directory.api.dsmlv2.request;
import java.nio.ByteBuffer;
import org.apache.directory.api.asn1.EncoderException;
import org.apache.directory.api.dsmlv2.AbstractDsmlMessageDecorator;
import org.apache.directory.api.dsmlv2.ParserUtils;
import org.apache.directory.api.ldap.codec.api.LdapApiService;
import org.apache.directory.api.ldap.model.message.Request;
import org.dom4j.Element;
/**
* Abstract class for DSML requests.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
public abstract class AbstractRequestDsml<E extends Request>
extends AbstractDsmlMessageDecorator<E>
implements Request
{
/**
* Creates a new instance of AbstractRequestDsml.
*
* @param ldapMessage
* the message to decorate
*/
public AbstractRequestDsml( LdapApiService codec, E ldapMessage )
{
super( codec, ldapMessage );
}
/**
* Creates the Request Element and adds RequestID and Controls.
*
* @param root
* the root element
* @return
* the Request Element of the given name containing
*/
public Element toDsml( Element root )
{
Element element = root.addElement( getRequestName() );
// Request ID
int requestID = getDecorated().getMessageId();
if ( requestID > 0 )
{
element.addAttribute( "requestID", "" + requestID );
}
// Controls
ParserUtils.addControls( getCodecService(), element, getDecorated().getControls().values() );
return element;
}
/**
* Gets the name of the request according to the type of the decorated element.
*
* @return
* the name of the request according to the type of the decorated element.
*/
private String getRequestName()
{
switch ( getDecorated().getType() )
{
case ABANDON_REQUEST:
return "abandonRequest";
case ADD_REQUEST:
return "addRequest";
case BIND_REQUEST:
return "authRequest";
case COMPARE_REQUEST:
return "compareRequest";
case DEL_REQUEST:
return "delRequest";
case EXTENDED_REQUEST:
return "extendedRequest";
case MODIFYDN_REQUEST:
return "modDNRequest";
case MODIFY_REQUEST:
return "modifyRequest";
case SEARCH_REQUEST:
return "searchRequest";
default:
return "error";
}
}
public int computeLength()
{
return 0;
}
public ByteBuffer encode( ByteBuffer buffer ) throws EncoderException
{
return null;
}
/**
* {@inheritDoc}
*/
public boolean hasResponse()
{
return getDecorated().hasResponse();
}
}