1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
|
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.
*/
package javax.servlet.descriptor;
import java.util.Collection;
/**
* Represents the JSP property groups in the deployment descriptors.
*
* @since Servlet 3.0
*/
public interface JspPropertyGroupDescriptor {
/**
* Obtain the patterns to which this group applies.
*
* @return the patterns to which this group applies
*/
public Collection<String> getUrlPatterns();
/**
* Is Expression Language ignored for this group?
*
* @return {@code true} if EL is ignored, otherwise {@code false}
*/
public String getElIgnored();
/**
* Obtain the page encoding for this group.
*
* @return the page encoding for this group
*/
public String getPageEncoding();
/**
* Is scripting disabled for this group?
*
* @return {@code true} if scripting is disabled, otherwise {@code false}
*/
public String getScriptingInvalid();
/**
* Should the JSPs in this group be treated as JSP documents?
*
* @return {@code true} if the JSPs should be treated as JSP documents,
* otherwise {@code false}
*/
public String getIsXml();
/**
* Obtain the preludes to include for this group.
*
* @return the preludes to include for this group
*/
public Collection<String> getIncludePreludes();
/**
* Obtain the codas to include for this group.
*
* @return the codas to include for this group.
*/
public Collection<String> getIncludeCodas();
/**
* Is the deferred El syntax <code>#{...}</code> allowed to be used as a
* literal in this group?
*
* @return {@code true} if the deferred EL syntax is allowed to be used as
* a literal, otherwise {@code false}
*/
public String getDeferredSyntaxAllowedAsLiteral();
/**
* Should the JSPs in this group have template text that only contains
* whitespace removed?
*
* @return {@code true} if the whitespace be removed, otherwise
* {@code false}
*/
public String getTrimDirectiveWhitespaces();
/**
* Obtain the default content type this group of JSP pages.#
*
* @return the default content type this group of JSP pages
*/
public String getDefaultContentType();
/**
* Obtain the per-page buffer configuration for this group of JSP pages.
*
* @return the per-page buffer configuration for this group of JSP pages
*/
public String getBuffer();
/**
* Should an error be raised at translation time for a page in this group if
* the page contains a reference (e.g. a tag) to a undeclared namespace.
*
* @return {@code true} if an error should be raised, otherwise
* {@code false}
*/
public String getErrorOnUndeclaredNamespace();
}
|