NAME
XAS::Base - The base class for the XAS environment
SYNOPSIS
use XAS::Class
version => '0.01',
base => 'XAS::Base',
vars => {
PARAMS => {}
}
;
DESCRIPTION
This module defines a base class for the XAS Environment and inherits from Badger::Base. The package variable $PARAMS is used to hold the parameters that this class uses for initialization. The parameters can be changed or extended by inheriting classes. This is functionality provided by Badger::Class. The parameters are validated using Params::Validate. Any parameters defined in $PARAMS automagically become accessors toward their values.
METHODS
new($parameters)
This is used to initialized the class. It takes various parameters defined by the $PARAMS package variable.
config($item)
This method will return an item from the internal class config. Which is usually the parameters passed to new() before any manipulation of those parameters.
validation_exception($params, $class)
This method is used by Params::Validate to display it's failure message.
env
A handle to XAS::System::Environment.
log($level, $message)
A basic logger.
- $level
-
The level for the message. This can be 'info', 'warn', 'error', 'fatal' and 'debug'.
- $message
-
The message to write to the log.
SEE ALSO
AUTHOR
Kevin L. Esteb, <kevin@kesteb.us>
COPYRIGHT AND LICENSE
Copyright (C) 2012 by Kevin L. Esteb
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available.