001/*
002 *  Licensed to the Apache Software Foundation (ASF) under one
003 *  or more contributor license agreements.  See the NOTICE file
004 *  distributed with this work for additional information
005 *  regarding copyright ownership.  The ASF licenses this file
006 *  to you under the Apache License, Version 2.0 (the
007 *  "License"); you may not use this file except in compliance
008 *  with the License.  You may obtain a copy of the License at
009 *  
010 *    http://www.apache.org/licenses/LICENSE-2.0
011 *  
012 *  Unless required by applicable law or agreed to in writing,
013 *  software distributed under the License is distributed on an
014 *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
015 *  KIND, either express or implied.  See the License for the
016 *  specific language governing permissions and limitations
017 *  under the License. 
018 *  
019 */
020package org.apache.directory.api.ldap.model.message;
021
022
023/**
024 * An enum to store the Ldap message type.
025 *
026 * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
027 */
028public enum MessageTypeEnum
029{
030    /** The AbandonRequest message */
031    ABANDON_REQUEST,
032    
033    /** The AddResquest message */
034    ADD_REQUEST,
035    
036    /** The Response message */
037    ADD_RESPONSE,
038    
039    /** The BindRequest message */
040    BIND_REQUEST,
041    
042    /** The BindResponse message */
043    BIND_RESPONSE,
044    
045    /** The  ompareRequest message */
046    COMPARE_REQUEST,
047    
048    /** The CompareResponse message */
049    COMPARE_RESPONSE,
050    
051    /** The DelRequest message */
052    DEL_REQUEST,
053    
054    /** The DelResponse message */
055    DEL_RESPONSE,
056    
057    /** The ExtendedRequest message */
058    EXTENDED_REQUEST,
059    
060    /** The ExtendedResponse message */
061    EXTENDED_RESPONSE,
062    
063    /** The ModifyDNRequest message */
064    MODIFYDN_REQUEST,
065    
066    /** The ModifyDNResponse message */
067    MODIFYDN_RESPONSE,
068    
069    /** The ModifyRequest message */
070    MODIFY_REQUEST,
071    
072    /** The ModifyResponse message */
073    MODIFY_RESPONSE,
074    
075    /** The SearchRequest message */
076    SEARCH_REQUEST,
077    
078    /** The SeaechResultDone response message */
079    SEARCH_RESULT_DONE,
080    
081    /** The SearchResultEntry Response message */
082    SEARCH_RESULT_ENTRY,
083    
084    /** The earchResultReference Response message */
085    SEARCH_RESULT_REFERENCE,
086    
087    /** The UnbindRequest message */
088    UNBIND_REQUEST,
089    
090    /** The IntermediateResponse message */
091    INTERMEDIATE_RESPONSE;
092}