001/*
002 * CDDL HEADER START
003 *
004 * The contents of this file are subject to the terms of the
005 * Common Development and Distribution License, Version 1.0 only
006 * (the "License").  You may not use this file except in compliance
007 * with the License.
008 *
009 * You can obtain a copy of the license at legal-notices/CDDLv1_0.txt
010 * or http://forgerock.org/license/CDDLv1.0.html.
011 * See the License for the specific language governing permissions
012 * and limitations under the License.
013 *
014 * When distributing Covered Code, include this CDDL HEADER in each
015 * file and include the License file at legal-notices/CDDLv1_0.txt.
016 * If applicable, add the following below this CDDL HEADER, with the
017 * fields enclosed by brackets "[]" replaced with your own identifying
018 * information:
019 *      Portions Copyright [yyyy] [name of copyright owner]
020 *
021 * CDDL HEADER END
022 *
023 *
024 *      Copyright 2008-2009 Sun Microsystems, Inc.
025 */
026
027package org.opends.admin.ads;
028
029import javax.naming.ldap.BasicControl;
030
031/**
032 * This class implements the LDAP subtree delete control for JNDI.
033 */
034public class SubtreeDeleteControl extends BasicControl
035{
036  /**
037   * The serial version identifier required to satisfy the compiler
038   * because this class implements <CODE>javax.ldap.naming.Control</CODE>,
039   * which extends the <CODE>java.io.Serializable</CODE> interface.
040   * This value was generated using the <CODE>serialver</CODE>
041   * command-line utility included with the Java SDK.
042   */
043  static final long serialVersionUID = 3941576361457157921L;
044
045  /**
046    * Default constructor.
047    */
048  public SubtreeDeleteControl()
049  {
050    super("1.2.840.113556.1.4.805");
051  }
052}