Skip to content
Snippets Groups Projects
Commit 045b33fe authored by Guillaume ROUSSE's avatar Guillaume ROUSSE
Browse files

cleanup imported modules list

parent a9813b7a
No related branches found
No related tags found
No related merge requests found
...@@ -20,13 +20,13 @@ use Pod::Usage; ...@@ -20,13 +20,13 @@ use Pod::Usage;
use Conf; use Conf;
use IdPAccountManager::Data::AuthenticationToken; use IdPAccountManager::Data::AuthenticationToken;
use IdPAccountManager::Data::AuthenticationToken::Manager; use IdPAccountManager::Data::AuthenticationToken::Manager;
use IdPAccountManager::Data::TestAccount;
use IdPAccountManager::Data::TestAccount::Manager;
use IdPAccountManager::Data::ServiceProvider; use IdPAccountManager::Data::ServiceProvider;
use IdPAccountManager::Data::ServiceProvider::Manager; use IdPAccountManager::Data::ServiceProvider::Manager;
use IdPAccountManager::SAMLMetadata; use IdPAccountManager::Data::TestAccount;
use IdPAccountManager::Data::TestAccount::Manager;
use IdPAccountManager::Configuration; use IdPAccountManager::Configuration;
use IdPAccountManager::Logger; use IdPAccountManager::Logger;
use IdPAccountManager::SAMLMetadata;
my %options; my %options;
GetOptions( GetOptions(
......
...@@ -12,14 +12,6 @@ use warnings; ...@@ -12,14 +12,6 @@ use warnings;
use utf8; use utf8;
use lib qw(lib conf); use lib qw(lib conf);
use CGI;
use CGI::Cookie;
use CGI::Util;
use Template;
use Template::Constants qw( :debug );
use IdPAccountManager::SAMLMetadata;
use IdPAccountManager::Configuration; use IdPAccountManager::Configuration;
use IdPAccountManager::WebRequest; use IdPAccountManager::WebRequest;
......
...@@ -8,11 +8,11 @@ use strict; ...@@ -8,11 +8,11 @@ use strict;
use warnings; use warnings;
use English qw(-no_match_vars); use English qw(-no_match_vars);
use XML::LibXML;
use IdPAccountManager::Tools; use IdPAccountManager::Tools;
use IdPAccountManager::Logger; use IdPAccountManager::Logger;
use XML::LibXML;
sub new { sub new {
my ($pkg, %args) = @_; my ($pkg, %args) = @_;
......
...@@ -4,13 +4,10 @@ package IdPAccountManager::Tools; ...@@ -4,13 +4,10 @@ package IdPAccountManager::Tools;
## This software was developed by RENATER. The research leading to these results has received funding ## This software was developed by RENATER. The research leading to these results has received funding
## from the European Community¹s Seventh Framework Programme (FP7/2007-2013) under grant agreement nº 238875 (GÉANT). ## from the European Community¹s Seventh Framework Programme (FP7/2007-2013) under grant agreement nº 238875 (GÉANT).
use Template;
# load Template::Stash to make method tables visible
use Template::Stash;
use Digest::SHA; use Digest::SHA;
use Encode; use Encode;
use Template;
use Template::Stash;
INIT { INIT {
## a TT2 virtual method to get a variable type ## a TT2 virtual method to get a variable type
......
...@@ -3,11 +3,16 @@ package IdPAccountManager::WebRequest; ...@@ -3,11 +3,16 @@ package IdPAccountManager::WebRequest;
use strict; use strict;
use warnings; use warnings;
use CGI;
use CGI::Cookie;
use English qw(-no_match_vars); use English qw(-no_match_vars);
use IdPAccountManager::Logger; use Template;
use IdPAccountManager::Data::TestAccount; use IdPAccountManager::Data::TestAccount;
use IdPAccountManager::Data::AuthenticationToken; use IdPAccountManager::Data::AuthenticationToken;
use IdPAccountManager::Data::ServiceProvider; use IdPAccountManager::Data::ServiceProvider;
use IdPAccountManager::Logger;
use IdPAccountManager::SAMLMetadata;
## New web request ## New web request
sub new { sub new {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment