@@ -7,9 +7,25 @@ require 5.008_001;
77
88# ABSTRACT: SAML2 bindings and protocol implementation
99
10- =head1 NAME
10+ # entities
11+ use Net::SAML2::IdP;
12+ use Net::SAML2::SP;
1113
12- Net::SAML2 - SAML bindings and protocol implementation
14+ # bindings
15+ use Net::SAML2::Binding::Redirect;
16+ use Net::SAML2::Binding::POST;
17+ use Net::SAML2::Binding::SOAP;
18+
19+ # protocol
20+ use Net::SAML2::Protocol::AuthnRequest;
21+ use Net::SAML2::Protocol::LogoutRequest;
22+ use Net::SAML2::Protocol::LogoutResponse;;
23+ use Net::SAML2::Protocol::Assertion;
24+ use Net::SAML2::Protocol::ArtifactResolve;
25+
26+ 1;
27+
28+ __END__
1329
1430=head1 SYNOPSIS
1531
@@ -116,66 +132,3 @@ SP applications if EncryptedAssertions are not in use.
116132=item Requires XML metadata from the IdP
117133
118134=back
119-
120- =cut
121-
122- # entities
123- use Net::SAML2::IdP;
124- use Net::SAML2::SP;
125-
126- # bindings
127- use Net::SAML2::Binding::Redirect;
128- use Net::SAML2::Binding::POST;
129- use Net::SAML2::Binding::SOAP;
130-
131- # protocol
132- use Net::SAML2::Protocol::AuthnRequest;
133- use Net::SAML2::Protocol::LogoutRequest;
134- use Net::SAML2::Protocol::LogoutResponse;;
135- use Net::SAML2::Protocol::Assertion;
136- use Net::SAML2::Protocol::ArtifactResolve;
137-
138- =pod
139-
140- =head1 CONTRIBUTORS
141-
142- =over
143-
144- =item Alessandro Ranellucci <aar@cpan.org>
145-
146- =item Ali Zia <ziali088@gmail.com>
147-
148- =item Chris Andrews <chris@nodnol.org>
149-
150- =item Gianni Ceccarelli <gianni.ceccarelli@broadbean.com>
151-
152- =item Jeff Fearn <jfearn@redhat.com>
153-
154- =item Mike Wisener <xmikew@cpan.org>, <mwisener@secureworks.com>, xmikew <github@32ths.com>
155-
156- =item Oskari Okko Ojala <okko@frantic.com>
157-
158- =item Peter Marschall <peter@adpm.de>
159-
160- =item Timothy Legge <timlegge@gmail.com>
161-
162- =item Wesley Schwengle <waterkip@cpan.org>
163-
164- =back
165-
166- =head1 COPYRIGHT
167-
168- The following copyright notice applies to all the files provided in
169- this distribution, including binary files, unless explicitly noted
170- otherwise.
171-
172- Copyright 2010, 2011 Venda Ltd.
173-
174- =head1 LICENCE
175-
176- This library is free software; you can redistribute it and/or modify
177- it under the same terms as Perl itself.
178-
179- =cut
180-
181- 1;
0 commit comments