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 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410
|
/*
* Copyright (c) 1997, 2023 Oracle and/or its affiliates and others.
* All rights reserved.
* Copyright 2004 The Apache Software Foundation
*
* 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.
*/
package jakarta.servlet;
import jakarta.servlet.descriptor.JspConfigDescriptor;
import java.io.InputStream;
import java.net.MalformedURLException;
import java.net.URL;
import java.nio.charset.Charset;
import java.util.Enumeration;
import java.util.EventListener;
import java.util.Map;
import java.util.Set;
/**
* Defines a set of methods that a servlet uses to communicate with its servlet container, for example, to get the MIME
* type of a file, dispatch requests, or write to a log file.
*
* <p>
* There is one context per "web application" per Java Virtual Machine. (A "web application" is a collection of servlets
* and content installed under a specific subset of the server's URL namespace such as <code>/catalog</code> and
* possibly installed via a <code>.war</code> file.)
*
* <p>
* In the case of a web application marked "distributed" in its deployment descriptor, there will be one context
* instance for each virtual machine. In this situation, the context cannot be used as a location to share global
* information (because the information won't be truly global). Use an external resource like a database instead.
*
* <p>
* The <code>ServletContext</code> object is contained within the {@link ServletConfig} object, which the Web server
* provides the servlet when the servlet is initialized.
*
* @author Various
*
* @see Servlet#getServletConfig
* @see ServletConfig#getServletContext
*/
public interface ServletContext {
/**
* The name of the <tt>ServletContext</tt> attribute which stores the private temporary directory (of type
* <tt>java.io.File</tt>) provided by the servlet container for the <tt>ServletContext</tt>
*/
String TEMPDIR = "jakarta.servlet.context.tempdir";
/**
* The name of the <code>ServletContext</code> attribute whose value (of type
* <code>java.util.List<java.lang.String></code>) contains the list of names of JAR files in
* <code>WEB-INF/lib</code> ordered by their web fragment names (with possible exclusions if
* <code><absolute-ordering></code> without any <code><others/></code> is being used), or null if no
* absolute or relative ordering has been specified
*
* @since Servlet 3.0
*/
String ORDERED_LIBS = "jakarta.servlet.context.orderedLibs";
/**
* Returns the context path of the web application.
*
* <p>
* The context path is the portion of the request URI that is used to select the context of the request. The context
* path always comes first in a request URI. If this context is the "root" context rooted at the base of the Web
* server's URL name space, this path will be an empty string. Otherwise, if the context is not rooted at the root of
* the server's name space, the path starts with a / character but does not end with a / character.
*
* <p>
* It is possible that a servlet container may match a context by more than one context path. In such cases the
* {@link jakarta.servlet.http.HttpServletRequest#getContextPath()} will return the actual context path used by the
* request and it may differ from the path returned by this method. The context path returned by this method should be
* considered as the prime or preferred context path of the application.
*
* @return The context path of the web application, or "" for the root context
*
* @see jakarta.servlet.http.HttpServletRequest#getContextPath()
*
* @since Servlet 2.5
*/
String getContextPath();
/**
* Returns a <code>ServletContext</code> object that corresponds to a specified URL on the server.
*
* <p>
* This method allows servlets to gain access to the context for various parts of the server, and as needed obtain
* {@link RequestDispatcher} objects from the context. The given path must begin with <tt>/</tt>, is interpreted
* relative to the server's document root and is matched against the context roots of other web applications hosted on
* this container.
*
* <p>
* In a security conscious environment, the servlet container may return <code>null</code> for a given URL.
*
* @param uripath a <code>String</code> specifying the context path of another web application in the container.
* @return the <code>ServletContext</code> object that corresponds to the named URL, or null if either none exists or
* the container wishes to restrict this access.
*
* @see RequestDispatcher
*/
ServletContext getContext(String uripath);
/**
* Returns the major version of Jakarta Servlet specification that this container supports. All implementations that
* comply with version X.Y of the specification, must return the integer X.
*
* @return The major version of Jakarta Servlet specification that this container supports
*/
int getMajorVersion();
/**
* Returns the minor version of Jakarta Servlet specification that this container supports. All implementations that
* comply with version X.Y of the specification, must return the integer Y.
*
* @return The minor version of Jakarta Servlet specification that this container supports
*/
int getMinorVersion();
/**
* Gets the major version of the Servlet specification that the application represented by this ServletContext is based
* on.
*
* <p>
* The value returned may be different from {@link #getMajorVersion}, which returns the major version of the Servlet
* specification supported by the Servlet container.
*
* @return the major version of the Servlet specification that the application represented by this ServletContext is
* based on
*
* @since Servlet 3.0
*/
int getEffectiveMajorVersion();
/**
* Gets the minor version of the Servlet specification that the application represented by this ServletContext is based
* on.
*
* <p>
* The value returned may be different from {@link #getMinorVersion}, which returns the minor version of the Servlet
* specification supported by the Servlet container.
*
* @return the minor version of the Servlet specification that the application represented by this ServletContext is
* based on
*
* @since Servlet 3.0
*/
int getEffectiveMinorVersion();
/**
* Returns the MIME type of the specified file, or <code>null</code> if the MIME type is not known. The MIME type is
* determined by the configuration of the servlet container, and may be specified in a web application deployment
* descriptor. Common MIME types include <code>text/html</code> and <code>image/gif</code>.
*
* @param file a <code>String</code> specifying the name of a file
*
* @return a <code>String</code> specifying the file's MIME type
*/
String getMimeType(String file);
/**
* Returns a directory-like listing of all the paths to resources within the web application whose longest sub-path
* matches the supplied path argument.
*
* <p>
* Paths indicating subdirectory paths end with a <tt>/</tt>.
*
* <p>
* The returned paths are all relative to the root of the web application, or relative to the
* <tt>/META-INF/resources</tt> directory of a JAR file inside the web application's <tt>/WEB-INF/lib</tt> directory,
* and have a leading <tt>/</tt>.
*
* <p>
* The returned set is not backed by the {@code ServletContext} object, so changes in the returned set are not reflected
* in the {@code ServletContext} object, and vice-versa.
* </p>
*
* <p>
* For example, for a web application containing:
*
* <pre>
* {@code
* /welcome.html
* /catalog/index.html
* /catalog/products.html
* /catalog/offers/books.html
* /catalog/offers/music.html
* /customer/login.jsp
* /WEB-INF/web.xml
* /WEB-INF/classes/com.acme.OrderServlet.class
* /WEB-INF/lib/catalog.jar!/META-INF/resources/catalog/moreOffers/books.html
* }
* </pre>
*
* <tt>getResourcePaths("/")</tt> would return <tt>{"/welcome.html", "/catalog/", "/customer/", "/WEB-INF/"}</tt>, and
* <tt>getResourcePaths("/catalog/")</tt> would return <tt>{"/catalog/index.html", "/catalog/products.html",
* "/catalog/offers/", "/catalog/moreOffers/"}</tt>.
*
* <p>
* This method bypasses both implicit (no direct access to WEB-INF or META-INF) and explicit (defined by the web
* application) security constraints. Care should be taken both when constructing the path (e.g. avoid unsanitized user
* provided data) and when using the result not to create a security vulnerability in the application.
*
* <p>
* The provided {@code path} parameter is canonicalized as per <a href=
* "https://jakarta.ee/specifications/servlet/6.0/jakarta-servlet-spec-6.0.html#uri-path-canonicalization">Servlet 6.0,
* 3.5.2</a> before being used to match resources.
*
* @param path the partial path used to match the resources, which must start with a <tt>/</tt>
* @return a Set containing the directory listing, or null if there are no resources in the web application whose path
* begins with the supplied path.
*
* @since Servlet 2.3
*/
Set<String> getResourcePaths(String path);
/**
* Returns a URL to the resource that is mapped to the given path.
*
* <p>
* The path must begin with a <tt>/</tt> and is interpreted as relative to the current context root, or relative to the
* <tt>/META-INF/resources</tt> directory of a JAR file inside the web application's <tt>/WEB-INF/lib</tt> directory.
* This method will first search the document root of the web application for the requested resource, before searching
* any of the JAR files inside <tt>/WEB-INF/lib</tt>. The order in which the JAR files inside <tt>/WEB-INF/lib</tt> are
* searched is undefined.
*
* <p>
* This method allows the servlet container to make a resource available to servlets from any source. Resources can be
* located on a local or remote file system, in a database, or in a <code>.war</code> file.
*
* <p>
* The servlet container must implement the URL handlers and <code>URLConnection</code> objects that are necessary to
* access the resource.
*
* <p>
* This method returns <code>null</code> if no resource is mapped to the pathname.
*
* <p>
* Some containers may allow writing to the URL returned by this method using the methods of the URL class.
*
* <p>
* The resource content is returned directly, so be aware that requesting a <code>.jsp</code> page returns the JSP
* source code. Use a <code>RequestDispatcher</code> instead to include results of an execution.
*
* <p>
* This method has a different purpose than <code>java.lang.Class.getResource</code>, which looks up resources based on
* a class loader. This method does not use class loaders.
*
* <p>
* This method bypasses both implicit (no direct access to WEB-INF or META-INF) and explicit (defined by the web
* application) security constraints. Care should be taken both when constructing the path (e.g. avoid unsanitized user
* provided data) and when using the result not to create a security vulnerability in the application.
*
* <p>
* The provided {@code path} parameter is canonicalized as per <a href=
* "https://jakarta.ee/specifications/servlet/6.0/jakarta-servlet-spec-6.0.html#uri-path-canonicalization">Servlet 6.0,
* 3.5.2</a> before being used to match resources.
*
* @param path a <code>String</code> specifying the path to the resource
*
* @return the resource located at the named path, or <code>null</code> if there is no resource at that path
*
* @exception MalformedURLException if the pathname is not given in the correct form
*/
URL getResource(String path) throws MalformedURLException;
/**
* Returns the resource located at the named path as an <code>InputStream</code> object.
*
* <p>
* The data in the <code>InputStream</code> can be of any type or length. The path must be specified according to the
* rules given in <code>getResource</code>. This method returns <code>null</code> if no resource exists at the specified
* path.
*
* <p>
* Meta-information such as content length and content type that is available via <code>getResource</code> method is
* lost when using this method.
*
* <p>
* The servlet container must implement the URL handlers and <code>URLConnection</code> objects necessary to access the
* resource.
*
* <p>
* This method is different from <code>java.lang.Class.getResourceAsStream</code>, which uses a class loader. This
* method allows servlet containers to make a resource available to a servlet from any location, without using a class
* loader.
*
* <p>
* This method bypasses both implicit (no direct access to WEB-INF or META-INF) and explicit (defined by the web
* application) security constraints. Care should be taken both when constructing the path (e.g. avoid unsanitized user
* provided data) and when using the result not to create a security vulnerability in the application.
*
* <p>
* The provided {@code path} parameter is canonicalized as per <a href=
* "https://jakarta.ee/specifications/servlet/6.0/jakarta-servlet-spec-6.0.html#uri-path-canonicalization">Servlet 6.0,
* 3.5.2</a> before being used to match resources.
*
* @param path a <code>String</code> specifying the path to the resource
*
* @return the <code>InputStream</code> returned to the servlet, or <code>null</code> if no resource exists at the
* specified path
*/
InputStream getResourceAsStream(String path);
/**
*
* Returns a {@link RequestDispatcher} object that acts as a wrapper for the resource located at the given path. A
* <code>RequestDispatcher</code> object can be used to forward a request to the resource or to include the resource in
* a response. The resource can be dynamic or static.
*
* <p>
* The pathname must begin with a <tt>/</tt> and is interpreted as relative to the current context root. Use
* <code>getContext</code> to obtain a <code>RequestDispatcher</code> for resources in foreign contexts.
*
* <p>
* This method returns <code>null</code> if the <code>ServletContext</code> cannot return a
* <code>RequestDispatcher</code>.
*
* <p>
* This method bypasses both implicit (no direct access to WEB-INF or META-INF) and explicit (defined by the web
* application) security constraints. Care should be taken both when constructing the path (e.g. avoid unsanitized user
* provided data) and when using the result not to create a security vulnerability in the application.
*
* <p>
* The provided {@code path} parameter is canonicalized as per <a href=
* "https://jakarta.ee/specifications/servlet/6.0/jakarta-servlet-spec-6.0.html#uri-path-canonicalization">Servlet 6.0,
* 3.5.2</a> before being used to match resources.
*
* @param path a <code>String</code> specifying the pathname to the resource
*
* @return a <code>RequestDispatcher</code> object that acts as a wrapper for the resource at the specified path, or
* <code>null</code> if the <code>ServletContext</code> cannot return a <code>RequestDispatcher</code>
*
* @see RequestDispatcher
* @see ServletContext#getContext
*/
RequestDispatcher getRequestDispatcher(String path);
/**
* Returns a {@link RequestDispatcher} object that acts as a wrapper for the named servlet.
*
* <p>
* Servlets (and JSP pages also) may be given names via server administration or via a web application deployment
* descriptor. A servlet instance can determine its name using {@link ServletConfig#getServletName}.
*
* <p>
* This method returns <code>null</code> if the <code>ServletContext</code> cannot return a
* <code>RequestDispatcher</code> for any reason.
*
* @param name a <code>String</code> specifying the name of a servlet to wrap
*
* @return a <code>RequestDispatcher</code> object that acts as a wrapper for the named servlet, or <code>null</code> if
* the <code>ServletContext</code> cannot return a <code>RequestDispatcher</code>
*
* @see RequestDispatcher
* @see ServletContext#getContext
* @see ServletConfig#getServletName
*/
RequestDispatcher getNamedDispatcher(String name);
/**
*
* Writes the specified message to a servlet log file, usually an event log. The name and type of the servlet log file
* is specific to the servlet container.
*
* @param msg a <code>String</code> specifying the message to be written to the log file
*/
void log(String msg);
/**
* Writes an explanatory message and a stack trace for a given <code>Throwable</code> exception to the servlet log file.
* The name and type of the servlet log file is specific to the servlet container, usually an event log.
*
* @param message a <code>String</code> that describes the error or exception
*
* @param throwable the <code>Throwable</code> error or exception
*/
void log(String message, Throwable throwable);
/**
* Gets the <i>real</i> path corresponding to the given <i>virtual</i> path.
*
* <p>
* The path should begin with a <tt>/</tt> and is interpreted as relative to the current context root. If the path does
* not begin with a <tt>/</tt>, the container will behave as if the method was called with <tt>/</tt> appended to the
* beginning of the provided path.
*
* <p>
* For example, if <tt>path</tt> is equal to <tt>/index.html</tt>, this method will return the absolute file path on the
* server's filesystem to which a request of the form
* <tt>http://<host>:<port>/<contextPath>/index.html</tt> would be mapped, where
* <tt><contextPath></tt> corresponds to the context path of this ServletContext.
*
* <p>
* The real path returned will be in a form appropriate to the computer and operating system on which the servlet
* container is running, including the proper path separators.
*
* <p>
* Resources inside the <tt>/META-INF/resources</tt> directories of JAR files bundled in the application's
* <tt>/WEB-INF/lib</tt> directory must be considered only if the container has unpacked them from their containing JAR
* file, in which case the path to the unpacked location must be returned.
*
* <p>
* This method returns <code>null</code> if the servlet container is unable to translate the given <i>virtual</i> path
* to a <i>real</i> path.
*
* <p>
* This method bypasses both implicit (no direct access to WEB-INF or META-INF) and explicit (defined by the web
* application) security constraints. Care should be taken both when constructing the path (e.g. avoid unsanitized user
* provided data) and when using the result not to create a security vulnerability in the application.
*
* <p>
* The provided {@code path} parameter is canonicalized as per <a href=
* "https://jakarta.ee/specifications/servlet/6.0/jakarta-servlet-spec-6.0.html#uri-path-canonicalization">Servlet 6.0,
* 3.5.2</a> before being used to match resources.
*
* @param path the <i>virtual</i> path to be translated to a <i>real</i> path
*
* @return the <i>real</i> path, or <tt>null</tt> if the translation cannot be performed
*/
String getRealPath(String path);
/**
* Returns the name and version of the servlet container on which the servlet is running.
*
* <p>
* The form of the returned string is <i>servername</i>/<i>versionnumber</i>. For example, the JavaServer Web
* Development Kit may return the string <code>JavaServer Web Dev Kit/1.0</code>.
*
* <p>
* The servlet container may return other optional information after the primary string in parentheses, for example,
* <code>JavaServer Web Dev Kit/1.0 (JDK 1.1.6; Windows NT 4.0 x86)</code>.
*
*
* @return a <code>String</code> containing at least the servlet container name and version number
*/
String getServerInfo();
/**
* Returns a <code>String</code> containing the value of the named context-wide initialization parameter, or
* <code>null</code> if the parameter does not exist.
*
* <p>
* This method can make available configuration information useful to an entire web application. For example, it can
* provide a webmaster's email address or the name of a system that holds critical data.
*
* @param name a <code>String</code> containing the name of the parameter whose value is requested
*
* @return a <code>String</code> containing the value of the context's initialization parameter, or <code>null</code> if
* the context's initialization parameter does not exist.
*
* @throws NullPointerException if the argument {@code name} is {@code null}
*
* @see ServletConfig#getInitParameter
*/
String getInitParameter(String name);
/**
* Returns the names of the context's initialization parameters as an <code>Enumeration</code> of <code>String</code>
* objects, or an empty <code>Enumeration</code> if the context has no initialization parameters.
*
* @return an <code>Enumeration</code> of <code>String</code> objects containing the names of the context's
* initialization parameters
*
* @see ServletConfig#getInitParameter
*/
Enumeration<String> getInitParameterNames();
/**
* Sets the context initialization parameter with the given name and value on this ServletContext.
*
* @param name the name of the context initialization parameter to set
* @param value the value of the context initialization parameter to set
*
* @return true if the context initialization parameter with the given name and value was set successfully on this
* ServletContext, and false if it was not set because this ServletContext already contains a context initialization
* parameter with a matching name
*
* @throws IllegalStateException if this ServletContext has already been initialized
*
* @throws NullPointerException if the name parameter is {@code null}
*
* @throws UnsupportedOperationException if this ServletContext was passed to the
* {@link ServletContextListener#contextInitialized} method of a {@link ServletContextListener} that was neither
* declared in <code>web.xml</code> or <code>web-fragment.xml</code>, nor annotated with
* {@link jakarta.servlet.annotation.WebListener}
*
* @since Servlet 3.0
*/
boolean setInitParameter(String name, String value);
/**
* Returns the servlet container attribute with the given name, or <code>null</code> if there is no attribute by that
* name.
*
* <p>
* An attribute allows a servlet container to give the servlet additional information not already provided by this
* interface. See your server documentation for information about its attributes. A list of supported attributes can be
* retrieved using <code>getAttributeNames</code>.
*
* <p>
* The attribute is returned as a <code>java.lang.Object</code> or some subclass.
*
* <p>
* Attribute names should follow the same convention as package names. The Jakarta Servlet specification reserves names
* matching <code>jakarta.*</code>.
*
* @param name a <code>String</code> specifying the name of the attribute
*
* @return an <code>Object</code> containing the value of the attribute, or <code>null</code> if no attribute exists
* matching the given name.
*
* @see ServletContext#getAttributeNames
*
* @throws NullPointerException if the argument {@code name} is {@code null}
*
*/
Object getAttribute(String name);
/**
* Returns an <code>Enumeration</code> containing the attribute names available within this ServletContext.
*
* <p>
* Use the {@link #getAttribute} method with an attribute name to get the value of an attribute.
*
* @return an <code>Enumeration</code> of attribute names
*
* @see #getAttribute
*/
Enumeration<String> getAttributeNames();
/**
* Binds an object to a given attribute name in this ServletContext. If the name specified is already used for an
* attribute, this method will replace the attribute with the new to the new attribute.
* <p>
* If listeners are configured on the <code>ServletContext</code> the container notifies them accordingly.
* <p>
* If a null value is passed, the effect is the same as calling <code>removeAttribute()</code>.
*
* <p>
* Attribute names should follow the same convention as package names. The Jakarta Servlet specification reserves names
* matching <code>jakarta.*</code>.
*
* @param name a <code>String</code> specifying the name of the attribute
*
* @param object an <code>Object</code> representing the attribute to be bound
*
* @throws NullPointerException if the name parameter is {@code null}
*
*/
void setAttribute(String name, Object object);
/**
* Removes the attribute with the given name from this ServletContext. After removal, subsequent calls to
* {@link #getAttribute} to retrieve the attribute's value will return <code>null</code>.
*
* <p>
* If listeners are configured on the <code>ServletContext</code> the container notifies them accordingly.
*
* @param name a <code>String</code> specifying the name of the attribute to be removed
*/
void removeAttribute(String name);
/**
* Returns the name of this web application corresponding to this ServletContext as specified in the deployment
* descriptor for this web application by the display-name element.
*
* @return The name of the web application or null if no name has been declared in the deployment descriptor.
*
* @since Servlet 2.3
*/
String getServletContextName();
/**
* Adds the servlet with the given name and class name to this servlet context.
*
* <p>
* The registered servlet may be further configured via the returned {@link ServletRegistration} object.
*
* <p>
* The specified <tt>className</tt> will be loaded using the classloader associated with the application represented by
* this ServletContext.
*
* <p>
* If this ServletContext already contains a preliminary ServletRegistration for a servlet with the given
* <tt>servletName</tt>, it will be completed (by assigning the given <tt>className</tt> to it) and returned.
*
* <p>
* This method introspects the class with the given <tt>className</tt> for the
* {@link jakarta.servlet.annotation.ServletSecurity}, {@link jakarta.servlet.annotation.MultipartConfig},
* <tt>jakarta.annotation.security.RunAs</tt>, and <tt>jakarta.annotation.security.DeclareRoles</tt> annotations. In
* addition, this method supports resource injection if the class with the given <tt>className</tt> represents a Managed
* Bean. See the Jakarta EE platform and CDI specifications for additional details about Managed Beans and resource
* injection.
*
* @param servletName the name of the servlet
* @param className the fully qualified class name of the servlet
*
* @return a ServletRegistration object that may be used to further configure the registered servlet, or <tt>null</tt>
* if this ServletContext already contains a complete ServletRegistration for a servlet with the given
* <tt>servletName</tt>
*
* @throws IllegalStateException if this ServletContext has already been initialized
*
* @throws IllegalArgumentException if <code>servletName</code> is null or an empty String
*
* @throws UnsupportedOperationException if this ServletContext was passed to the
* {@link ServletContextListener#contextInitialized} method of a {@link ServletContextListener} that was neither
* declared in <code>web.xml</code> or <code>web-fragment.xml</code>, nor annotated with
* {@link jakarta.servlet.annotation.WebListener}
*
* @since Servlet 3.0
*/
ServletRegistration.Dynamic addServlet(String servletName, String className);
/**
* Registers the given servlet instance with this ServletContext under the given <tt>servletName</tt>.
*
* <p>
* The registered servlet may be further configured via the returned {@link ServletRegistration} object.
*
* <p>
* If this ServletContext already contains a preliminary ServletRegistration for a servlet with the given
* <tt>servletName</tt>, it will be completed (by assigning the class name of the given servlet instance to it) and
* returned.
*
* @param servletName the name of the servlet
* @param servlet the servlet instance to register
*
* @return a ServletRegistration object that may be used to further configure the given servlet, or <tt>null</tt> if
* this ServletContext already contains a complete ServletRegistration for a servlet with the given <tt>servletName</tt>
* or if the same servlet instance has already been registered with this or another ServletContext in the same container
*
* @throws IllegalStateException if this ServletContext has already been initialized
*
* @throws UnsupportedOperationException if this ServletContext was passed to the
* {@link ServletContextListener#contextInitialized} method of a {@link ServletContextListener} that was neither
* declared in <code>web.xml</code> or <code>web-fragment.xml</code>, nor annotated with
* {@link jakarta.servlet.annotation.WebListener}
*
* @throws IllegalArgumentException if <code>servletName</code> is null or an empty String
*
* @since Servlet 3.0
*/
ServletRegistration.Dynamic addServlet(String servletName, Servlet servlet);
/**
* Adds the servlet with the given name and class type to this servlet context.
*
* <p>
* The registered servlet may be further configured via the returned {@link ServletRegistration} object.
*
* <p>
* If this ServletContext already contains a preliminary ServletRegistration for a servlet with the given
* <tt>servletName</tt>, it will be completed (by assigning the name of the given <tt>servletClass</tt> to it) and
* returned.
*
* <p>
* This method introspects the given <tt>servletClass</tt> for the {@link jakarta.servlet.annotation.ServletSecurity},
* {@link jakarta.servlet.annotation.MultipartConfig}, <tt>jakarta.annotation.security.RunAs</tt>, and
* <tt>jakarta.annotation.security.DeclareRoles</tt> annotations. In addition, this method supports resource injection
* if the given <tt>servletClass</tt> represents a Managed Bean. See the Jakarta EE platform and CDI specifications for
* additional details about Managed Beans and resource injection.
*
* @param servletName the name of the servlet
* @param servletClass the class object from which the servlet will be instantiated
*
* @return a ServletRegistration object that may be used to further configure the registered servlet, or <tt>null</tt>
* if this ServletContext already contains a complete ServletRegistration for the given <tt>servletName</tt>
*
* @throws IllegalStateException if this ServletContext has already been initialized
*
* @throws IllegalArgumentException if <code>servletName</code> is null or an empty String
*
* @throws UnsupportedOperationException if this ServletContext was passed to the
* {@link ServletContextListener#contextInitialized} method of a {@link ServletContextListener} that was neither
* declared in <code>web.xml</code> or <code>web-fragment.xml</code>, nor annotated with
* {@link jakarta.servlet.annotation.WebListener}
*
* @since Servlet 3.0
*/
ServletRegistration.Dynamic addServlet(String servletName, Class<? extends Servlet> servletClass);
/**
* Adds the servlet with the given jsp file to this servlet context.
*
* <p>
* The registered servlet may be further configured via the returned {@link ServletRegistration} object.
*
* <p>
* If this ServletContext already contains a preliminary ServletRegistration for a servlet with the given
* <tt>servletName</tt>, it will be completed (by assigning the given <tt>jspFile</tt> to it) and returned.
*
* @param servletName the name of the servlet
* @param jspFile the full path to a JSP file within the web application beginning with a `/'.
*
* @return a ServletRegistration object that may be used to further configure the registered servlet, or <tt>null</tt>
* if this ServletContext already contains a complete ServletRegistration for a servlet with the given
* <tt>servletName</tt>
*
* @throws IllegalStateException if this ServletContext has already been initialized
*
* @throws IllegalArgumentException if <code>servletName</code> is null or an empty String
*
* @throws UnsupportedOperationException if this ServletContext was passed to the
* {@link ServletContextListener#contextInitialized} method of a {@link ServletContextListener} that was neither
* declared in <code>web.xml</code> or <code>web-fragment.xml</code>, nor annotated with
* {@link jakarta.servlet.annotation.WebListener}
*
* @since Servlet 4.0
*/
ServletRegistration.Dynamic addJspFile(String servletName, String jspFile);
/**
* Instantiates the given Servlet class.
*
* <p>
* The returned Servlet instance may be further customized before it is registered with this ServletContext via a call
* to {@link #addServlet(String,Servlet)}.
*
* <p>
* The given Servlet class must define a zero argument constructor, which is used to instantiate it.
*
* <p>
* This method introspects the given <tt>clazz</tt> for the following annotations:
* {@link jakarta.servlet.annotation.ServletSecurity}, {@link jakarta.servlet.annotation.MultipartConfig},
* <tt>jakarta.annotation.security.RunAs</tt>, and <tt>jakarta.annotation.security.DeclareRoles</tt>. In addition, this
* method supports resource injection if the given <tt>clazz</tt> represents a Managed Bean. See the Jakarta EE platform
* and CDI specifications for additional details about Managed Beans and resource injection.
*
* @param <T> the class of the Servlet to create
* @param clazz the Servlet class to instantiate
*
* @return the new Servlet instance
*
* @throws ServletException if the given <tt>clazz</tt> fails to be instantiated
*
* @throws UnsupportedOperationException if this ServletContext was passed to the
* {@link ServletContextListener#contextInitialized} method of a {@link ServletContextListener} that was neither
* declared in <code>web.xml</code> or <code>web-fragment.xml</code>, nor annotated with
* {@link jakarta.servlet.annotation.WebListener}
*
* @since Servlet 3.0
*/
<T extends Servlet> T createServlet(Class<T> clazz) throws ServletException;
/**
* Gets the ServletRegistration corresponding to the servlet with the given <tt>servletName</tt>.
*
* @param servletName the name of a servlet
*
* @return the (complete or preliminary) ServletRegistration for the servlet with the given <tt>servletName</tt>, or
* null if no ServletRegistration exists under that name
*
* @throws UnsupportedOperationException if this ServletContext was passed to the
* {@link ServletContextListener#contextInitialized} method of a {@link ServletContextListener} that was neither
* declared in <code>web.xml</code> or <code>web-fragment.xml</code>, nor annotated with
* {@link jakarta.servlet.annotation.WebListener}
*
* @since Servlet 3.0
*/
ServletRegistration getServletRegistration(String servletName);
/**
* Gets a (possibly empty) Map of the ServletRegistration objects (keyed by servlet name) corresponding to all servlets
* registered with this ServletContext.
*
* <p>
* The returned Map includes the ServletRegistration objects corresponding to all declared and annotated servlets, as
* well as the ServletRegistration objects corresponding to all servlets that have been added via one of the
* <tt>addServlet</tt> and <tt>addJspFile</tt> methods.
*
* <p>
* If permitted, any changes to the returned Map must not affect this ServletContext.
*
* @return Map of the (complete and preliminary) ServletRegistration objects corresponding to all servlets currently
* registered with this ServletContext
*
* @throws UnsupportedOperationException if this ServletContext was passed to the
* {@link ServletContextListener#contextInitialized} method of a {@link ServletContextListener} that was neither
* declared in <code>web.xml</code> or <code>web-fragment.xml</code>, nor annotated with
* {@link jakarta.servlet.annotation.WebListener}
*
* @since Servlet 3.0
*/
Map<String, ? extends ServletRegistration> getServletRegistrations();
/**
* Adds the filter with the given name and class name to this servlet context.
*
* <p>
* The registered filter may be further configured via the returned {@link FilterRegistration} object.
*
* <p>
* The specified <tt>className</tt> will be loaded using the classloader associated with the application represented by
* this ServletContext.
*
* <p>
* If this ServletContext already contains a preliminary FilterRegistration for a filter with the given
* <tt>filterName</tt>, it will be completed (by assigning the given <tt>className</tt> to it) and returned.
*
* <p>
* This method supports resource injection if the class with the given <tt>className</tt> represents a Managed Bean. See
* the Jakarta EE platform and CDI specifications for additional details about Managed Beans and resource injection.
*
* @param filterName the name of the filter
* @param className the fully qualified class name of the filter
*
* @return a FilterRegistration object that may be used to further configure the registered filter, or <tt>null</tt> if
* this ServletContext already contains a complete FilterRegistration for a filter with the given <tt>filterName</tt>
*
* @throws IllegalStateException if this ServletContext has already been initialized
*
* @throws IllegalArgumentException if <code>filterName</code> is null or an empty String
*
* @throws UnsupportedOperationException if this ServletContext was passed to the
* {@link ServletContextListener#contextInitialized} method of a {@link ServletContextListener} that was neither
* declared in <code>web.xml</code> or <code>web-fragment.xml</code>, nor annotated with
* {@link jakarta.servlet.annotation.WebListener}
*
* @since Servlet 3.0
*/
FilterRegistration.Dynamic addFilter(String filterName, String className);
/**
* Registers the given filter instance with this ServletContext under the given <tt>filterName</tt>.
*
* <p>
* The registered filter may be further configured via the returned {@link FilterRegistration} object.
*
* <p>
* If this ServletContext already contains a preliminary FilterRegistration for a filter with the given
* <tt>filterName</tt>, it will be completed (by assigning the class name of the given filter instance to it) and
* returned.
*
* @param filterName the name of the filter
* @param filter the filter instance to register
*
* @return a FilterRegistration object that may be used to further configure the given filter, or <tt>null</tt> if this
* ServletContext already contains a complete FilterRegistration for a filter with the given <tt>filterName</tt> or if
* the same filter instance has already been registered with this or another ServletContext in the same container
*
* @throws IllegalStateException if this ServletContext has already been initialized
*
* @throws IllegalArgumentException if <code>filterName</code> is null or an empty String
*
* @throws UnsupportedOperationException if this ServletContext was passed to the
* {@link ServletContextListener#contextInitialized} method of a {@link ServletContextListener} that was neither
* declared in <code>web.xml</code> or <code>web-fragment.xml</code>, nor annotated with
* {@link jakarta.servlet.annotation.WebListener}
*
* @since Servlet 3.0
*/
FilterRegistration.Dynamic addFilter(String filterName, Filter filter);
/**
* Adds the filter with the given name and class type to this servlet context.
*
* <p>
* The registered filter may be further configured via the returned {@link FilterRegistration} object.
*
* <p>
* If this ServletContext already contains a preliminary FilterRegistration for a filter with the given
* <tt>filterName</tt>, it will be completed (by assigning the name of the given <tt>filterClass</tt> to it) and
* returned.
*
* <p>
* This method supports resource injection if the given <tt>filterClass</tt> represents a Managed Bean. See the Jakarta
* EE platform and CDI specifications for additional details about Managed Beans and resource injection.
*
* @param filterName the name of the filter
* @param filterClass the class object from which the filter will be instantiated
*
* @return a FilterRegistration object that may be used to further configure the registered filter, or <tt>null</tt> if
* this ServletContext already contains a complete FilterRegistration for a filter with the given <tt>filterName</tt>
*
* @throws IllegalStateException if this ServletContext has already been initialized
*
* @throws IllegalArgumentException if <code>filterName</code> is null or an empty String
*
* @throws UnsupportedOperationException if this ServletContext was passed to the
* {@link ServletContextListener#contextInitialized} method of a {@link ServletContextListener} that was neither
* declared in <code>web.xml</code> or <code>web-fragment.xml</code>, nor annotated with
* {@link jakarta.servlet.annotation.WebListener}
*
* @since Servlet 3.0
*/
FilterRegistration.Dynamic addFilter(String filterName, Class<? extends Filter> filterClass);
/**
* Instantiates the given Filter class.
*
* <p>
* The returned Filter instance may be further customized before it is registered with this ServletContext via a call to
* {@link #addFilter(String,Filter)}.
*
* <p>
* The given Filter class must define a zero argument constructor, which is used to instantiate it.
*
* <p>
* This method supports resource injection if the given <tt>clazz</tt> represents a Managed Bean. See the Jakarta EE
* platform and CDI specifications for additional details about Managed Beans and resource injection.
*
* @param <T> the class of the Filter to create
* @param clazz the Filter class to instantiate
*
* @return the new Filter instance
*
* @throws ServletException if the given <tt>clazz</tt> fails to be instantiated
*
* @throws UnsupportedOperationException if this ServletContext was passed to the
* {@link ServletContextListener#contextInitialized} method of a {@link ServletContextListener} that was neither
* declared in <code>web.xml</code> or <code>web-fragment.xml</code>, nor annotated with
* {@link jakarta.servlet.annotation.WebListener}
*
* @since Servlet 3.0
*/
<T extends Filter> T createFilter(Class<T> clazz) throws ServletException;
/**
* Gets the FilterRegistration corresponding to the filter with the given <tt>filterName</tt>.
*
* @param filterName the name of a filter
* @return the (complete or preliminary) FilterRegistration for the filter with the given <tt>filterName</tt>, or null
* if no FilterRegistration exists under that name
*
* @throws UnsupportedOperationException if this ServletContext was passed to the
* {@link ServletContextListener#contextInitialized} method of a {@link ServletContextListener} that was neither
* declared in <code>web.xml</code> or <code>web-fragment.xml</code>, nor annotated with
* {@link jakarta.servlet.annotation.WebListener}
*
* @since Servlet 3.0
*/
FilterRegistration getFilterRegistration(String filterName);
/**
* Gets a (possibly empty) Map of the FilterRegistration objects (keyed by filter name) corresponding to all filters
* registered with this ServletContext.
*
* <p>
* The returned Map includes the FilterRegistration objects corresponding to all declared and annotated filters, as well
* as the FilterRegistration objects corresponding to all filters that have been added via one of the <tt>addFilter</tt>
* methods.
*
* <p>
* Any changes to the returned Map must not affect this ServletContext.
*
* @return Map of the (complete and preliminary) FilterRegistration objects corresponding to all filters currently
* registered with this ServletContext
*
* @throws UnsupportedOperationException if this ServletContext was passed to the
* {@link ServletContextListener#contextInitialized} method of a {@link ServletContextListener} that was neither
* declared in <code>web.xml</code> or <code>web-fragment.xml</code>, nor annotated with
* {@link jakarta.servlet.annotation.WebListener}
*
* @since Servlet 3.0
*/
Map<String, ? extends FilterRegistration> getFilterRegistrations();
/**
* Gets the {@link SessionCookieConfig} object through which various properties of the session tracking cookies created
* on behalf of this <tt>ServletContext</tt> may be configured.
*
* <p>
* Repeated invocations of this method will return the same <tt>SessionCookieConfig</tt> instance.
*
* @return the <tt>SessionCookieConfig</tt> object through which various properties of the session tracking cookies
* created on behalf of this <tt>ServletContext</tt> may be configured
*
* @throws UnsupportedOperationException if this ServletContext was passed to the
* {@link ServletContextListener#contextInitialized} method of a {@link ServletContextListener} that was neither
* declared in <code>web.xml</code> or <code>web-fragment.xml</code>, nor annotated with
* {@link jakarta.servlet.annotation.WebListener}
*
* @since Servlet 3.0
*/
SessionCookieConfig getSessionCookieConfig();
/**
* Sets the session tracking modes that are to become effective for this <tt>ServletContext</tt>.
*
* <p>
* The given <tt>sessionTrackingModes</tt> replaces any session tracking modes set by a previous invocation of this
* method on this <tt>ServletContext</tt>.
*
* @param sessionTrackingModes the set of session tracking modes to become effective for this <tt>ServletContext</tt>
*
* @throws IllegalStateException if this ServletContext has already been initialized
*
* @throws UnsupportedOperationException if this ServletContext was passed to the
* {@link ServletContextListener#contextInitialized} method of a {@link ServletContextListener} that was neither
* declared in <code>web.xml</code> or <code>web-fragment.xml</code>, nor annotated with
* {@link jakarta.servlet.annotation.WebListener}
*
* @throws IllegalArgumentException if <tt>sessionTrackingModes</tt> specifies a combination of
* <tt>SessionTrackingMode.SSL</tt> with a session tracking mode other than <tt>SessionTrackingMode.SSL</tt>, or if
* <tt>sessionTrackingModes</tt> specifies a session tracking mode that is not supported by the servlet container
*
* @since Servlet 3.0
*/
void setSessionTrackingModes(Set<SessionTrackingMode> sessionTrackingModes);
/**
* Gets the session tracking modes that are supported by default for this <tt>ServletContext</tt>.
*
* <p>
* The returned set is not backed by the {@code ServletContext} object, so changes in the returned set are not reflected
* in the {@code ServletContext} object, and vice-versa.
* </p>
*
* @return set of the session tracking modes supported by default for this <tt>ServletContext</tt>
*
* @since Servlet 3.0
*/
Set<SessionTrackingMode> getDefaultSessionTrackingModes();
/**
* Gets the session tracking modes that are in effect for this <tt>ServletContext</tt>.
*
* <p>
* The session tracking modes in effect are those provided to {@link #setSessionTrackingModes setSessionTrackingModes}.
*
* <p>
* The returned set is not backed by the {@code ServletContext} object, so changes in the returned set are not reflected
* in the {@code ServletContext} object, and vice-versa.
* </p>
*
* @return set of the session tracking modes in effect for this <tt>ServletContext</tt>
*
* @since Servlet 3.0
*/
Set<SessionTrackingMode> getEffectiveSessionTrackingModes();
/**
* Adds the listener with the given class name to this ServletContext.
*
* <p>
* The class with the given name will be loaded using the classloader associated with the application represented by
* this ServletContext, and must implement one or more of the following interfaces:
* <ul>
* <li>{@link ServletContextAttributeListener}
* <li>{@link ServletRequestListener}
* <li>{@link ServletRequestAttributeListener}
* <li>{@link jakarta.servlet.http.HttpSessionAttributeListener}
* <li>{@link jakarta.servlet.http.HttpSessionIdListener}
* <li>{@link jakarta.servlet.http.HttpSessionListener}
* </ul>
*
* <p>
* If this ServletContext was passed to {@link ServletContainerInitializer#onStartup}, then the class with the given
* name may also implement {@link ServletContextListener}, in addition to the interfaces listed above.
*
* <p>
* As part of this method call, the container must load the class with the specified class name to ensure that it
* implements one of the required interfaces.
*
* <p>
* If the class with the given name implements a listener interface whose invocation order corresponds to the
* declaration order (i.e., if it implements {@link ServletRequestListener}, {@link ServletContextListener}, or
* {@link jakarta.servlet.http.HttpSessionListener}), then the new listener will be added to the end of the ordered list
* of listeners of that interface.
*
* <p>
* This method supports resource injection if the class with the given <tt>className</tt> represents a Managed Bean. See
* the Jakarta EE platform and CDI specifications for additional details about Managed Beans and resource injection.
*
* @param className the fully qualified class name of the listener
*
* @throws IllegalArgumentException if the class with the given name does not implement any of the above interfaces, or
* if it implements {@link ServletContextListener} and this ServletContext was not passed to
* {@link ServletContainerInitializer#onStartup}
*
* @throws IllegalStateException if this ServletContext has already been initialized
*
* @throws UnsupportedOperationException if this ServletContext was passed to the
* {@link ServletContextListener#contextInitialized} method of a {@link ServletContextListener} that was neither
* declared in <code>web.xml</code> or <code>web-fragment.xml</code>, nor annotated with
* {@link jakarta.servlet.annotation.WebListener}
*
* @since Servlet 3.0
*/
void addListener(String className);
/**
* Adds the given listener to this ServletContext.
*
* <p>
* The given listener must be an instance of one or more of the following interfaces:
* <ul>
* <li>{@link ServletContextAttributeListener}
* <li>{@link ServletRequestListener}
* <li>{@link ServletRequestAttributeListener}
* <li>{@link jakarta.servlet.http.HttpSessionAttributeListener}
* <li>{@link jakarta.servlet.http.HttpSessionIdListener}
* <li>{@link jakarta.servlet.http.HttpSessionListener}
* </ul>
*
* <p>
* If this ServletContext was passed to {@link ServletContainerInitializer#onStartup}, then the given listener may also
* be an instance of {@link ServletContextListener}, in addition to the interfaces listed above.
*
* <p>
* If the given listener is an instance of a listener interface whose invocation order corresponds to the declaration
* order (i.e., if it is an instance of {@link ServletRequestListener}, {@link ServletContextListener}, or
* {@link jakarta.servlet.http.HttpSessionListener}), then the listener will be added to the end of the ordered list of
* listeners of that interface.
*
* @param <T> the class of the EventListener to add
* @param t the listener to be added
*
* @throws IllegalArgumentException if the given listener is not an instance of any of the above interfaces, or if it is
* an instance of {@link ServletContextListener} and this ServletContext was not passed to
* {@link ServletContainerInitializer#onStartup}
*
* @throws IllegalStateException if this ServletContext has already been initialized
*
* @throws UnsupportedOperationException if this ServletContext was passed to the
* {@link ServletContextListener#contextInitialized} method of a {@link ServletContextListener} that was neither
* declared in <code>web.xml</code> or <code>web-fragment.xml</code>, nor annotated with
* {@link jakarta.servlet.annotation.WebListener}
*
* @since Servlet 3.0
*/
<T extends EventListener> void addListener(T t);
/**
* Adds a listener of the given class type to this ServletContext.
*
* <p>
* The given <tt>listenerClass</tt> must implement one or more of the following interfaces:
* <ul>
* <li>{@link ServletContextAttributeListener}
* <li>{@link ServletRequestListener}
* <li>{@link ServletRequestAttributeListener}
* <li>{@link jakarta.servlet.http.HttpSessionAttributeListener}
* <li>{@link jakarta.servlet.http.HttpSessionIdListener}
* <li>{@link jakarta.servlet.http.HttpSessionListener}
* </ul>
*
* <p>
* If this ServletContext was passed to {@link ServletContainerInitializer#onStartup}, then the given
* <tt>listenerClass</tt> may also implement {@link ServletContextListener}, in addition to the interfaces listed above.
*
* <p>
* If the given <tt>listenerClass</tt> implements a listener interface whose invocation order corresponds to the
* declaration order (i.e., if it implements {@link ServletRequestListener}, {@link ServletContextListener}, or
* {@link jakarta.servlet.http.HttpSessionListener}), then the new listener will be added to the end of the ordered list
* of listeners of that interface.
*
* <p>
* This method supports resource injection if the given <tt>listenerClass</tt> represents a Managed Bean. See the
* Jakarta EE platform and CDI specifications for additional details about Managed Beans and resource injection.
*
* @param listenerClass the listener class to be instantiated
*
* @throws IllegalArgumentException if the given <tt>listenerClass</tt> does not implement any of the above interfaces,
* or if it implements {@link ServletContextListener} and this ServletContext was not passed to
* {@link ServletContainerInitializer#onStartup}
*
* @throws IllegalStateException if this ServletContext has already been initialized
*
* @throws UnsupportedOperationException if this ServletContext was passed to the
* {@link ServletContextListener#contextInitialized} method of a {@link ServletContextListener} that was neither
* declared in <code>web.xml</code> or <code>web-fragment.xml</code>, nor annotated with
* {@link jakarta.servlet.annotation.WebListener}
*
* @since Servlet 3.0
*/
void addListener(Class<? extends EventListener> listenerClass);
/**
* Instantiates the given EventListener class.
*
* <p>
* The specified EventListener class must implement at least one of the {@link ServletContextListener},
* {@link ServletContextAttributeListener}, {@link ServletRequestListener}, {@link ServletRequestAttributeListener},
* {@link jakarta.servlet.http.HttpSessionAttributeListener}, {@link jakarta.servlet.http.HttpSessionIdListener}, or
* {@link jakarta.servlet.http.HttpSessionListener} interfaces.
*
* <p>
* The returned EventListener instance may be further customized before it is registered with this ServletContext via a
* call to {@link #addListener(EventListener)}.
*
* <p>
* The given EventListener class must define a zero argument constructor, which is used to instantiate it.
*
* <p>
* This method supports resource injection if the given <tt>clazz</tt> represents a Managed Bean. See the Jakarta EE
* platform and CDI specifications for additional details about Managed Beans and resource injection.
*
* @param <T> the class of the EventListener to create
* @param clazz the EventListener class to instantiate
*
* @return the new EventListener instance
*
* @throws ServletException if the given <tt>clazz</tt> fails to be instantiated
*
* @throws UnsupportedOperationException if this ServletContext was passed to the
* {@link ServletContextListener#contextInitialized} method of a {@link ServletContextListener} that was neither
* declared in <code>web.xml</code> or <code>web-fragment.xml</code>, nor annotated with
* {@link jakarta.servlet.annotation.WebListener}
*
* @throws IllegalArgumentException if the specified EventListener class does not implement any of the
* {@link ServletContextListener}, {@link ServletContextAttributeListener}, {@link ServletRequestListener},
* {@link ServletRequestAttributeListener}, {@link jakarta.servlet.http.HttpSessionAttributeListener},
* {@link jakarta.servlet.http.HttpSessionIdListener}, or {@link jakarta.servlet.http.HttpSessionListener} interfaces.
*
* @since Servlet 3.0
*/
<T extends EventListener> T createListener(Class<T> clazz) throws ServletException;
/**
* Gets the <code><jsp-config></code> related configuration that was aggregated from the <code>web.xml</code> and
* <code>web-fragment.xml</code> descriptor files of the web application represented by this ServletContext.
*
* @return the <code><jsp-config></code> related configuration that was aggregated from the <code>web.xml</code>
* and <code>web-fragment.xml</code> descriptor files of the web application represented by this ServletContext, or null
* if no such configuration exists
*
* @see jakarta.servlet.descriptor.JspConfigDescriptor
*
* @since Servlet 3.0
*/
JspConfigDescriptor getJspConfigDescriptor();
/**
* Gets the class loader of the web application represented by this ServletContext.
*
* <p>
* If a security manager exists, and the caller's class loader is not the same as, or an ancestor of the requested class
* loader, then the security manager's <code>checkPermission</code> method is called with a
* <code>RuntimePermission("getClassLoader")</code> permission to check whether access to the requested class loader
* should be granted.
*
* @return the class loader of the web application represented by this ServletContext
*
* @since Servlet 3.0
*/
ClassLoader getClassLoader();
/**
* Declares role names that are tested using <code>isUserInRole</code>.
*
* <p>
* Roles that are implicitly declared as a result of their use within the
* {@link ServletRegistration.Dynamic#setServletSecurity setServletSecurity} or
* {@link ServletRegistration.Dynamic#setRunAsRole setRunAsRole} methods of the {@link ServletRegistration} interface
* need not be declared.
*
* @param roleNames the role names being declared
*
* @throws UnsupportedOperationException if this ServletContext was passed to the
* {@link ServletContextListener#contextInitialized} method of a {@link ServletContextListener} that was neither
* declared in <code>web.xml</code> or <code>web-fragment.xml</code>, nor annotated with
* {@link jakarta.servlet.annotation.WebListener}
*
* @throws IllegalArgumentException if any of the argument roleNames is null or the empty string
*
* @throws IllegalStateException if the ServletContext has already been initialized
*
* @since Servlet 3.0
*/
void declareRoles(String... roleNames);
/**
* Returns the configuration name of the logical host on which the ServletContext is deployed.
*
* Servlet containers may support multiple logical hosts. This method must return the same name for all the servlet
* contexts deployed on a logical host, and the name returned by this method must be distinct, stable per logical host,
* and suitable for use in associating server configuration information with the logical host. The returned value is NOT
* expected or required to be equivalent to a network address or hostname of the logical host.
*
* @return a <code>String</code> containing the configuration name of the logical host on which the servlet context is
* deployed.
*
* @since Servlet 3.1
*/
String getVirtualServerName();
/**
* Gets the session timeout in minutes that are supported by default for this <tt>ServletContext</tt>.
*
* @return the session timeout in minutes that are supported by default for this <tt>ServletContext</tt>
*
* @since Servlet 4.0
*/
int getSessionTimeout();
/**
* Sets the session timeout in minutes for this ServletContext.
*
* @param sessionTimeout session timeout in minutes
*
* @throws IllegalStateException if this ServletContext has already been initialized
*
* @throws UnsupportedOperationException if this ServletContext was passed to the
* {@link ServletContextListener#contextInitialized} method of a {@link ServletContextListener} that was neither
* declared in <code>web.xml</code> or <code>web-fragment.xml</code>, nor annotated with
* {@link jakarta.servlet.annotation.WebListener}
*
* @since Servlet 4.0
*/
void setSessionTimeout(int sessionTimeout);
/**
* Gets the request character encoding that are supported by default for this <tt>ServletContext</tt>. This method
* returns null if no request encoding character encoding has been specified in deployment descriptor or container
* specific configuration (for all web applications in the container).
*
* @return the request character encoding that are supported by default for this <tt>ServletContext</tt>
*
* @since Servlet 4.0
*/
String getRequestCharacterEncoding();
/**
* Sets the request character encoding for this ServletContext.
*
* @param encoding request character encoding
*
* @throws IllegalStateException if this ServletContext has already been initialized
*
* @throws UnsupportedOperationException if this ServletContext was passed to the
* {@link ServletContextListener#contextInitialized} method of a {@link ServletContextListener} that was neither
* declared in <code>web.xml</code> or <code>web-fragment.xml</code>, nor annotated with
* {@link jakarta.servlet.annotation.WebListener}
*
* @since Servlet 4.0
*/
void setRequestCharacterEncoding(String encoding);
/**
* Sets the request character encoding for this ServletContext.
* <p>
* Implementations are strongly encouraged to override this default method and provide a more efficient implementation.
*
* @param encoding request character encoding
*
* @throws IllegalStateException if this ServletContext has already been initialized
*
* @throws UnsupportedOperationException if this ServletContext was passed to the
* {@link ServletContextListener#contextInitialized} method of a {@link ServletContextListener} that was neither
* declared in <code>web.xml</code> or <code>web-fragment.xml</code>, nor annotated with
* {@link jakarta.servlet.annotation.WebListener}
*
* @since Servlet 6.1
*/
default void setRequestCharacterEncoding(Charset encoding) {
setRequestCharacterEncoding(encoding.name());
}
/**
* Gets the response character encoding that are supported by default for this <tt>ServletContext</tt>. This method
* returns null if no response encoding character encoding has been specified in deployment descriptor or container
* specific configuration (for all web applications in the container).
*
* @return the request character encoding that are supported by default for this <tt>ServletContext</tt>
*
* @since Servlet 4.0
*/
String getResponseCharacterEncoding();
/**
* Sets the response character encoding for this ServletContext.
*
* @param encoding response character encoding
*
* @throws IllegalStateException if this ServletContext has already been initialized
*
* @throws UnsupportedOperationException if this ServletContext was passed to the
* {@link ServletContextListener#contextInitialized} method of a {@link ServletContextListener} that was neither
* declared in <code>web.xml</code> or <code>web-fragment.xml</code>, nor annotated with
* {@link jakarta.servlet.annotation.WebListener}
*
* @since Servlet 4.0
*/
void setResponseCharacterEncoding(String encoding);
/**
* Sets the response character encoding for this ServletContext.
* <p>
* Implementations are strongly encouraged to override this default method and provide a more efficient implementation.
*
* @param encoding response character encoding
*
* @throws IllegalStateException if this ServletContext has already been initialized
*
* @throws UnsupportedOperationException if this ServletContext was passed to the
* {@link ServletContextListener#contextInitialized} method of a {@link ServletContextListener} that was neither
* declared in <code>web.xml</code> or <code>web-fragment.xml</code>, nor annotated with
* {@link jakarta.servlet.annotation.WebListener}
*
* @since Servlet 6.1
*/
default void setResponseCharacterEncoding(Charset encoding) {
setResponseCharacterEncoding(encoding.name());
}
}
|