51db446428
git-cpan-module: SOAP-WSDL git-cpan-version: 2.00_32 git-cpan-authorid: MKUTTER git-cpan-file: authors/id/M/MK/MKUTTER/SOAP-WSDL-2.00_32.tar.gz
21 lines
517 B
Perl
21 lines
517 B
Perl
#!/usr/bin/perl
|
|
package MyComplexType;
|
|
use strict;
|
|
use Class::Std::Fast::Storable constructor => 'none';
|
|
use lib '../../lib';
|
|
use base ('SOAP::WSDL::XSD::Typelib::ComplexType');
|
|
|
|
Class::Std::initialize();
|
|
|
|
my %MyTestName_of :ATTR(:get<MyTestName>);
|
|
|
|
__PACKAGE__->_factory(
|
|
[ qw(MyTestName) ], # order
|
|
{ MyTestName => \%MyTestName_of }, # attribute lookup map
|
|
{ MyTestName => 'SOAP::WSDL::XSD::Typelib::Builtin::string' } # class name lookup map
|
|
);
|
|
|
|
sub get_xmlns { 'urn:Test' };
|
|
|
|
1;
|