Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 80398 invoked from network); 4 Jul 2005 22:35:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 4 Jul 2005 22:35:27 -0000 Received: (qmail 45569 invoked by uid 500); 4 Jul 2005 22:35:27 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 45523 invoked by uid 500); 4 Jul 2005 22:35:27 -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 45508 invoked by uid 99); 4 Jul 2005 22:35:27 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Jul 2005 15:35:27 -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; Mon, 04 Jul 2005 15:35:27 -0700 Received: (qmail 80368 invoked by uid 65534); 4 Jul 2005 22:35:18 -0000 Message-ID: <20050704223518.80367.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r209135 - /directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ldap/pojo/Response.java Date: Mon, 04 Jul 2005 22:35:17 -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: Mon Jul 4 15:35:16 2005 New Revision: 209135 URL: http://svn.apache.org/viewcvs?rev=209135&view=rev Log: Added a toString() method Modified: directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ldap/pojo/Response.java Modified: directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ldap/pojo/Response.java URL: http://svn.apache.org/viewcvs/directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ldap/pojo/Response.java?rev=209135&r1=209134&r2=209135&view=diff ============================================================================== --- directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ldap/pojo/Response.java (original) +++ directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ldap/pojo/Response.java Mon Jul 4 15:35:16 2005 @@ -52,10 +52,22 @@ /** * Set the ldap result + * * @param ldapResult The ldapResult to set. */ public void setLdapResult( LdapResult ldapResult ) { this.ldapResult = ldapResult; } + + /** + * Get a String representation of an Response + * + * @return An Response String + */ + public String toString() + { + return ldapResult.toString(); + } + }