public Builder withResourceTypes()

in src/main/java/org/apache/sling/scriptingbundle/plugin/capability/ProvidedResourceTypeCapability.java [146:152]


        public Builder withResourceTypes(@NotNull Set<String> resourceTypes) {
            if (resourceTypes.isEmpty()) {
                throw new IllegalArgumentException("The script's resourceTypes cannot be null or empty.");
            }
            this.resourceTypes = resourceTypes;
            return this;
        }