Object oriented module is not an Exporter. 2 subs added, also.
authorJoe Atzberger (siptest <atz4sip@arwen.metavore.com>
Wed, 4 Jun 2008 23:14:45 +0000 (18:14 -0500)
committerJoshua Ferraro <jmf@liblime.com>
Fri, 6 Jun 2008 03:43:31 +0000 (22:43 -0500)
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
C4/SIP/Sip/Configuration/Institution.pm

index f31ecc8..cdd8a08 100644 (file)
@@ -8,7 +8,7 @@ package Sip::Configuration::Institution;
 use strict;
 use warnings;
 use English;
-use Exporter;
+use Exporter;
 
 sub new {
     my ($class, $obj) = @_;
@@ -24,8 +24,17 @@ sub new {
 
 sub name {
     my $self = shift;
-
     return $self->{name};
 }
 
+sub policy {
+    my $self = shift;
+    return $self->{policy};
+}
+
+sub parms {
+    my $self = shift;
+    return $self->{parms};
+}
+
 1;