Solstice::ConfigService - Provides configuration info to the Solstice Framework.


Solstice documentation Contained in the Solstice distribution.

Index


Code Index:

NAME

Top

Solstice::ConfigService - Provides configuration info to the Solstice Framework.

SYNOPSIS

Top

use Solstice::ConfigService;

DESCRIPTION

Top

Superclass

Solstice::Service::Memory

Export

No symbols exported.

Methods

Private Methods

_getClassName()

Return the class name. Overridden to avoid a ref() in the superclass.

Modules Used

Solstice::Service::Memory.

AUTHOR

Top

Catalyst Group, <catalyst@u.washington.edu>

VERSION

Top

$Revision: 2061 $

COPYRIGHT

Top


Solstice documentation Contained in the Solstice distribution.
package Solstice::ConfigService;

# $Id: ConfigService.pm 3152 2006-02-21 18:02:20Z mcrawfor $

use strict;
use warnings;
use 5.006_000;

use base qw(Solstice::Configure);

our ($VERSION) = ('$Revision: 2061 $' =~ /^\$Revision:\s*([\d.]*)/);

sub _getClassName {
    return 'Solstice::ConfigService';
}

1;

__END__