public ConstructorInjectionTestModel()

in src/main/java/org/apache/sling/models/it/models/ConstructorInjectionTestModel.java [37:44]


    public ConstructorInjectionTestModel(
            @Named("testProperty") String testProperty,
            @Named("filters") List<Filter> filters,
            @Self Resource resource) {
        this.testProperty = testProperty;
        this.filters = filters;
        this.resource = resource;
    }