Return-Path: X-Original-To: apmail-abdera-dev-archive@www.apache.org Delivered-To: apmail-abdera-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id F097110BB4 for ; Fri, 18 Oct 2013 13:19:51 +0000 (UTC) Received: (qmail 41546 invoked by uid 500); 18 Oct 2013 13:19:51 -0000 Delivered-To: apmail-abdera-dev-archive@abdera.apache.org Received: (qmail 41441 invoked by uid 500); 18 Oct 2013 13:19:44 -0000 Mailing-List: contact dev-help@abdera.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@abdera.apache.org Delivered-To: mailing list dev@abdera.apache.org Received: (qmail 41427 invoked by uid 99); 18 Oct 2013 13:19:41 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Oct 2013 13:19:41 +0000 Date: Fri, 18 Oct 2013 13:19:41 +0000 (UTC) From: "Nicolas Couturier (JIRA)" To: dev@abdera.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (ABDERA-352) @Extension annotated List<> are not serialized MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Nicolas Couturier created ABDERA-352: ---------------------------------------- Summary: @Extension annotated List<> are not serialized Key: ABDERA-352 URL: https://issues.apache.org/jira/browse/ABDERA-352 Project: Abdera Issue Type: Bug Affects Versions: 1.2 Reporter: Nicolas Couturier Priority: Minor The following code: @Entry public class EntryWithListOfSimpleExtensions { @Extension(prefix="foo", ns="http://example.org/foo", name="ext", simple=true) public List getSimpleExtensions() { return Arrays.asList("foo", "bar", "baz"); } } produces the following output: foo, bar, baz while the following output could / would be expected: foo bar baz -- This message was sent by Atlassian JIRA (v6.1#6144)