Return-Path: Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: (qmail 59177 invoked from network); 12 Nov 2010 13:06:56 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 12 Nov 2010 13:06:56 -0000 Received: (qmail 41483 invoked by uid 500); 12 Nov 2010 13:07:28 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 41420 invoked by uid 500); 12 Nov 2010 13:07:27 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 41413 invoked by uid 99); 12 Nov 2010 13:07:27 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Nov 2010 13:07:27 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Nov 2010 13:07:27 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 9500F23889F1; Fri, 12 Nov 2010 13:06:13 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1034387 - /activemq/activemq-apollo/trunk/apollo-dto/src/main/java/org/apache/activemq/apollo/dto/DestinationStatusDTO.java Date: Fri, 12 Nov 2010 13:06:13 -0000 To: commits@activemq.apache.org From: chirino@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20101112130613.9500F23889F1@eris.apache.org> Author: chirino Date: Fri Nov 12 13:06:13 2010 New Revision: 1034387 URL: http://svn.apache.org/viewvc?rev=1034387&view=rev Log: jason fields should be plural. Modified: activemq/activemq-apollo/trunk/apollo-dto/src/main/java/org/apache/activemq/apollo/dto/DestinationStatusDTO.java Modified: activemq/activemq-apollo/trunk/apollo-dto/src/main/java/org/apache/activemq/apollo/dto/DestinationStatusDTO.java URL: http://svn.apache.org/viewvc/activemq/activemq-apollo/trunk/apollo-dto/src/main/java/org/apache/activemq/apollo/dto/DestinationStatusDTO.java?rev=1034387&r1=1034386&r2=1034387&view=diff ============================================================================== --- activemq/activemq-apollo/trunk/apollo-dto/src/main/java/org/apache/activemq/apollo/dto/DestinationStatusDTO.java (original) +++ activemq/activemq-apollo/trunk/apollo-dto/src/main/java/org/apache/activemq/apollo/dto/DestinationStatusDTO.java Fri Nov 12 13:06:13 2010 @@ -42,17 +42,20 @@ public class DestinationStatusDTO extend * Ids of all connections that are producing to the destination */ @XmlElement(name="producer") + @JsonProperty("producers") public List producers = new ArrayList(); /** * Ids of all connections that are consuming from the destination */ @XmlElement(name="consumer") + @JsonProperty("consumers") public List consumers = new ArrayList(); /** * Ids of all queues that are associated with the destination */ @XmlElement(name="queue") + @JsonProperty("queues") public List queues = new ArrayList(); } \ No newline at end of file