This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 8161 - Enum: en:Code isn't extensible
Summary: Enum: en:Code isn't extensible
Status: CLOSED REMIND
Alias: None
Product: WS-Resource Access
Classification: Unclassified
Component: Enumeration (show other bugs)
Version: LC
Hardware: PC Windows XP
: P2 normal
Target Milestone: ---
Assignee: Doug Davis
QA Contact: notifications mailing list for WS Resource Access
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-11-03 20:31 UTC by Doug Davis
Modified: 2010-03-17 10:52 UTC (History)
0 users

See Also:


Attachments

Description Doug Davis 2009-11-03 20:31:52 UTC
modify en:Code so that people can define new URIs that can be used.
Right now its just:

  <xs:simpleType name="EnumerationEndCodeType">
    <xs:restriction base="xs:anyURI">
      <xs:enumeration value=
        "http://www.w3.org/2009/09/ws-enu/SourceShuttingDown" />
      <xs:enumeration value=
        "http://www.w3.org/2009/09/ws-enu/SourceCancelling" />
    </xs:restriction>
  </xs:simpleType>

Proposal:
allow new (impl-specific URIs) to be used.
Change it to just an xs:any and let the body of the spec define the 
two well-known URIs.  

So "Code" would then change from:
<xs:element name="Code" type="tns:OpenEnumerationEndCodeType"/>

to:
<xs:element name="Code" type="xs:anyURI"/>
Comment 1 Robert Freund 2009-12-08 21:23:18 UTC
Resolved as proposed