File Coverage

blib/lib/Net/SinFP3/Ext/DBI/SignatureP.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             #
2             # $Id: SignatureP.pm 22 2015-01-04 16:42:47Z gomor $
3             #
4             package Net::SinFP3::Ext::DBI::SignatureP;
5 1     1   723 use strict;
  1         2  
  1         36  
6 1     1   5 use warnings;
  1         2  
  1         29  
7              
8 1     1   5 use base qw(Net::SinFP3::Ext::DBI);
  1         1  
  1         181  
9              
10             __PACKAGE__->table('SignatureP');
11             __PACKAGE__->columns(All => qw/
12             idSignatureP
13             trusted
14             idIpVersion
15             idSystemClass
16             idVendor
17             idOs
18             idOsVersion
19             idOsVersionFamily
20             idPatternTcpFlags
21             idPatternTcpWindow
22             idPatternTcpOptions
23             idPatternTcpMss
24             idPatternTcpWScale
25             idPatternTcpOLength
26             /);
27             __PACKAGE__->has_a(idIpVersion => 'Net::SinFP3::Ext::DBI::IpVersion');
28             __PACKAGE__->has_a(idSystemClass => 'Net::SinFP3::Ext::DBI::SystemClass');
29             __PACKAGE__->has_a(idVendor => 'Net::SinFP3::Ext::DBI::Vendor');
30             __PACKAGE__->has_a(idOs => 'Net::SinFP3::Ext::DBI::Os');
31             __PACKAGE__->has_a(idOsVersion => 'Net::SinFP3::Ext::DBI::OsVersion');
32             __PACKAGE__->has_many(idOsVersionChildren => 'Net::SinFP3::Ext::DBI::OsVersionChildren');
33             __PACKAGE__->has_a(idOsVersionFamily => 'Net::SinFP3::Ext::DBI::OsVersionFamily');
34             __PACKAGE__->has_a(idPatternTcpFlags => 'Net::SinFP3::Ext::DBI::PatternTcpFlags');
35             __PACKAGE__->has_a(idPatternTcpWindow => 'Net::SinFP3::Ext::DBI::PatternTcpWindow');
36             __PACKAGE__->has_a(idPatternTcpOptions => 'Net::SinFP3::Ext::DBI::PatternTcpOptions');
37             __PACKAGE__->has_a(idPatternTcpMss => 'Net::SinFP3::Ext::DBI::PatternTcpMss');
38             __PACKAGE__->has_a(idPatternTcpWScale => 'Net::SinFP3::Ext::DBI::PatternTcpWScale');
39             __PACKAGE__->has_a(idPatternTcpOLength => 'Net::SinFP3::Ext::DBI::PatternTcpOLength');
40              
41             1;
42              
43             __END__