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.shared.ldap.extras.controls.syncrepl_impl;
021
022
023import org.apache.directory.shared.asn1.ber.AbstractContainer;
024
025
026/**
027 * A container for the SyncStateValue control
028 *  
029 * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
030 */
031public class SyncStateValueContainer extends AbstractContainer
032{
033    /** SyncStateValueControl */
034    private SyncStateValueDecorator control;
035
036
037    /**
038     * Creates a new SyncStateValueControlContainer object. We will store one grammar,
039     * it's enough ...
040     */
041    public SyncStateValueContainer()
042    {
043        super();
044        stateStack = new int[1];
045        grammar = SyncStateValueGrammar.getInstance();
046        setTransition( SyncStateValueStatesEnum.START_STATE );
047    }
048
049
050    /**
051     * Creates a new SyncStateValueControlContainer object. We will store one grammar,
052     * it's enough ...
053     */
054    public SyncStateValueContainer( SyncStateValueDecorator control )
055    {
056        super();
057        this.control = control;
058        stateStack = new int[1];
059        grammar = SyncStateValueGrammar.getInstance();
060        setTransition( SyncStateValueStatesEnum.START_STATE );
061    }
062
063
064    /**
065     * @return Returns the syncStateValue control.
066     */
067    public SyncStateValueDecorator getSyncStateValueControl()
068    {
069        return control;
070    }
071
072
073    /**
074     * Set a SyncStateValueControl Object into the container. It will be completed by
075     * the ldapDecoder.
076     * 
077     * @param control the SyncStateValueControl to set.
078     */
079    public void setSyncStateValueControl( SyncStateValueDecorator control )
080    {
081        this.control = control;
082    }
083
084    /**
085     * Clean the container
086     */
087    public void clean()
088    {
089        super.clean();
090        control = null;
091    }
092}