in spring-registry/spring-registry-commons/src/main/java/org/apache/archiva/components/registry/commons/CommonsConfigurationRegistry.java [163:174]
    public String dump( )
    {
        StringBuilder buffer = new StringBuilder( );
        buffer.append( "Configuration Dump." );
        for ( Iterator i = configuration.getKeys( ); i.hasNext( ); )
        {
            String key = (String) i.next( );
            Object value = configuration.getProperty( key );
            buffer.append( "\n\"" ).append( key ).append( "\" = \"" ).append( value ).append( "\"" );
        }
        return buffer.toString( );
    }