The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
=head1 NAME

XML::Compile::WSS::Timestamp - expiration

=head1 INHERITANCE

 XML::Compile::WSS::Timestamp
   is a XML::Compile::WSS

=head1 SYNOPSIS

 # used in combination with anything
 my $wss = XML::Compile::WSS::Timestamp->new
   ( ... parametes, some required
   , schema => $anything
   );

 # connects itself to a WSDL
 my $wss  = XML::Compile::SOAP::WSS->new;
 my $wsdl = XML::Compile::WSDL11->new($wsdlfn);
 my $ts   = $wss->timestamp
   ( ... same params
   );

=head1 DESCRIPTION

The generic Web Service Security protocol is implemented by the super
class L<XML::Compile::WSS|XML::Compile::WSS>.  This extension implements a timestamp
record.

=head1 METHODS

=head2 Constructors

=over 4

=item XML::Compile::WSS::Timestamp-E<gt>B<new>(OPTIONS)

 -Option     --Defined in     --Default
  created                       now
  expires                       undef
  lifetime                      undef
  schema       XML::Compile::WSS  undef
  version      XML::Compile::WSS  undef
  wss_version  XML::Compile::WSS  '1.1'
  wsu_Id                        undef

=over 2

=item created => DATE|TIME|''

By default, for each constructed message the current time is taken.
See L<XML::Compile::WSS::dateTime()|XML::Compile::WSS/"Internals"> for options on DATETIME.

=item expires => DATETIME

See L<XML::Compile::WSS::dateTime()|XML::Compile::WSS/"Internals"> for options on DATETIME.

=item lifetime => SECONDS

When C<lifetime> is given and no C<expires>, then the expiration will
be set to the C<created> time plus this lifetime.  In this case, the
created time cannot be specified as formatted DATE.

=item schema => L<XML::Compile::Cache|XML::Compile::Cache>

=item version => STRING

=item wss_version => '1.1'|MODULE

=item wsu_Id => LABEL

Adds a C<wsu:Id> attribute to the C<wsse:Timestamp>.

=back

=back

=head2 Attributes

=over 4

=item $obj-E<gt>B<created>()

=item $obj-E<gt>B<expires>()

=item $obj-E<gt>B<lifetime>()

=item $obj-E<gt>B<schema>()

See L<XML::Compile::WSS/"Attributes">

=item $obj-E<gt>B<timestamps>()

Returns the "created" and "expires" timestamps.  Both may be undef.

=item $obj-E<gt>B<version>()

See L<XML::Compile::WSS/"Attributes">

=item $obj-E<gt>B<wsuId>()

=back

=head2 Internals

=over 4

=item $obj-E<gt>B<dateTime>(TIME|STRING|HASH)

See L<XML::Compile::WSS/"Internals">

=item XML::Compile::WSS::Timestamp-E<gt>B<loadSchemas>(SCHEMA, VERSION)

See L<XML::Compile::WSS/"Internals">

=back

=head2 SEE ALSO

=head1 SEE ALSO

This module is part of XML-Compile-WSS distribution version 1.00,
built on October 16, 2012. Website: F<http://perl.overmeer.net/xml-compile/>

Other distributions in this suite:
L<XML::Compile>,
L<XML::Compile::SOAP>,
L<XML::Compile::SOAP12>,
L<XML::Compile::SOAP::Daemon>,
L<XML::Compile::SOAP::WSA>,
L<XML::Compile::C14N>,
L<XML::Compile::WSS>,
L<XML::Compile::Tester>,
L<XML::Compile::Cache>,
L<XML::Compile::Dumper>,
L<XML::Compile::RPC>,
L<XML::Rewrite>,
L<XML::eXistDB>,
and
L<XML::LibXML::Simple>.

Please post questions or ideas to the mailinglist at
F<http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/xml-compile>
For live contact with other developers, visit the C<#xml-compile> channel
on C<irc.perl.org>.

=head1 LICENSE

Copyrights 2011-2012 by [Mark Overmeer]. For other contributors see ChangeLog.

This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
See F<http://www.perl.com/perl/misc/Artistic.html>