From dev-return-15521-apmail-ws-dev-archive=ws.apache.org@ws.apache.org Mon Jun 30 03:45:26 2014 Return-Path: X-Original-To: apmail-ws-dev-archive@www.apache.org Delivered-To: apmail-ws-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 67A2511A3A for ; Mon, 30 Jun 2014 03:45:26 +0000 (UTC) Received: (qmail 98888 invoked by uid 500); 30 Jun 2014 03:45:26 -0000 Delivered-To: apmail-ws-dev-archive@ws.apache.org Received: (qmail 98715 invoked by uid 500); 30 Jun 2014 03:45:26 -0000 Mailing-List: contact dev-help@ws.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ws.apache.org Delivered-To: mailing list dev@ws.apache.org Received: (qmail 98705 invoked by uid 99); 30 Jun 2014 03:45:25 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 30 Jun 2014 03:45:25 +0000 Date: Mon, 30 Jun 2014 03:45:25 +0000 (UTC) From: "Michael Pigott (JIRA)" To: dev@ws.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (WSCOMMONS-587) XmlSchemaTypeRestriction does not receive XmlSchemaFacets MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Michael Pigott created WSCOMMONS-587: ---------------------------------------- Summary: XmlSchemaTypeRestriction does not receive XmlSchemaFacets Key: WSCOMMONS-587 URL: https://issues.apache.org/jira/browse/WSCOMMONS-587 Project: WS-Commons Issue Type: Bug Components: XmlSchema Affects Versions: XmlSchema 2.0 Reporter: Michael Pigott Hello, I originally filed this under https://issues.apache.org/jira/browse/WSCOMMONS-586 I'm sorry if there's another issue out for this already, and I missed it. XmlSchemaSimpleTypeRestriction never receives its facets. As far as I can tell, it's just because the functionality is missing ... The facets are initialized to an empty container in the constructor: {code} public XmlSchemaSimpleTypeRestriction() { facets = Collections.synchronizedList(new ArrayList()); {code} }} but the only method that uses them is the getter: {code} public List getFacets() { return this.facets; } {code} This is as of XmlSchema 2.1.0, which I pulled down today from Maven Central. I'm happy to dig into this in the coming week; how do I become a committer? Thanks, Mike -- This message was sent by Atlassian JIRA (v6.2#6252) --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@ws.apache.org For additional commands, e-mail: dev-help@ws.apache.org