jakarta.servlet.descriptor.JspConfigDescriptor Maven / Gradle / Ivy
/*
* Copyright (c) 2017, 2020 Oracle and/or its affiliates and others.
* All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
package jakarta.servlet.descriptor;
import java.util.Collection;
/**
* This interface provides access to the <jsp-config>
related configuration of a web application.
*
*
* The configuration is aggregated from the web.xml
and web-fragment.xml
descriptor files of
* the web application.
*
* @since Servlet 3.0
*/
public interface JspConfigDescriptor {
/**
* Gets the <taglib>
child elements of the <jsp-config>
element represented by
* this JspConfigDescriptor
.
*
*
* Any changes to the returned Collection
must not affect this JspConfigDescriptor
.
*
* @return a (possibly empty) Collection
of the <taglib>
child elements of the
* <jsp-config>
element represented by this JspConfigDescriptor
*/
public Collection getTaglibs();
/**
* Gets the <jsp-property-group>
child elements of the <jsp-config>
element
* represented by this JspConfigDescriptor
.
*
*
* Any changes to the returned Collection
must not affect this JspConfigDescriptor
.
*
* @return a (possibly empty) Collection
of the <jsp-property-group>
child elements of
* the <jsp-config>
element represented by this JspConfigDescriptor
*/
public Collection getJspPropertyGroups();
}