Files
SOAP-WSDL/lib/SOAP/WSDL/XSD/Attribute.pm
Scott Walters ed715a4c88 smoke testing looks pretty good, only failing on amd64-netbsd machines and one random Linux machine (I should look why but I really don't want to know), so, bump version to 3.001 and do a release.
FAIL    5.10.1  NetBSD  6.1.4   amd64-netbsd
FAIL    5.14.2  GNU/Linux       3.11.0-18-generic       x86_64-linux-thread-multi
FAIL    5.10.1  NetBSD  6.1.4   amd64-netbsd-thread-multi
2014-08-29 15:05:06 -04:00

37 lines
1.0 KiB
Perl

package SOAP::WSDL::XSD::Attribute;
use strict;
use warnings;
use Class::Std::Fast::Storable constructor => 'none';
use base qw(SOAP::WSDL::Base);
use version; our $VERSION = qv('3.001');
#<attribute
# default = string
# fixed = string
# form = (qualified | unqualified)
# id = ID
# name = NCName
# ref = QName
# type = QName
# use = (optional | prohibited | required) : optional
# {any attributes with non-schema namespace . . .}>
# Content: (annotation?, (simpleType?))
#</attribute>
# id provided by Base
# name provided by Base
# annotation provided by Base
my %default_of :ATTR(:name<default> :default<()>);
my %fixed_of :ATTR(:name<fixed> :default<()>);
my %form_of :ATTR(:name<form> :default<()>);
my %type_of :ATTR(:name<type> :default<()>);
my %use_of :ATTR(:name<use> :default<()>);
my %ref_of :ATTR(:name<ref> :default<()>);
# may be defined as atomic simpleType
my %simpleType_of :ATTR(:name<simpleType> :default<()>);
1;