1package Business::EDI::CodeList::ScopeOfSecurityApplicationCoded;
2
3use base 'Business::EDI::CodeList';
4my $VERSION     = 0.02;
5sub list_number {return "0541";}
6my $usage       = 'B';
7
8# 0541  Scope of security application, coded
9# Desc: Specification of the scope of application of the security
10# service defined in the security header.
11# Repr: an..3
12
13my %code_hash = (
14'1' => [ 'Security header and message body',
15    'The current security header segment group and the object body itself, only. In this case no other security header or security trailer segment group shall be encompassed within this scope.' ],
16'2' => [ 'From security header to security trailer',
17    'From the current security header segment group, to the associated security trailer segment group. In this case the current security header segment group, the object body and all the other embedded security header and trailer segment groups shall be encompassed within this scope.' ],
18'3' => [ 'Whole related message, package, group or interchange',
19    'From the first character of the message, group, or interchange to the last character of the message, group or interchange.' ],
20'4' => [ 'Interactive security information, security header and',
21     ],
22'message' => [ 'body',
23    'Related security information, related interactive security header and interactive message body.' ],
24'5' => [ 'Interactive security information plus security header to',
25     ],
26'security' => [ 'trailer',
27    'Related security information, security header, all other embedded interactive security headers, interactive message body and all other embedded interactive security trailers.' ],
28'6' => [ 'Entire batch message',
29    'From and including, the first character ("U") of the message header segment (UNH) through to and including, the last character (segment  terminator) of the corresponding message trailer segment (UNT).' ],
30'ZZZ' => [ 'Mutually agreed',
31    'The scope of security application is defined in an agreement between sender and receiver.' ],
32);
33sub get_codes { return \%code_hash; }
34
351;
36