Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 54818 invoked from network); 3 Jul 2005 16:07:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 3 Jul 2005 16:07:31 -0000 Received: (qmail 24652 invoked by uid 500); 3 Jul 2005 16:07:30 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 24597 invoked by uid 500); 3 Jul 2005 16:07:30 -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 24582 invoked by uid 99); 3 Jul 2005 16:07:29 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 03 Jul 2005 09:07:29 -0700 X-ASF-Spam-Status: No, hits=0.2 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Sun, 03 Jul 2005 09:07:31 -0700 Received: (qmail 54783 invoked by uid 65534); 3 Jul 2005 16:07:27 -0000 Message-ID: <20050703160727.54782.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r208939 - /directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ldap/pojo/LdapMessage.java Date: Sun, 03 Jul 2005 16:07:26 -0000 To: commits@directory.apache.org From: elecharny@apache.org X-Mailer: svnmailer-1.0.2 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: elecharny Date: Sun Jul 3 09:07:24 2005 New Revision: 208939 URL: http://svn.apache.org/viewcvs?rev=208939&view=rev Log: Added the accessor to the DelRequest pojo Modified: directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ldap/pojo/LdapMessage.java Modified: directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ldap/pojo/LdapMessage.java URL: http://svn.apache.org/viewcvs/directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ldap/pojo/LdapMessage.java?rev=208939&r1=208938&r2=208939&view=diff ============================================================================== --- directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ldap/pojo/LdapMessage.java (original) +++ directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ldap/pojo/LdapMessage.java Sun Jul 3 09:07:24 2005 @@ -185,6 +185,17 @@ } /** + * Get a DelRequest ldapObject, assuming that the caller knows that + * it is the LdapMessage exact type. + * + * @return Returns the ModifyDNRequest ldapObject. + */ + public DelRequest getDelRequest() + { + return (DelRequest)protocolOp; + } + + /** * Get a AddRequest ldapObject, assuming that the caller knows that * it is the LdapMessage exact type. *