Dicop::Data::User - an administrator account


Dicop-Server documentation Contained in the Dicop-Server distribution.

Index


Code Index:

NAME

Top

Dicop::Data::User - an administrator account

SYNOPSIS

Top

    use Dicop::Data::User;

    $user = Dicop::Data::User->new( { name => 'me', pwdhash => '0123..45' });

REQUIRES

Top

perl5.005, Exporter, Dicop::Item

EXPORTS

Top

Exports nothing on default.

DESCRIPTION

Top

For a description of fields a user has, see doc/Objects.pod.

BUGS

Top

None known yet.

AUTHOR

Top

(c) Bundesamt fuer Sicherheit in der Informationstechnik 1998-2006

DiCoP is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation.

See http://www.bsi.de/ for more information.


Dicop-Server documentation Contained in the Dicop-Server distribution.

#############################################################################
# Dicop/Data/User.pm - an administrator account
#
# (c) Bundesamt fuer Sicherheit in der Informationstechnik 1998-2006
#
# DiCoP is free software; you can redistribute it and/or modify it under the
# terms of the GNU General Public License version 2 as published by the Free
# Software Foundation.
#
# See the file LICENSE or L<http://www.bsi.de/> for more information.
#############################################################################

package Dicop::Data::User;
use vars qw($VERSION);
$VERSION = 1.02;	# Current version of this package
require  5.005;		# requires this Perl version or later

use base qw(Exporter Dicop::Item);
use strict;

1;

__END__
#############################################################################