/* * #%L * wcm.io * %% * Copyright (C) 2014 wcm.io * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * #L% */ package io.wcm.wcm.parsys.componentinfo; import java.util.Set; import java.util.regex.Pattern; import org.osgi.annotation.versioning.ConsumerType; /** * Configuration of allowed components for a path inside a page of a specific template/page component. */ @ConsumerType public interface ParsysConfig { /** * Resource type of the page component for which this parsys configuration is defined. * @return resource type of page component */ String getPageComponentPath(); /** * Path pattern for parsys. * The pattern should match paths relative to the jcr:content node of a page, * including this node but without leading slash.<br> * Example: {@code ^jcr:content/(?!megaFlyout).*$} * @return parsys path pattern */ Pattern getPathPattern(); /** * @return parent ancestor level (can be 1 or 2) */ int getParentAncestorLevel(); /** * @return resource types of allowed parent components */ Set<String> getAllowedParents(); /** * @return resource types of allowed child components */ Set<String> getAllowedChildren(); /** * @return resource types of denied child components */ Set<String> getDeniedChildren(); }