Apache2::REST::Conf - A configuration container.


Apache2-REST documentation Contained in the Apache2-REST distribution.

Index


Code Index:

NAME

Top

Apache2::REST::Conf - A configuration container.

new

Returns a new default configuration.


Apache2-REST documentation Contained in the Apache2-REST distribution.
package Apache2::REST::Conf ;
use strict ;
use base qw/Class::AutoAccess/ ;

sub new{
    my ( $class ) = @_ ;
    
    my $self = {
        'Apache2RESTErrorOutput' => 'both',
    } ;
    return bless $self , $class ;
}



1;