Add a little POD to the decimated Session/Id.pm module.

This commit is contained in:
Colin Kuskie 2011-07-28 18:53:37 -07:00
parent 766be8ae7f
commit 37b8d15c0f

View file

@ -24,6 +24,8 @@ Package WebGUI::Session::Id;
=head1 DESCRIPTION
This module is deprecated, and will be removed during the WebGUI 8.x series.
This package generates global unique ids, sometimes called GUIDs. A global unique ID is guaranteed to be unique everywhere and at everytime.
B<NOTE:> There is no such thing as perfectly unique ID's, but the chances of a duplicate ID are so minute that they are effectively unique.
@ -38,6 +40,12 @@ These methods are available from this class:
=cut
=head2 new
Object contructor
=cut
sub new {
my $class = shift;
return bless {}, $class;