Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 46995 invoked from network); 5 Jun 2005 22:50:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 5 Jun 2005 22:50:08 -0000 Received: (qmail 6441 invoked by uid 500); 5 Jun 2005 22:50:07 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 6404 invoked by uid 500); 5 Jun 2005 22:50:07 -0000 Mailing-List: contact commits-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@directory.apache.org Delivered-To: mailing list commits@directory.apache.org Received: (qmail 6391 invoked by uid 99); 5 Jun 2005 22:50:07 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Sun, 05 Jun 2005 15:50:07 -0700 Received: (qmail 46896 invoked by uid 65534); 5 Jun 2005 22:50:04 -0000 Message-ID: <20050605225004.46895.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Subject: svn commit: r180164 - /directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ldap/pojo/ModifyDNResponsePOJO.java Date: Sun, 05 Jun 2005 22:50:04 -0000 To: commits@directory.apache.org From: elecharny@apache.org X-Mailer: svnmailer-1.0.0-dev X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: elecharny Date: Sun Jun 5 15:50:04 2005 New Revision: 180164 URL: http://svn.apache.org/viewcvs?rev=3D180164&view=3Drev Log: Created the ModifyDNResponsePOJO Added: directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ldap/po= jo/ModifyDNResponsePOJO.java Added: directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ldap= /pojo/ModifyDNResponsePOJO.java URL: http://svn.apache.org/viewcvs/directory/sandbox/trunk/asn1-new-codec/s= rc/java/org/apache/asn1/ldap/pojo/ModifyDNResponsePOJO.java?rev=3D180164&vi= ew=3Dauto =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ldap/po= jo/ModifyDNResponsePOJO.java (added) +++ directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ldap/po= jo/ModifyDNResponsePOJO.java Sun Jun 5 15:50:04 2005 @@ -0,0 +1,36 @@ +/* + * Copyright 2005 The Apache Software Foundation + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or impli= ed. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ +package org.apache.asn1.ldap.pojo; + +/** + * An ModifyResponse Message. Its syntax is : + * ModifyDNResponse ::=3D [APPLICATION 13] LDAPResult + *=20 + * @author Apache Directory Pr= oject + */ +public class ModifyDNResponsePOJO extends ResponsePOJO +{ + //~ Constructors -----------------------------------------------------= -------------------------- + + /** + * Creates a new ModifyDNResponsePOJO object. + */ + public ModifyDNResponsePOJO() + { + super( ); + } +}