-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinfo.json
2548 lines (1631 loc) · 137 KB
/
info.json
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
{
"nodes": {
"class" :[ {
"name" : "GenericServlet" ,
"signature" : "public abstract class GenericServlet extends java.lang.Object implements Servlet, ServletConfig, java.io.Serializable" ,
"description" : "Defines a generic, protocol-independent servlet. To write an HTTP servlet for use on the Web, extend HttpServlet instead." ,
"constructors" :[ {
"signature" : "GenericServlet()" ,
"description" : "Does Nothing"
}
] ,
"methods" : [ {
"signature" : "public void destory()" ,
"description" : " Called by the servlet container to indicate to a servlet that the servlet is being taken out of service."
} , {
"signature" : "public java.lang.String getInitParameter(java.lang.String name)" ,
"description" : "Returns a String containing the value of the named initialization parameter, or null if the parameter does not exist"
} , {
"signature" : "public java.util.Enumeration getInitParameterNames()" ,
"description" : "Returns the names of the servlet's initialization parameters as an Enumeration of String objects, or an empty Enumeration if the servlet has no initialization parameters"
} , {
"signature" : "public ServletConfig getServletConfig()" ,
"description" : "Returns this servlet's ServletConfig object."
} , {
"signature" : "public ServletContext getServletContext()" ,
"description" : "Returns a reference to the ServletContext in which this servlet is running. "
} , {
"signature" : "public java.lang.String getServletInfo()" ,
"description" : "Returns information about the servlet, such as author, version, and copyright. By default, this method returns an empty string. Override this method to have it return a meaningful value. "
} , {
"signature" : "public void init(ServletConfig config)throws ServletException" ,
"description" : "Called by the servlet container to indicate to a servlet that the servlet is being placed into service." ,
"exception" : [ {
"throws" : "ServletException - if an exception occurs that interrupts the servlet's normal operation"
}
]
} , {
"signature" : "public void init()throws ServletException" ,
"description" : "A convenience method which can be overridden so that there's no need to call super.init(config)." ,
"exception" : [ {
"throws" : "ServletException - if an exception occurs that interrupts the servlet's normal operation"
}
]
} , {
"signature" : "public void log(java.lang.String msg)" ,
"description" : "Writes the specified message to a servlet log file, prepended by the servlet's name."
} , {
"signature" : "public void log(java.lang.String message,java.lang.Throwable t)" ,
"description" : "Writes an explanatory message and a stack trace for a given Throwable exception to the servlet log file, prepended by the servlet's name."
} , {
"signature" : "public abstract void service(ServletRequest req,ServletResponse res)throws ServletException,java.io.IOException" ,
"description" : "Called by the servlet container to allow the servlet to respond to a request. See Servlet.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)." ,
"exception" : [ {
"throws" : "ServletException - if an exception occurs that interferes with the servlet's normal operation occurred"
} , {
"throws" : "java.io.IOException - if an input or output exception occurs"
}
]
} , {
"signature" : "public java.lang.String getServletName()" ,
"description" : "Returns the name of this servlet instance. See ServletConfig.getServletName()."
}
]
} , {
"name" : "ServletContextAttributeEvent" ,
"signature" : "public class ServletContextAttributeEvent extends ServletContextEvent" ,
"description" : "This is the event class for notifications about changes to the attributes of the servlet context of a web application." ,
"constructors" :[ {
"signature" : "ServletContextAttributeEvent(ServletContext source, java.lang.String name, java.lang.Object value) " ,
"description" : "Construct a ServletContextAttributeEvent from the given context for the given attribute name and attribute value."
}
] ,
"methods" : [ {
"signature" : "public java.lang.String getName()" ,
"description" : "Return the name of the attribute that changed on the ServletContext."
} , {
"signature" : "public java.lang.Object getValue()" ,
"description" : "Returns the value of the attribute that has been added, removed, or replaced. If the attribute was added, this is the value of the attribute. If the attribute was removed, this is the value of the removed attribute. If the attribute was replaced, this is the old value of the attribute."
}
]
} , {
"name" : "ServletContextEvent" ,
"signature" : "public class ServletContextEvent extends java.util.EventObject" ,
"description" : "This is the event class for notifications about changes to the servlet context of a web application." ,
"constructors" :[ {
"signature" : "ServletContextEvent(ServletContext source)" ,
"description" : "Construct a ServletContextEvent from the given context."
}
] ,
"methods" : [ {
"signature" : "public ServletContext getServletContext()" ,
"description" : "Return the ServletContext that changed."
}
]
} , {
"name" : "ServletInputStream" ,
"signature" : "public abstract class ServletInputStream extends java.io.InputStream" ,
"description" : "Provides an input stream for reading binary data from a client request, including an efficient readLine method for reading data one line at a time. " ,
"constructors" :[ {
"signature" : " protected ServletInputStream()" ,
"description" : " Does nothing, because this is an abstract class."
}
] ,
"methods" : [ {
"signature" : "public int readLine(byte[] b,int off,int len) throws java.io.IOException" ,
"description" : "Reads the input stream, one line at a time. Starting at an offset, reads bytes into an array, until it reads a certain number of bytes or reaches a newline character, which it reads into the array as well.This method returns -1 if it reaches the end of the input stream before reading the maximum number of bytes.",
"exception" : [ {
"throws" : "java.io.IOException - if an input or output exception has occurred"
}
]
}
]
} , {
"name" : "ServletOutputStream" ,
"signature" : "public abstract class ServletOutputStream extends java.io.OutputStream" ,
"description" : "Provides an output stream for sending binary data to the client. A ServletOutputStream object is normally retrieved via the ServletResponse.getOutputStream() method." ,
"constructors" :[ {
"signature" : "protected ServletOutputStream()" ,
"description" : "Does nothing, because this is an abstract class."
}
] ,
"methods" : [ {
"signature" : "public void print(java.lang.String s)throws java.io.IOException" ,
"description" : "Writes a String to the client, without a carriage return-line feed (CRLF) character at the end.",
"exception" : [ {
"throws" : "java.io.IOException - if an input or output exception occurred"
}
]
} , {
"signature" : "public void print(boolean b) throws java.io.IOException" ,
"description" : "Writes a boolean value to the client, with no carriage return-line feed (CRLF) character at the end.",
"exception" : [ {
"throws" : "java.io.IOException - if an input or output exception occurred"
}
]
} , {
"signature" : "public void print(char c) throws java.io.IOException" ,
"description" : "Writes a character to the client, with no carriage return-line feed (CRLF) at the end.",
"exception" : [ {
"throws" : "java.io.IOException - if an input or output exception occurred"
}
]
} , {
"signature" : "public void print(int i)throws java.io.IOException" ,
"description" : "Writes an int to the client, with no carriage return-line feed (CRLF) at the end.",
"exception" : [ {
"throws" : "java.io.IOException - if an input or output exception occurred"
}
]
} , {
"signature" : "public void print(long l)throws java.io.IOException" ,
"description" : "Writes a long value to the client, with no carriage return-line feed (CRLF) at the end.",
"exception" : [ {
"throws" : "java.io.IOException - if an input or output exception occurred"
}
]
} , {
"signature" : "public void print(float l)throws java.io.IOException" ,
"description" : "Writes a float value to the client, with no carriage return-line feed (CRLF) at the end.",
"exception" : [ {
"throws" : "java.io.IOException - if an input or output exception occurred"
}
]
} , {
"signature" : "public void print(double l)throws java.io.IOException" ,
"description" : "Writes a double value to the client, with no carriage return-line feed (CRLF) at the end.",
"exception" : [ {
"throws" : "java.io.IOException - if an input or output exception occurred"
}
]
} , {
"signature" : "public void println()throws java.io.IOException" ,
"description" : "Writes a carriage return-line feed (CRLF) to the client.",
"exception" : [ {
"throws" : "java.io.IOException - if an input or output exception occurred"
}
]
} , {
"signature" : "public void println(java.lang.String s)throws java.io.IOException" ,
"description" : "Writes a string return-line feed (CRLF) to the client.",
"exception" : [ {
"throws" : "java.io.IOException - if an input or output exception occurred"
}
]
} , {
"signature" : "public void println(boolean b)throws java.io.IOException" ,
"description" : "Writes a boolean return-line feed (CRLF) to the client.",
"exception" : [ {
"throws" : "java.io.IOException - if an input or output exception occurred"
}
]
} , {
"signature" : "public void println(char c)throws java.io.IOException" ,
"description" : "Writes a char return-line feed (CRLF) to the client.",
"exception" : [ {
"throws" : "java.io.IOException - if an input or output exception occurred"
}
]
} , {
"signature" : "public void println(int i)throws java.io.IOException" ,
"description" : "Writes a int return-line feed (CRLF) to the client.",
"exception" : [ {
"throws" : "java.io.IOException - if an input or output exception occurred"
}
]
} , {
"signature" : "public void println(long l)throws java.io.IOException" ,
"description" : "Writes a long return-line feed (CRLF) to the client.",
"exception" : [ {
"throws" : "java.io.IOException - if an input or output exception occurred"
}
]
} , {
"signature" : "public void println(float l)throws java.io.IOException" ,
"description" : "Writes a float return-line feed (CRLF) to the client.",
"exception" : [ {
"throws" : "java.io.IOException - if an input or output exception occurred"
}
]
} , {
"signature" : "public void println(double l)throws java.io.IOException" ,
"description" : "Writes a double return-line feed (CRLF) to the client.",
"exception" : [ {
"throws" : "java.io.IOException - if an input or output exception occurred"
}
]
}
]
} , {
"name" : "ServletRequestAttributeEvent" ,
"signature" : "public class ServletRequestAttributeEvent extends ServletRequestEvent" ,
"description" : "This is the event class for notifications of changes to the attributes of the servlet request in an application." ,
"constructors" :[ {
"signature" : "public ServletRequestAttributeEvent(ServletContext sc,ServletRequest request,java.lang.String name,java.lang.Object value)" ,
"description" : "Construct a ServletRequestAttributeEvent giving the servlet context of this web application, the ServletRequest whose attributes are changing and the name and value of the attribute."
}
] ,
"methods" : [ {
"signature" : "public java.lang.String getName()" ,
"description" : "Return the name of the attribute that changed on the ServletRequest."
} , {
"signature" : "public java.lang.Object getValue()" ,
"description" : "Returns the value of the attribute that has been added, removed or replaced. If the attribute was added, this is the value of the attribute. If the attribute was removed, this is the value of the removed attribute. If the attribute was replaced, this is the old value of the attribute."
}
]
} , {
"name" : "ServletRequestEvent" ,
"signature" : "public class ServletRequestEvent extends java.util.EventObject" ,
"description" : "Events of this kind indicate lifecycle events for a ServletRequest. The source of the event is the ServletContext of this web application." ,
"constructors" :[ {
"signature" : "public ServletRequestEvent(ServletContext sc,ServletRequest request)" ,
"description" : "Construct a ServletRequestEvent for the given ServletContext and ServletRequest."
}
] ,
"methods" : [ {
"signature" : "public ServletRequest getServletRequest()" ,
"description" : "Returns the ServletRequest that is changing."
} , {
"signature" : "public ServletContext getServletContext()" ,
"description" : "Returns the ServletContext of this web application."
}
]
} , {
"name" : "ServletRequestWrapper" ,
"signature" : "public class ServletRequestWrapper extends java.lang.Object implements ServletRequest" ,
"description" : "Provides a convenient implementation of the ServletRequest interface that can be subclassed by developers wishing to adapt the request to a Servlet. This class implements the Wrapper or Decorator pattern. Methods default to calling through to the wrapped request object." ,
"constructors" :[ {
"signature" : "public ServletRequestWrapper(ServletRequest request)" ,
"description" : "Creates a ServletRequest adaptor wrapping the given request object.",
"exception" : [ {
"throws" : "java.lang.IllegalArgumentException - if the request is null"
}
]
}
] ,
"methods" : [ {
"signature" : "public ServletRequest getRequest()" ,
"description" : "Return the wrapped request object."
} , {
"signature" : "public void setRequest(ServletRequest request)" ,
"description" : "Sets the request object being wrapped.",
"exception" : [ {
"throws" : "java.lang.IllegalArgumentException - if the request is null."
}
]
} , {
"signature" : "public java.lang.Object getAttribute(java.lang.String name)" ,
"description" : "The default behavior of this method is to call getAttribute(String name) on the wrapped request object."
} , {
"signature" : "public java.util.Enumeration getAttributeNames()" ,
"description" : "The default behavior of this method is to return getAttributeNames() on the wrapped request object."
} , {
"signature" : "public java.lang.String getCharacterEncoding()" ,
"description" : "The default behavior of this method is to return getCharacterEncoding() on the wrapped request object."
} , {
"signature" : "public void setCharacterEncoding(java.lang.String enc)throws java.io.UnsupportedEncodingException" ,
"description" : "The default behavior of this method is to set the character encoding on the wrapped request object.",
"exception" : [ {
"throws" : "java.io.UnsupportedEncodingException - if this is not a valid encoding"
}
]
} , {
"signature" : "public int getContentLength()" ,
"description" : "The default behavior of this method is to return getContentLength() on the wrapped request object."
} , {
"signature" : "public java.lang.String getContentType()" ,
"description" : "The default behavior of this method is to return getContentType() on the wrapped request object."
} , {
"signature" : "public ServletInputStream getInputStream() throws java.io.IOException" ,
"description" : "The default behavior of this method is to return getInputStream() on the wrapped request object.",
"exception" : [ {
"throws" : "java.io.IOException - if an input or output exception occurred"
}
]
} , {
"signature" : "public java.lang.String getParameter(java.lang.String name)" ,
"description" : "The default behavior of this method is to return getParameter(String name) on the wrapped request object."
} , {
"signature" : "public java.util.Map getParameterMap()" ,
"description" : "The default behavior of this method is to return getParameterMap() on the wrapped request object."
} , {
"signature" : "public java.util.Enumeration getParameterNames()" ,
"description" : "The default behavior of this method is to return getParameterNames() on the wrapped request object."
} , {
"signature" : "public java.lang.String[] getParameterValues(java.lang.String name)" ,
"description" : "The default behavior of this method is to return getParameterValues(String name) on the wrapped request object."
} , {
"signature" : "public java.lang.String getProtocol()" ,
"description" : "The default behavior of this method is to return getProtocol() on the wrapped request object."
} , {
"signature" : "public java.lang.String getScheme()" ,
"description" : "The default behavior of this method is to return getScheme() on the wrapped request object."
} , {
"signature" : "public java.lang.String getServerName()" ,
"description" : "The default behavior of this method is to return getServerName() on the wrapped request object."
} , {
"signature" : "public int getServerPort()" ,
"description" : "The default behavior of this method is to return getServerPort() on the wrapped request object."
} , {
"signature" : "public java.io.BufferedReader getReader() throws java.io.IOException" ,
"description" : "The default behavior of this method is to return getReader() on the wrapped request object.",
"exception" : [ {
"throws" : "java.io.IOException - if an input or output exception occurred"
}
]
} , {
"signature" : "public java.lang.String getRemoteAddr()" ,
"description" : "The default behavior of this method is to return getRemoteAddr() on the wrapped request object."
} , {
"signature" : "public java.lang.String getRemoteHost()" ,
"description" : "The default behavior of this method is to return getRemoteHost() on the wrapped request object."
} , {
"signature" : "public void setAttribute(java.lang.String name,java.lang.Object o)" ,
"description" : "The default behavior of this method is to return setAttribute(String name, Object o) on the wrapped request object."
} , {
"signature" : "public void removeAttribute(java.lang.String name)" ,
"description" : "The default behavior of this method is to call removeAttribute(String name) on the wrapped request object."
} , {
"signature" : "public java.util.Locale getLocale()" ,
"description" : "The default behavior of this method is to return getLocale() on the wrapped request object"
} , {
"signature" : "public boolean isSecure()" ,
"description" : "The default behavior of this method is to return isSecure() on the wrapped request object."
} , {
"signature" : "public RequestDispatcher getRequestDispatcher(java.lang.String path)" ,
"description" : "The default behavior of this method is to return getRequestDispatcher(String path) on the wrapped request object."
} , {
"signature" : "public java.lang.String getRealPath(java.lang.String path)" ,
"description" : "The default behavior of this method is to return getRealPath(String path) on the wrapped request object."
} , {
"signature" : "public int getRemotePort()" ,
"description" : "The default behavior of this method is to return getRemotePort() on the wrapped request object."
} , {
"signature" : "public java.lang.String getLocalName()" ,
"description" : "The default behavior of this method is to return getLocalName() on the wrapped request object."
} , {
"signature" : "public java.lang.String getLocalAddr()" ,
"description" : "The default behavior of this method is to return getLocalAddr() on the wrapped request object."
} , {
"signature" : "public int getLocalPort()" ,
"description" : "The default behavior of this method is to return getLocalPort() on the wrapped request object."
}
]
} , {
"name" : "ServletResponseWrapper" ,
"signature" : "public class ServletResponseWrapper extends java.lang.Object implements ServletResponse" ,
"description" : "Provides a convenient implementation of the ServletResponse interface that can be subclassed by developers wishing to adapt the response from a Servlet. This class implements the Wrapper or Decorator pattern. Methods default to calling through to the wrapped response object." ,
"constructors" :[ {
"signature" : "public ServletResponseWrapper(ServletResponse response)" ,
"description" : "Creates a ServletResponse adaptor wrapping the given response object.",
"exception" : [ {
"throws" : "java.lang.IllegalArgumentException - if the response is null."
}
]
}
] ,
"methods" : [ {
"signature" : "public ServletResponse getResponse()" ,
"description" : "Return the wrapped ServletResponse object."
} , {
"signature" : "public void setResponse(ServletResponse response)" ,
"description" : "Sets the response being wrapped.",
"exception" : [ {
"throws" : "java.lang.IllegalArgumentException - if the response is null."
}
]
} , {
"signature" : "public void setCharacterEncoding(java.lang.String charset)" ,
"description" : "The default behavior of this method is to call setCharacterEncoding(String charset) on the wrapped response object."
} , {
"signature" : "public java.lang.String getCharacterEncoding()" ,
"description" : "The default behavior of this method is to return getCharacterEncoding() on the wrapped response object.",
"exception" : [ {
"throws" : "java.io.IOException - if an input or output exception occurred"
}
]
} , {
"signature" : "public java.io.PrintWriter getWriter() throws java.io.IOException" ,
"description" : "The default behavior of this method is to return getWriter() on the wrapped response object.",
"exception" : [ {
"throws" : "java.io.IOException - if an input or output exception occurred"
}
]
} , {
"signature" : "public void setContentLength(int len)" ,
"description" : "The default behavior of this method is to call setContentLength(int len) on the wrapped response object."
} , {
"signature" : "public int getContentLength()" ,
"description" : "The default behavior of this method is to return getContentLength() on the wrapped request object."
} , {
"signature" : "public void setContentType(java.lang.String type)" ,
"description" : "The default behavior of this method is to call setContentType(String type) on the wrapped response object."
} , {
"signature" : "public java.lang.String getContentType()" ,
"description" : "The default behavior of this method is to return getContentType() on the wrapped response object."
} , {
"signature" : "public void setBufferSize(int size)" ,
"description" : "The default behavior of this method is to call setBufferSize(int size) on the wrapped response object."
} , {
"signature" : "public int getBufferSize()" ,
"description" : "The default behavior of this method is to return getBufferSize() on the wrapped response object."
} , {
"signature" : "public void flushBuffer() throws java.io.IOException" ,
"description" : "The default behavior of this method is to call flushBuffer() on the wrapped response object.",
"exception" : [ {
"throws" : "java.io.IOException"
}
]
} , {
"signature" : "public boolean isCommitted()" ,
"description" : "The default behavior of this method is to return isCommitted() on the wrapped response object."
} , {
"signature" : "public void reset()" ,
"description" : "The default behavior of this method is to call reset() on the wrapped response object."
} , {
"signature" : "public void resetBuffer()" ,
"description" : "The default behavior of this method is to call resetBuffer() on the wrapped response object."
} , {
"signature" : "public void setLocale(java.util.Locale loc)" ,
"description" : "The default behavior of this method is to call setLocale(Locale loc) on the wrapped response object."
} , {
"signature" : "public java.util.Locale getLocale()" ,
"description" : "The default behavior of this method is to return getLocale() on the wrapped response object."
}
]
} , {
"name" : "HttpServlet" ,
"signature" : "public abstract class HttpServlet extends GenericServlet implements java.io.Serializable" ,
"description" : "rovides an abstract class to be subclassed to create an HTTP servlet suitable for a Web site. " ,
"constructors" :[ {
"signature" : "public HttpServlet()" ,
"description" : "Does nothing, because this is an abstract class."
}
] ,
"methods" : [ {
"signature" : "protected void doGet(HttpServletRequest req,HttpServletResponse resp)throws ServletException,java.io.IOException",
"description" : "Called by the server (via the service method) to allow a servlet to handle a GET request.",
"exception" : [ {
"throws" : "java.io.IOException - if an input or output error is detected when the servlet handles the GET request"
} , {
"throws" : "ServletException - if the request for the GET could not be handled"
}
]
} , {
"signature" : "protected long getLastModified(HttpServletRequest req)" ,
"description" : "Returns the time the HttpServletRequest object was last modified, in milliseconds since midnight January 1, 1970 GMT. If the time is unknown, this method returns a negative number (the default)."
} , {
"signature" : "protected void doHead(HttpServletRequest req,HttpServletResponse resp) throws ServletException,java.io.IOException" ,
"description" : "Receives an HTTP HEAD request from the protected service method and handles the request. The client sends a HEAD request when it wants to see only the headers of a response, such as Content-Type or Content-Length. The HTTP HEAD method counts the output bytes in the response to set the Content-Length header accurately.",
"exception" : [ {
"throws" : "java.io.IOException - if an input or output error occurs"
} , {
"throws" : "ServletException - if the request for the HEAD could not be handled"
}
]
} , {
"signature" : "protected void doPost(HttpServletRequest req,HttpServletResponse resp)throws ServletException,java.io.IOException" ,
"description" : "Called by the server (via the service method) to allow a servlet to handle a POST request. The HTTP POST method allows the client to send data of unlimited length to the Web server a single time and is useful when posting information such as credit card numbers.",
"exception" : [ {
"throws" : "java.io.IOException - if an input or output error is detected when the servlet handles the request"
} , {
"throws" : "ServletException - if the request for the POST could not be handled"
}
]
} , {
"signature" : "protected void doPut(HttpServletRequest req,HttpServletResponse resp)throws ServletException,java.io.IOException" ,
"description" : "Called by the server (via the service method) to allow a servlet to handle a PUT request. The PUT operation allows a client to place a file on the server and is similar to sending a file by FTP.",
"exception" : [ {
"throws" : "java.io.IOException - if an input or output error occurs while the servlet is handling the PUT request"
} , {
"throws" : "ServletException - if the request for the PUT cannot be handled"
}
]
} , {
"signature" : "protected void doDelete(HttpServletRequest req,HttpServletResponse resp)throws ServletException,java.io.IOException" ,
"description" : "Called by the server (via the service method) to allow a servlet to handle a DELETE request. The DELETE operation allows a client to remove a document or Web page from the server.",
"exception" : [ {
"throws" : "java.io.IOException - if an input or output error occurs while the servlet is handling the DELETE request"
} , {
"throws" : "ServletException - if the request for the DELETE cannot be handled"
}
]
} , {
"signature" : "protected void doOptions(HttpServletRequest req,HttpServletResponse resp)throws ServletException,java.io.IOException" ,
"description" : "Called by the server (via the service method) to allow a servlet to handle a OPTIONS request. The OPTIONS request determines which HTTP methods the server supports and returns an appropriate header.",
"exception" : [ {
"throws" : "java.io.IOException - if an input or output error occurs while the servlet is handling the OPTIONS request"
} , {
"throws" : "ServletException - if the request for the OPTIONS cannot be handled"
}
]
} , {
"signature" : "protected void doTrace(HttpServletRequest req,HttpServletResponse resp)throws ServletException,java.io.IOException" ,
"description" : "Called by the server (via the service method) to allow a servlet to handle a TRACE request. A TRACE returns the headers sent with the TRACE request to the client, so that they can be used in debugging. There's no need to override this method.",
"exception" : [ {
"throws" : "java.io.IOException - if an input or output error occurs while the servlet is handling the TRACE request"
} , {
"throws" : "ServletException - if the request for the TRACE cannot be handled"
}
]
} , {
"signature" : "protected void service(HttpServletRequest req,HttpServletResponse resp)throws ServletException,java.io.IOException" ,
"description" : "Receives standard HTTP requests from the public service method and dispatches them to the doXXX methods defined in this class. This method is an HTTP-specific version of the Servlet.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse) method. There's no need to override this method.",
"exception" : [ {
"throws" : "java.io.IOException - if an input or output error occurs while the servlet is handling the HTTP request"
} , {
"throws" : "ServletException - if the request for the HTTP cannot be handled"
}
]
} , {
"signature" : "public void service(ServletRequest req,ServletResponse res)throws ServletException,java.io.IOException" ,
"description" : "Dispatches client requests to the protected service method. There's no need to override this method.",
"exception" : [ {
"throws" : "java.io.IOException - if an input or output error occurs while the servlet is handling the HTTP request"
} , {
"throws" : "ServletException - if the request for the HTTP cannot be handled"
}
]
}
]
} , {
"name" : "HttpServletRequestWrapper" ,
"signature" : "public abstract class HttpServlet extends GenericServlet implements java.io.Serializable" ,
"description" : "Provides a convenient implementation of the HttpServletRequest interface that can be subclassed by developers wishing to adapt the request to a Servlet. This class implements the Wrapper or Decorator pattern. Methods default to calling through to the wrapped request object." ,
"constructors" :[ {
"signature" : "public HttpServletRequestWrapper(HttpServletRequest request)" ,
"description" : "Constructs a request object wrapping the given request.",
"exception" : [ {
"throws" : "java.lang.IllegalArgumentException - if the request is null"
}
]
}
] ,
"methods" : [ {
"signature" : "public java.lang.String getAuthType()" ,
"description" : "The default behavior of this method is to return getAuthType() on the wrapped request object."
} , {
"signature" : "public Cookie[] getCookies()" ,
"description" : "The default behavior of this method is to return getCookies() on the wrapped request object."
} , {
"signature" : "public long getDateHeader(java.lang.String name)" ,
"description" : "The default behavior of this method is to return getDateHeader(String name) on the wrapped request object."
} , {
"signature" : "public java.lang.String getHeader(java.lang.String name)" ,
"description" : "The default behavior of this method is to return getHeader(String name) on the wrapped request object."
} , {
"signature" : "public java.util.Enumeration getHeaders(java.lang.String name)" ,
"description" : "The default behavior of this method is to return getHeaders(String name) on the wrapped request object."
} , {
"signature" : "public java.util.Enumeration getHeaderNames()" ,
"description" : "The default behavior of this method is to return getHeaderNames() on the wrapped request object."
} , {
"signature" : "public int getIntHeader(java.lang.String name)" ,
"description" : "The default behavior of this method is to return getIntHeader(String name) on the wrapped request object."
} , {
"signature" : "public java.lang.String getMethod()" ,
"description" : "The default behavior of this method is to return getMethod() on the wrapped request object."
} , {
"signature" : "public java.lang.String getPathInfo()" ,
"description" : "The default behavior of this method is to return getPathInfo() on the wrapped request object."
} , {
"signature" : "public java.lang.String getPathTranslated()" ,
"description" : "The default behavior of this method is to return getPathTranslated() on the wrapped request object."
} , {
"signature" : "public java.lang.String getQueryString()" ,
"description" : "The default behavior of this method is to return getQueryString() on the wrapped request object."
} , {
"signature" : "public java.lang.String getContextPath()" ,
"description" : "The default behavior of this method is to return getContextPath() on the wrapped request object."
} , {
"signature" : "public java.lang.String getRemoteUser()" ,
"description" : "The default behavior of this method is to return getRemoteUser() on the wrapped request object."
} , {
"signature" : "public boolean isUserInRole(java.lang.String role)" ,
"description" : "The default behavior of this method is to return isUserInRole(String role) on the wrapped request object."