| Apache2-REST documentation | Contained in the Apache2-REST distribution. |
Apache2::REST::Conf - A configuration container.
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;