line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Biblio::ILL::ISO::ResponderRECEIVED; |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
=head1 NAME |
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
Biblio::ILL::ISO::ResponderRECEIVED |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
=cut |
8
|
|
|
|
|
|
|
|
9
|
4
|
|
|
4
|
|
25
|
use Biblio::ILL::ISO::ILLASNtype; |
|
4
|
|
|
|
|
9
|
|
|
4
|
|
|
|
|
104
|
|
10
|
4
|
|
|
4
|
|
24
|
use Biblio::ILL::ISO::ENUMERATED; |
|
4
|
|
|
|
|
7
|
|
|
4
|
|
|
|
|
78
|
|
11
|
|
|
|
|
|
|
|
12
|
4
|
|
|
4
|
|
19
|
use Carp; |
|
4
|
|
|
|
|
12
|
|
|
4
|
|
|
|
|
389
|
|
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 VERSION |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
Version 0.01 |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=cut |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
our $VERSION = '0.01'; |
21
|
|
|
|
|
|
|
#--------------------------------------------------------------------------- |
22
|
|
|
|
|
|
|
# Mods |
23
|
|
|
|
|
|
|
# 0.01 - 2003.07.27 - original version |
24
|
|
|
|
|
|
|
#--------------------------------------------------------------------------- |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 DESCRIPTION |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
Biblio::ILL::ISO::ResponderRECEIVED is a derivation of Biblio::ILL::ISO::ENUMERATED. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head1 USES |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
None. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head1 USED IN |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
Biblio::ILL::ISO::ResponderOptionalMessageType |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=cut |
39
|
|
|
|
|
|
|
|
40
|
4
|
|
|
4
|
|
1001
|
BEGIN{@ISA = qw ( Biblio::ILL::ISO::ENUMERATED |
41
|
|
|
|
|
|
|
Biblio::ILL::ISO::ILLASNtype );} # inherit from ILLASNtype |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head1 FROM THE ASN DEFINITION |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
(part of Responder-Optional-Message-Type) |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
responder-RECEIVED [2] IMPLICIT ENUMERATED { |
48
|
|
|
|
|
|
|
requires (1), |
49
|
|
|
|
|
|
|
desires (2), |
50
|
|
|
|
|
|
|
neither (3) |
51
|
|
|
|
|
|
|
} |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=cut |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=head1 METHODS |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=cut |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
#--------------------------------------------------------------- |
60
|
|
|
|
|
|
|
# |
61
|
|
|
|
|
|
|
#--------------------------------------------------------------- |
62
|
|
|
|
|
|
|
=head1 |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
=head2 new( $s ) |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
Creates a new ResponderRECEIVED object. |
67
|
|
|
|
|
|
|
Valid paramaters are listed in the FROM THE ASN DEFINITION section |
68
|
|
|
|
|
|
|
(e.g. "requires"). |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
=cut |
71
|
|
|
|
|
|
|
sub new { |
72
|
3
|
|
|
3
|
1
|
5
|
my $class = shift; |
73
|
3
|
|
|
|
|
7
|
my $self = {}; |
74
|
|
|
|
|
|
|
|
75
|
3
|
|
|
|
|
11
|
$self->{"ENUM_LIST"} = {"requires" => 1, |
76
|
|
|
|
|
|
|
"desires" => 2, |
77
|
|
|
|
|
|
|
"neither" => 3 |
78
|
|
|
|
|
|
|
}; |
79
|
|
|
|
|
|
|
|
80
|
3
|
50
|
|
|
|
8
|
if (@_) { |
81
|
3
|
|
|
|
|
4
|
my $s = shift; |
82
|
|
|
|
|
|
|
|
83
|
3
|
50
|
|
|
|
10
|
if ( exists $self->{"ENUM_LIST"}->{$s} ) { |
84
|
3
|
|
|
|
|
7
|
$self->{"ENUMERATED"} = $self->{"ENUM_LIST"}->{$s}; |
85
|
|
|
|
|
|
|
} else { |
86
|
0
|
|
|
|
|
0
|
croak "invalid ResponderRECIEVED type: [$s]"; |
87
|
|
|
|
|
|
|
} |
88
|
|
|
|
|
|
|
} |
89
|
|
|
|
|
|
|
|
90
|
3
|
|
33
|
|
|
20
|
bless($self, ref($class) || $class); |
91
|
3
|
|
|
|
|
15
|
return ($self); |
92
|
|
|
|
|
|
|
} |
93
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
=head1 SEE ALSO |
95
|
|
|
|
|
|
|
|
96
|
|
|
|
|
|
|
See the README for system design notes. |
97
|
|
|
|
|
|
|
See the parent class(es) for other available methods. |
98
|
|
|
|
|
|
|
|
99
|
|
|
|
|
|
|
For more information on Interlibrary Loan standards (ISO 10160/10161), |
100
|
|
|
|
|
|
|
a good place to start is: |
101
|
|
|
|
|
|
|
|
102
|
|
|
|
|
|
|
http://www.nlc-bnc.ca/iso/ill/main.htm |
103
|
|
|
|
|
|
|
|
104
|
|
|
|
|
|
|
=cut |
105
|
|
|
|
|
|
|
|
106
|
|
|
|
|
|
|
=head1 AUTHOR |
107
|
|
|
|
|
|
|
|
108
|
|
|
|
|
|
|
David Christensen, |
109
|
|
|
|
|
|
|
|
110
|
|
|
|
|
|
|
=cut |
111
|
|
|
|
|
|
|
|
112
|
|
|
|
|
|
|
|
113
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
114
|
|
|
|
|
|
|
|
115
|
|
|
|
|
|
|
Copyright 2003 by David Christensen |
116
|
|
|
|
|
|
|
|
117
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or modify it |
118
|
|
|
|
|
|
|
under the same terms as Perl itself. |
119
|
|
|
|
|
|
|
|
120
|
|
|
|
|
|
|
=cut |
121
|
|
|
|
|
|
|
|
122
|
|
|
|
|
|
|
1; |