src/main/java/org/apache/sling/distribution/agent/impl/ForwardDistributionAgentFactoryConfig.java [46:58]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    String serviceName() default "";
    
    @AttributeDefinition(name="Log Level", description = "The log level recorded in the transient log accessible via http.",
            options = {
                    @Option(label="debug", value="debug"),
                    @Option(label="info", value="info"),
                    @Option(label="warn", value="warn"),
                    @Option(label="error", value="error")
            })
    String log_level() default "info";
    
    @AttributeDefinition(cardinality=100, name="Allowed roots", description = "If set the agent will allow only distribution requests under the specified roots.")
    String[] allowed_roots();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/sling/distribution/agent/impl/QueueDistributionAgentFactory.java [91:103]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        String serviceName() default "";
        
        @AttributeDefinition(name="Log Level", description = "The log level recorded in the transient log accessible via http.",
                options = {
                        @Option(label="debug", value="debug"),
                        @Option(label="info", value="info"),
                        @Option(label="warn", value="warn"),
                        @Option(label="error", value="error")
                })
        String log_level() default "info";

        @AttributeDefinition(cardinality=100, name="Allowed roots", description = "If set the agent will allow only distribution requests under the specified roots.")
        String[] allowed_roots();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



