File: TypeTest.pm

package info (click to toggle)
libpod-wsdl-perl 0.063-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 316 kB
  • sloc: perl: 1,808; xml: 44; makefile: 2
file content (64 lines) | stat: -rw-r--r-- 3,442 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package My::TypeTest;

=begin WSDL

_IN blaanyType                 $anyType                is a anyType               
_IN blaanySimpleType           $anySimpleType          is a anySimpleType              
_IN blastring                  $string                 is a string                      
_IN blanormalizedString        $normalizedString       is a normalizedString      
_IN blatoken                   $token                  is a token                      
_IN blaanyURI                  $anyURI                 is a anyURI                      
_IN blalanguage                $language               is a language              
_IN blaName                    $Name                   is a Name                      
_IN blaQName                   $QName                  is a QName                      
_IN blaNCName                  $NCName                 is a NCName                      
_IN blaboolean                 $boolean                is a boolean                      
_IN blafloat                   $float                  is a float                      
_IN bladouble                  $double                 is a double                      
_IN bladecimal                 $decimal                is a decimal                      
_IN blaint                     $int                    is a int                      
_IN blapositiveInteger         $positiveInteger        is a positiveInteger              
_IN blanonPositiveInteger      $nonPositiveInteger     is a nonPositiveInteger    
_IN blanegativeInteger         $negativeInteger        is a negativeInteger              
_IN blanonNegativeInteger      $nonNegativeInteger     is a nonNegativeInteger    
_IN blalong                    $long                   is a long                      
_IN blashort                   $short                  is a short                      
_IN blabyte                    $byte                   is a byte                      
_IN blaunsignedInt             $unsignedInt            is a unsignedInt              
_IN blaunsignedLong            $unsignedLong           is a unsignedLong              
_IN blaunsignedShort           $unsignedShort          is a unsignedShort              
_IN blaunsignedByte            $unsignedByte           is a unsignedByte              
_IN bladuration                $duration               is a duration              
_IN bladateTime                $dateTime               is a dateTime              
_IN blatime                    $time                   is a time                      
_IN bladate                    $date                   is a date                      
_IN blagYearMonth              $gYearMonth             is a gYearMonth              
_IN blagYear                   $gYear                  is a gYear                      
_IN blagMonthDay               $gMonthDay              is a gMonthDay              
_IN blagDay                    $gDay                   is a gDay                      
_IN blagMonth                  $gMonth                 is a gMonth                      
_IN blahexBinary               $hexBinary              is a hexBinary              
_IN blabase64Binary            $base64Binary           is a base64Binary            

=cut

sub testXSDTypes {}

=begin WSDL

_IN foo $My::Foo is my Foo

=cut

sub testComplexTypes {}

=begin WSDL

_IN foo @My::Foo is my Foo
_IN bar @string is a bar

=cut

sub testArrayTypes {}

1;