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 */
020
021package org.apache.directory.shared.ldap.extras.controls;
022
023/**
024 * TODO SyncModifyDnControlEnum.
025 *
026 * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
027 */
028public enum SyncModifyDnType
029{
030    MOVE( 0 ),
031    RENAME( 1 ),
032    MOVEANDRENAME( 2 );
033    
034    /** Internal value for each tag */
035    private int value;
036    
037    private SyncModifyDnType( int value )
038    {
039        this.value = value;
040    }
041    
042    
043    /**
044     * @return The value associated with the current element.
045     */
046    public int getValue()
047    {
048        return value;
049    }
050    
051    
052    public static SyncModifyDnType getModifyDnType( int value )
053    {
054        switch ( value )
055        {
056            case 0 : return MOVE;
057            
058            case 1 : return RENAME;
059            
060            case 2 : return MOVEANDRENAME;
061        }
062        
063        throw new IllegalArgumentException( "unknown modify dn operantion type " + value );
064    }
065}