You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@abdera.apache.org by "Nicolas Couturier (JIRA)" <ji...@apache.org> on 2013/10/14 13:32:41 UTC

[jira] [Created] (ABDERA-351) Simple @Extension-s don't print text child; @Extension-s print wrong namespace and prefix of their QName

Nicolas Couturier created ABDERA-351:
----------------------------------------

             Summary: Simple @Extension-s don't print text child; @Extension-s print wrong namespace and prefix of their QName
                 Key: ABDERA-351
                 URL: https://issues.apache.org/jira/browse/ABDERA-351
             Project: Abdera
          Issue Type: Bug
    Affects Versions: 1.1.3, 1.2
            Reporter: Nicolas Couturier
            Priority: Minor


1. When using:

    @Extension(simple=true)
    public String getExtension() { return "foo"; }

output XML ends up as:

    <##default:##default xmlns:##default="##default">
    </##default:##default>

2. When using :

    @Extension(ns = "http://example.org/simple", name = "foo", prefix = "simple", simple = true)
    public String getExtension() { return "foo"; }

output XML ends up as :

    <foo xmlns="">
    </foo>




--
This message was sent by Atlassian JIRA
(v6.1#6144)