File Coverage

blib/lib/SOAPjr/message.pm
Criterion Covered Total %
statement 9 13 69.2
branch n/a
condition n/a
subroutine 3 4 75.0
pod n/a
total 12 17 70.5


line stmt bran cond sub pod time code
1             package SOAPjr::message;
2              
3 1     1   8 use strict;
  1         2  
  1         40  
4 1     1   6 use warnings;
  1         2  
  1         52  
5              
6             =head1 NAME
7              
8             SOAPjr::message - base class for SOAPjr::request and SOAPjr::response objects
9              
10             =head1 VERSION
11              
12             Version 1.0.1
13              
14             =cut
15              
16             our $VERSION = "1.0.1";
17              
18             =head1 SYNOPSIS
19              
20             See perldoc SOAPjr for more info.
21              
22             =cut
23              
24 1     1   5 use base qw(SOAPjr::base);
  1         2  
  1         182  
25              
26             sub _init {
27 0     0     my $self = shift;
28 0           delete $self->{MOBject_structure}->{ENVELOPE};
29 0           delete $self->{MOBject_structure}->{OPTIONS};
30 0           return $self->SUPER::_init(@_);
31             }
32              
33             =head1 AUTHOR
34              
35             Rob Manson,
36              
37             =head1 BUGS
38              
39             Please report any bugs or feature requests to C, or through
40             the web interface at L. I will be notified, and then you'll
41             automatically be notified of progress on your bug as I make changes.
42              
43              
44              
45              
46             =head1 SUPPORT
47              
48             You can find documentation for this module with the perldoc command.
49              
50             perldoc SOAPjr
51              
52              
53             You can also look for information at:
54              
55             =over 4
56              
57             =item * SOAPjr.org
58              
59             L
60              
61             =item * RT: CPAN's request tracker
62              
63             L
64              
65             =item * AnnoCPAN: Annotated CPAN documentation
66              
67             L
68              
69             =item * CPAN Ratings
70              
71             L
72              
73             =item * Search CPAN
74              
75             L
76              
77             =back
78              
79             =head1 ACKNOWLEDGEMENTS
80              
81             See L for further information on related RFC's and specifications.
82              
83             =head1 COPYRIGHT & LICENSE
84              
85             Copyright 2008 Rob Manson, Sean McCarthy and http://SOAPjr.org, some rights reserved.
86              
87             This file is part of SOAPjr.
88              
89             SOAPjr is free software: you can redistribute it and/or modify
90             it under the terms of the GNU General Public License as published by
91             the Free Software Foundation, either version 3 of the License, or
92             (at your option) any later version.
93              
94             SOAPjr is distributed in the hope that it will be useful,
95             but WITHOUT ANY WARRANTY; without even the implied warranty of
96             MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
97             GNU General Public License for more details.
98              
99             You should have received a copy of the GNU General Public License
100             along with SOAPjr. If not, see .
101              
102             =cut
103              
104             1;