public Builder withResourceType()

in src/main/java/org/apache/sling/scriptingbundle/plugin/capability/RequiredResourceTypeCapability.java [111:117]


        public Builder withResourceType(String resourceType) {
            if (StringUtils.isEmpty(resourceType)) {
                throw new NullPointerException("The required resourceType cannot be null or empty.");
            }
            this.resourceType = resourceType;
            return this;
        }