Skip to content
Snippets Groups Projects
Commit 67da854f authored by renater.salaun's avatar renater.salaun
Browse files

Fixed copyright notice and added a reference to RENATER and european communty program

Renamed documentation files according to new service name


git-svn-id: https://svn.geant.net/GEANT/edugain_testidp_account_manager/trunk@105 047e039d-479c-447e-8a29-aa6bf4a09bab
parent 134f7655
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/perl
## Copyright (c) GEANT
## 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).
## 18/07/2014, Olivier Salaün
## Command-line client for the Test IdP Account Manager
......@@ -335,4 +339,6 @@ Olivier Salaün (olivier.salaun@renater.fr)
=head1 LICENSE
Copyright (c) 2015 RENATER on behalf of the GÉANT project
Copyright (c) GEANT
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).
#!/usr/bin/perl
## Copyright (c) 2015 RENATER on behalf of the GÉANT project
## Copyright (c) GEANT
## 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).
## 15/09/2014, Olivier Salaün
## Web interface for the eduGAIN Access Check Account Manager
......
package IdPAccountManager::AuthenticationToken;
## Copyright (c) GEANT
## 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).
use strict;
use IdPAccountManager::Data::Authenticationtoken;
......@@ -232,4 +237,6 @@ Olivier Salaün (olivier.salaun@renater.fr)
=head1 LICENSE
Copyright (c) 2015 RENATER on behalf of the GÉANT project
Copyright (c) GEANT
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).
package IdPAccountManager::SAMLMetadata;
## Copyright (c) GEANT
## 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).
use strict;
use IdPAccountManager::Tools;
......@@ -380,4 +384,6 @@ Olivier Salaün (olivier.salaun@renater.fr)
=head1 LICENSE
Copyright (c) 2015 RENATER on behalf of the GÉANT project
Copyright (c) GEANT
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).
package IdPAccountManager::ServiceProvider;
use base 'IdPAccountManager::Data::Serviceprovider';
## Copyright (c) GEANT
## 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).
use strict;
use IdPAccountManager::Data::Serviceprovider;
......@@ -97,4 +101,6 @@ Olivier Salaün (olivier.salaun@renater.fr)
=head1 LICENSE
Copyright (c) 2015 RENATER on behalf of the GÉANT project
Copyright (c) GEANT
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).
package IdPAccountManager::TestAccount;
## Copyright (c) GEANT
## 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).
use strict;
use IdPAccountManager::Data::Testaccount;
......@@ -245,4 +249,6 @@ Olivier Salaün (olivier.salaun@renater.fr)
=head1 LICENSE
Copyright (c) 2015 RENATER on behalf of the GÉANT project
Copyright (c) GEANT
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).
package IdPAccountManager::TestAccount;
use Moose;
use Moose::Util::TypeConstraints;
subtype 'entityid',
as 'Str',
where { /^(urn:|http(s)?\:\/\/)/ },
message { "$_ is not a valide entityid"};
has 'account_profile' => (is => 'ro',
isa => 'Str',
required => 1);
has 'sp_entityid' => (is => 'rw',
isa => 'entityid',
required => 1,
);
#before 'new' => sub { print "about to call new\n"; };
1; # Magic true value required at end of module
__END__
=head1 NAME
IdPAccountManager::TestAccount - Manage test user accounts for the Test Identity Provider
=head1 SYNOPSIS
=head1 DESCRIPTION
=head1 SUBROUTINES/METHODS
=head1 AUTHOR
Olivier Salaün (olivier.salaun@renater.fr)
package IdPAccountManager::Tools;
## Copyright (c) GEANT
## 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).
use Template;
# load Template::Stash to make method tables visible
......@@ -336,4 +340,6 @@ Olivier Salaün (olivier.salaun@renater.fr)
=head1 LICENSE
Copyright (c) 2015 RENATER on behalf of the GÉANT project
Copyright (c) GEANT
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).
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment