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.extended.ads_impl.gracefulDisconnect;
022
023
024import org.apache.directory.shared.asn1.AbstractAsn1Object;
025
026
027/**
028 * A common class for graceful Disconnect and Shutdown extended operations.
029 * 
030 * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
031 */
032public abstract class GracefulAction extends AbstractAsn1Object
033{
034    /** Undetermined value used for timeOffline */
035    public static final int UNDETERMINED = 0;
036
037    /** The shutdown is immediate */
038    public static final int NOW = 0;
039
040    /** offline Time after disconnection */
041    protected int timeOffline = UNDETERMINED;
042
043    /** Delay before disconnection */
044    protected int delay = NOW;
045
046
047    /**
048     * Default constructor. The time offline will be set to UNDETERMINED and
049     * there is no delay.
050     */
051    public GracefulAction()
052    {
053        super();
054    }
055
056
057    /**
058     * Create a GracefulAction object, with a timeOffline and a delay
059     * 
060     * @param timeOffline The time the server will be offline
061     * @param delay The delay before the disconnection
062     */
063    public GracefulAction( int timeOffline, int delay )
064    {
065        super();
066        this.timeOffline = timeOffline;
067        this.delay = delay;
068    }
069
070
071    public int getDelay()
072    {
073        return delay;
074    }
075
076
077    public void setDelay( int delay )
078    {
079        this.delay = delay;
080    }
081
082
083    public int getTimeOffline()
084    {
085        return timeOffline;
086    }
087
088
089    public void setTimeOffline( int timeOffline )
090    {
091        this.timeOffline = timeOffline;
092    }
093}