Aw::Admin::ServerClient - ActiveWorks Admin::ServerClient Module.


Aw documentation Contained in the Aw distribution.

Index


Code Index:

NAME

Top

Aw::Admin::ServerClient - ActiveWorks Admin::ServerClient Module.

SYNOPSIS

Top

require Aw::Admin::ServerClient;

my $client = new Aw::Admin::ServerClient ( @args );

DESCRIPTION

Top

Enhanced interface for the Aw/Admin.xs ServerClient methods.

AUTHOR

Top

Daniel Yacob Mekonnen, Yacob@wMUsers.Com

SEE ALSO

Top

perl(1).  Aw(3).


Aw documentation Contained in the Aw distribution.

package Aw::Admin::ServerClient;


BEGIN
{
	use strict;
	use vars qw($VERSION);

	$VERSION = '0.2';

	require Aw::Admin;
}


sub getBrokers
{
	my $result = Aw::Admin::ServerClient::getBrokersRef ( @_ );
	( wantarray ) ? @{ $result } : $result ;
}



sub getServerLogEntries
{
	my $result = Aw::Admin::ServerClient::getServerLogEntriesRef ( @_ );
	( wantarray ) ? @{ $result } : $result ;
}



sub getDNsFromCertFile
{
	my $result = Aw::Admin::ServerClient::getDNsFromCertFileRef ( @_ );
	( wantarray ) ? @{ $result } : $result ;
}



#########################################################
# Do not change this, Do not put anything below this.
# File must return "true" value at termination
1;
##########################################################


__END__