-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathktor-http.api
1379 lines (1242 loc) · 74.6 KB
/
ktor-http.api
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
public final class io/ktor/http/ApplicationResponsePropertiesKt {
public static final fun etag (Lio/ktor/http/HeadersBuilder;Ljava/lang/String;)V
}
public final class io/ktor/http/BadContentTypeFormatException : java/lang/Exception {
public fun <init> (Ljava/lang/String;)V
}
public abstract class io/ktor/http/CacheControl {
public fun <init> (Lio/ktor/http/CacheControl$Visibility;)V
public final fun getVisibility ()Lio/ktor/http/CacheControl$Visibility;
}
public final class io/ktor/http/CacheControl$MaxAge : io/ktor/http/CacheControl {
public fun <init> (ILjava/lang/Integer;ZZLio/ktor/http/CacheControl$Visibility;)V
public synthetic fun <init> (ILjava/lang/Integer;ZZLio/ktor/http/CacheControl$Visibility;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public fun equals (Ljava/lang/Object;)Z
public final fun getMaxAgeSeconds ()I
public final fun getMustRevalidate ()Z
public final fun getProxyMaxAgeSeconds ()Ljava/lang/Integer;
public final fun getProxyRevalidate ()Z
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public final class io/ktor/http/CacheControl$NoCache : io/ktor/http/CacheControl {
public fun <init> (Lio/ktor/http/CacheControl$Visibility;)V
public fun equals (Ljava/lang/Object;)Z
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public final class io/ktor/http/CacheControl$NoStore : io/ktor/http/CacheControl {
public fun <init> (Lio/ktor/http/CacheControl$Visibility;)V
public fun equals (Ljava/lang/Object;)Z
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public final class io/ktor/http/CacheControl$Visibility : java/lang/Enum {
public static final field Private Lio/ktor/http/CacheControl$Visibility;
public static final field Public Lio/ktor/http/CacheControl$Visibility;
public static fun valueOf (Ljava/lang/String;)Lio/ktor/http/CacheControl$Visibility;
public static fun values ()[Lio/ktor/http/CacheControl$Visibility;
}
public final class io/ktor/http/CodecsKt {
public static final fun decodeURLPart (Ljava/lang/String;IILjava/nio/charset/Charset;)Ljava/lang/String;
public static synthetic fun decodeURLPart$default (Ljava/lang/String;IILjava/nio/charset/Charset;ILjava/lang/Object;)Ljava/lang/String;
public static final fun decodeURLQueryComponent (Ljava/lang/String;IIZLjava/nio/charset/Charset;)Ljava/lang/String;
public static synthetic fun decodeURLQueryComponent$default (Ljava/lang/String;IIZLjava/nio/charset/Charset;ILjava/lang/Object;)Ljava/lang/String;
public static final fun encodeOAuth (Ljava/lang/String;)Ljava/lang/String;
public static final fun encodeURLParameter (Ljava/lang/String;Z)Ljava/lang/String;
public static synthetic fun encodeURLParameter$default (Ljava/lang/String;ZILjava/lang/Object;)Ljava/lang/String;
public static final fun encodeURLPath (Ljava/lang/String;)Ljava/lang/String;
public static final fun encodeURLPathPart (Ljava/lang/String;)Ljava/lang/String;
public static final fun encodeURLQueryComponent (Ljava/lang/String;ZZLjava/nio/charset/Charset;)Ljava/lang/String;
public static synthetic fun encodeURLQueryComponent$default (Ljava/lang/String;ZZLjava/nio/charset/Charset;ILjava/lang/Object;)Ljava/lang/String;
}
public final class io/ktor/http/ContentDisposition : io/ktor/http/HeaderValueWithParameters {
public static final field Companion Lio/ktor/http/ContentDisposition$Companion;
public fun <init> (Ljava/lang/String;Ljava/util/List;)V
public synthetic fun <init> (Ljava/lang/String;Ljava/util/List;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public fun equals (Ljava/lang/Object;)Z
public final fun getDisposition ()Ljava/lang/String;
public final fun getName ()Ljava/lang/String;
public fun hashCode ()I
public final fun withParameter (Ljava/lang/String;Ljava/lang/String;Z)Lio/ktor/http/ContentDisposition;
public static synthetic fun withParameter$default (Lio/ktor/http/ContentDisposition;Ljava/lang/String;Ljava/lang/String;ZILjava/lang/Object;)Lio/ktor/http/ContentDisposition;
public final fun withParameters (Ljava/util/List;)Lio/ktor/http/ContentDisposition;
}
public final class io/ktor/http/ContentDisposition$Companion {
public final fun getAttachment ()Lio/ktor/http/ContentDisposition;
public final fun getFile ()Lio/ktor/http/ContentDisposition;
public final fun getInline ()Lio/ktor/http/ContentDisposition;
public final fun getMixed ()Lio/ktor/http/ContentDisposition;
public final fun parse (Ljava/lang/String;)Lio/ktor/http/ContentDisposition;
}
public final class io/ktor/http/ContentDisposition$Parameters {
public static final field CreationDate Ljava/lang/String;
public static final field FileName Ljava/lang/String;
public static final field FileNameAsterisk Ljava/lang/String;
public static final field Handling Ljava/lang/String;
public static final field INSTANCE Lio/ktor/http/ContentDisposition$Parameters;
public static final field ModificationDate Ljava/lang/String;
public static final field Name Ljava/lang/String;
public static final field ReadDate Ljava/lang/String;
public static final field Size Ljava/lang/String;
}
public abstract class io/ktor/http/ContentRange {
}
public final class io/ktor/http/ContentRange$Bounded : io/ktor/http/ContentRange {
public fun <init> (JJ)V
public final fun component1 ()J
public final fun component2 ()J
public final fun copy (JJ)Lio/ktor/http/ContentRange$Bounded;
public static synthetic fun copy$default (Lio/ktor/http/ContentRange$Bounded;JJILjava/lang/Object;)Lio/ktor/http/ContentRange$Bounded;
public fun equals (Ljava/lang/Object;)Z
public final fun getFrom ()J
public final fun getTo ()J
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public final class io/ktor/http/ContentRange$Suffix : io/ktor/http/ContentRange {
public fun <init> (J)V
public final fun component1 ()J
public final fun copy (J)Lio/ktor/http/ContentRange$Suffix;
public static synthetic fun copy$default (Lio/ktor/http/ContentRange$Suffix;JILjava/lang/Object;)Lio/ktor/http/ContentRange$Suffix;
public fun equals (Ljava/lang/Object;)Z
public final fun getLastCount ()J
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public final class io/ktor/http/ContentRange$TailFrom : io/ktor/http/ContentRange {
public fun <init> (J)V
public final fun component1 ()J
public final fun copy (J)Lio/ktor/http/ContentRange$TailFrom;
public static synthetic fun copy$default (Lio/ktor/http/ContentRange$TailFrom;JILjava/lang/Object;)Lio/ktor/http/ContentRange$TailFrom;
public fun equals (Ljava/lang/Object;)Z
public final fun getFrom ()J
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public final class io/ktor/http/ContentRangeKt {
public static final fun contentRangeHeaderValue (Lkotlin/ranges/LongRange;Ljava/lang/Long;Lio/ktor/http/RangeUnits;)Ljava/lang/String;
public static final fun contentRangeHeaderValue (Lkotlin/ranges/LongRange;Ljava/lang/Long;Ljava/lang/String;)Ljava/lang/String;
public static synthetic fun contentRangeHeaderValue$default (Lkotlin/ranges/LongRange;Ljava/lang/Long;Lio/ktor/http/RangeUnits;ILjava/lang/Object;)Ljava/lang/String;
public static synthetic fun contentRangeHeaderValue$default (Lkotlin/ranges/LongRange;Ljava/lang/Long;Ljava/lang/String;ILjava/lang/Object;)Ljava/lang/String;
}
public final class io/ktor/http/ContentType : io/ktor/http/HeaderValueWithParameters {
public static final field Companion Lio/ktor/http/ContentType$Companion;
public fun <init> (Ljava/lang/String;Ljava/lang/String;Ljava/util/List;)V
public synthetic fun <init> (Ljava/lang/String;Ljava/lang/String;Ljava/util/List;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public fun equals (Ljava/lang/Object;)Z
public final fun getContentSubtype ()Ljava/lang/String;
public final fun getContentType ()Ljava/lang/String;
public fun hashCode ()I
public final fun match (Lio/ktor/http/ContentType;)Z
public final fun match (Ljava/lang/String;)Z
public final fun withParameter (Ljava/lang/String;Ljava/lang/String;)Lio/ktor/http/ContentType;
public final fun withoutParameters ()Lio/ktor/http/ContentType;
}
public final class io/ktor/http/ContentType$Application {
public static final field INSTANCE Lio/ktor/http/ContentType$Application;
public final fun getAny ()Lio/ktor/http/ContentType;
public final fun getAtom ()Lio/ktor/http/ContentType;
public final fun getCbor ()Lio/ktor/http/ContentType;
public final fun getDocx ()Lio/ktor/http/ContentType;
public final fun getFormUrlEncoded ()Lio/ktor/http/ContentType;
public final fun getGZip ()Lio/ktor/http/ContentType;
public final fun getHalJson ()Lio/ktor/http/ContentType;
public final fun getJavaScript ()Lio/ktor/http/ContentType;
public final fun getJson ()Lio/ktor/http/ContentType;
public final fun getOctetStream ()Lio/ktor/http/ContentType;
public final fun getPdf ()Lio/ktor/http/ContentType;
public final fun getPptx ()Lio/ktor/http/ContentType;
public final fun getProblemJson ()Lio/ktor/http/ContentType;
public final fun getProblemXml ()Lio/ktor/http/ContentType;
public final fun getProtoBuf ()Lio/ktor/http/ContentType;
public final fun getRss ()Lio/ktor/http/ContentType;
public final fun getWasm ()Lio/ktor/http/ContentType;
public final fun getXlsx ()Lio/ktor/http/ContentType;
public final fun getXml ()Lio/ktor/http/ContentType;
public final fun getXml_Dtd ()Lio/ktor/http/ContentType;
public final fun getZip ()Lio/ktor/http/ContentType;
}
public final class io/ktor/http/ContentType$Audio {
public static final field INSTANCE Lio/ktor/http/ContentType$Audio;
public final fun getAny ()Lio/ktor/http/ContentType;
public final fun getMP4 ()Lio/ktor/http/ContentType;
public final fun getMPEG ()Lio/ktor/http/ContentType;
public final fun getOGG ()Lio/ktor/http/ContentType;
}
public final class io/ktor/http/ContentType$Companion {
public final fun getAny ()Lio/ktor/http/ContentType;
public final fun parse (Ljava/lang/String;)Lio/ktor/http/ContentType;
}
public final class io/ktor/http/ContentType$Font {
public static final field INSTANCE Lio/ktor/http/ContentType$Font;
public final fun getAny ()Lio/ktor/http/ContentType;
public final fun getCollection ()Lio/ktor/http/ContentType;
public final fun getOtf ()Lio/ktor/http/ContentType;
public final fun getSfnt ()Lio/ktor/http/ContentType;
public final fun getTtf ()Lio/ktor/http/ContentType;
public final fun getWoff ()Lio/ktor/http/ContentType;
public final fun getWoff2 ()Lio/ktor/http/ContentType;
}
public final class io/ktor/http/ContentType$Image {
public static final field INSTANCE Lio/ktor/http/ContentType$Image;
public final fun getAny ()Lio/ktor/http/ContentType;
public final fun getGIF ()Lio/ktor/http/ContentType;
public final fun getJPEG ()Lio/ktor/http/ContentType;
public final fun getPNG ()Lio/ktor/http/ContentType;
public final fun getSVG ()Lio/ktor/http/ContentType;
public final fun getXIcon ()Lio/ktor/http/ContentType;
}
public final class io/ktor/http/ContentType$Message {
public static final field INSTANCE Lio/ktor/http/ContentType$Message;
public final fun getAny ()Lio/ktor/http/ContentType;
public final fun getHttp ()Lio/ktor/http/ContentType;
}
public final class io/ktor/http/ContentType$MultiPart {
public static final field INSTANCE Lio/ktor/http/ContentType$MultiPart;
public final fun getAlternative ()Lio/ktor/http/ContentType;
public final fun getAny ()Lio/ktor/http/ContentType;
public final fun getByteRanges ()Lio/ktor/http/ContentType;
public final fun getEncrypted ()Lio/ktor/http/ContentType;
public final fun getFormData ()Lio/ktor/http/ContentType;
public final fun getMixed ()Lio/ktor/http/ContentType;
public final fun getRelated ()Lio/ktor/http/ContentType;
public final fun getSigned ()Lio/ktor/http/ContentType;
}
public final class io/ktor/http/ContentType$Text {
public static final field INSTANCE Lio/ktor/http/ContentType$Text;
public final fun getAny ()Lio/ktor/http/ContentType;
public final fun getCSS ()Lio/ktor/http/ContentType;
public final fun getCSV ()Lio/ktor/http/ContentType;
public final fun getEventStream ()Lio/ktor/http/ContentType;
public final fun getHtml ()Lio/ktor/http/ContentType;
public final fun getJavaScript ()Lio/ktor/http/ContentType;
public final fun getPlain ()Lio/ktor/http/ContentType;
public final fun getVCard ()Lio/ktor/http/ContentType;
public final fun getXml ()Lio/ktor/http/ContentType;
}
public final class io/ktor/http/ContentType$Video {
public static final field INSTANCE Lio/ktor/http/ContentType$Video;
public final fun getAny ()Lio/ktor/http/ContentType;
public final fun getMP4 ()Lio/ktor/http/ContentType;
public final fun getMPEG ()Lio/ktor/http/ContentType;
public final fun getOGG ()Lio/ktor/http/ContentType;
public final fun getQuickTime ()Lio/ktor/http/ContentType;
}
public abstract interface class io/ktor/http/ContentTypeMatcher {
public abstract fun contains (Lio/ktor/http/ContentType;)Z
}
public final class io/ktor/http/ContentTypesKt {
public static final fun charset (Lio/ktor/http/HeaderValueWithParameters;)Ljava/nio/charset/Charset;
public static final fun withCharset (Lio/ktor/http/ContentType;Ljava/nio/charset/Charset;)Lio/ktor/http/ContentType;
public static final fun withCharsetIfNeeded (Lio/ktor/http/ContentType;Ljava/nio/charset/Charset;)Lio/ktor/http/ContentType;
}
public final class io/ktor/http/Cookie {
public fun <init> (Ljava/lang/String;Ljava/lang/String;Lio/ktor/http/CookieEncoding;ILio/ktor/util/date/GMTDate;Ljava/lang/String;Ljava/lang/String;ZZLjava/util/Map;)V
public synthetic fun <init> (Ljava/lang/String;Ljava/lang/String;Lio/ktor/http/CookieEncoding;ILio/ktor/util/date/GMTDate;Ljava/lang/String;Ljava/lang/String;ZZLjava/util/Map;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/lang/String;
public final fun component10 ()Ljava/util/Map;
public final fun component2 ()Ljava/lang/String;
public final fun component3 ()Lio/ktor/http/CookieEncoding;
public final fun component4 ()I
public final fun component5 ()Lio/ktor/util/date/GMTDate;
public final fun component6 ()Ljava/lang/String;
public final fun component7 ()Ljava/lang/String;
public final fun component8 ()Z
public final fun component9 ()Z
public final fun copy (Ljava/lang/String;Ljava/lang/String;Lio/ktor/http/CookieEncoding;ILio/ktor/util/date/GMTDate;Ljava/lang/String;Ljava/lang/String;ZZLjava/util/Map;)Lio/ktor/http/Cookie;
public static synthetic fun copy$default (Lio/ktor/http/Cookie;Ljava/lang/String;Ljava/lang/String;Lio/ktor/http/CookieEncoding;ILio/ktor/util/date/GMTDate;Ljava/lang/String;Ljava/lang/String;ZZLjava/util/Map;ILjava/lang/Object;)Lio/ktor/http/Cookie;
public fun equals (Ljava/lang/Object;)Z
public final fun getDomain ()Ljava/lang/String;
public final fun getEncoding ()Lio/ktor/http/CookieEncoding;
public final fun getExpires ()Lio/ktor/util/date/GMTDate;
public final fun getExtensions ()Ljava/util/Map;
public final fun getHttpOnly ()Z
public final fun getMaxAgeInt ()I
public final fun getName ()Ljava/lang/String;
public final fun getPath ()Ljava/lang/String;
public final fun getSecure ()Z
public final fun getValue ()Ljava/lang/String;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public final class io/ktor/http/CookieEncoding : java/lang/Enum {
public static final field BASE64_ENCODING Lio/ktor/http/CookieEncoding;
public static final field DQUOTES Lio/ktor/http/CookieEncoding;
public static final field RAW Lio/ktor/http/CookieEncoding;
public static final field URI_ENCODING Lio/ktor/http/CookieEncoding;
public static fun valueOf (Ljava/lang/String;)Lio/ktor/http/CookieEncoding;
public static fun values ()[Lio/ktor/http/CookieEncoding;
}
public final class io/ktor/http/CookieKt {
public static final fun decodeCookieValue (Ljava/lang/String;Lio/ktor/http/CookieEncoding;)Ljava/lang/String;
public static final fun encodeCookieValue (Ljava/lang/String;Lio/ktor/http/CookieEncoding;)Ljava/lang/String;
public static final fun parseClientCookiesHeader (Ljava/lang/String;Z)Ljava/util/Map;
public static synthetic fun parseClientCookiesHeader$default (Ljava/lang/String;ZILjava/lang/Object;)Ljava/util/Map;
public static final fun parseServerSetCookieHeader (Ljava/lang/String;)Lio/ktor/http/Cookie;
public static final fun renderCookieHeader (Lio/ktor/http/Cookie;)Ljava/lang/String;
public static final fun renderSetCookieHeader (Lio/ktor/http/Cookie;)Ljava/lang/String;
public static final fun renderSetCookieHeader (Ljava/lang/String;Ljava/lang/String;Lio/ktor/http/CookieEncoding;ILio/ktor/util/date/GMTDate;Ljava/lang/String;Ljava/lang/String;ZZLjava/util/Map;Z)Ljava/lang/String;
public static synthetic fun renderSetCookieHeader$default (Ljava/lang/String;Ljava/lang/String;Lio/ktor/http/CookieEncoding;ILio/ktor/util/date/GMTDate;Ljava/lang/String;Ljava/lang/String;ZZLjava/util/Map;ZILjava/lang/Object;)Ljava/lang/String;
}
public final class io/ktor/http/DateUtilsKt {
public static final fun fromCookieToGmtDate (Ljava/lang/String;)Lio/ktor/util/date/GMTDate;
public static final fun fromHttpToGmtDate (Ljava/lang/String;)Lio/ktor/util/date/GMTDate;
public static final fun toHttpDate (Lio/ktor/util/date/GMTDate;)Ljava/lang/String;
}
public final class io/ktor/http/EmptyHeaders : io/ktor/http/Headers {
public static final field INSTANCE Lio/ktor/http/EmptyHeaders;
public fun contains (Ljava/lang/String;)Z
public fun contains (Ljava/lang/String;Ljava/lang/String;)Z
public fun entries ()Ljava/util/Set;
public fun forEach (Lkotlin/jvm/functions/Function2;)V
public fun get (Ljava/lang/String;)Ljava/lang/String;
public fun getAll (Ljava/lang/String;)Ljava/util/List;
public fun getCaseInsensitiveName ()Z
public fun isEmpty ()Z
public fun names ()Ljava/util/Set;
public fun toString ()Ljava/lang/String;
}
public final class io/ktor/http/FileContentTypeJvmKt {
public static final fun defaultForFile (Lio/ktor/http/ContentType$Companion;Ljava/io/File;)Lio/ktor/http/ContentType;
public static final fun defaultForFile (Lio/ktor/http/ContentType$Companion;Ljava/nio/file/Path;)Lio/ktor/http/ContentType;
}
public final class io/ktor/http/FileContentTypeKt {
public static final fun defaultForFileExtension (Lio/ktor/http/ContentType$Companion;Ljava/lang/String;)Lio/ktor/http/ContentType;
public static final fun defaultForFilePath (Lio/ktor/http/ContentType$Companion;Ljava/lang/String;)Lio/ktor/http/ContentType;
public static final fun fileExtensions (Lio/ktor/http/ContentType;)Ljava/util/List;
public static final fun fromFileExtension (Lio/ktor/http/ContentType$Companion;Ljava/lang/String;)Ljava/util/List;
public static final fun fromFilePath (Lio/ktor/http/ContentType$Companion;Ljava/lang/String;)Ljava/util/List;
}
public final class io/ktor/http/HeaderValue {
public fun <init> (Ljava/lang/String;Ljava/util/List;)V
public synthetic fun <init> (Ljava/lang/String;Ljava/util/List;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/lang/String;
public final fun component2 ()Ljava/util/List;
public final fun copy (Ljava/lang/String;Ljava/util/List;)Lio/ktor/http/HeaderValue;
public static synthetic fun copy$default (Lio/ktor/http/HeaderValue;Ljava/lang/String;Ljava/util/List;ILjava/lang/Object;)Lio/ktor/http/HeaderValue;
public fun equals (Ljava/lang/Object;)Z
public final fun getParams ()Ljava/util/List;
public final fun getQuality ()D
public final fun getValue ()Ljava/lang/String;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public final class io/ktor/http/HeaderValueParam {
public fun <init> (Ljava/lang/String;Ljava/lang/String;)V
public fun <init> (Ljava/lang/String;Ljava/lang/String;Z)V
public final fun component1 ()Ljava/lang/String;
public final fun component2 ()Ljava/lang/String;
public final fun component3 ()Z
public final fun copy (Ljava/lang/String;Ljava/lang/String;Z)Lio/ktor/http/HeaderValueParam;
public static synthetic fun copy$default (Lio/ktor/http/HeaderValueParam;Ljava/lang/String;Ljava/lang/String;ZILjava/lang/Object;)Lio/ktor/http/HeaderValueParam;
public fun equals (Ljava/lang/Object;)Z
public final fun getEscapeValue ()Z
public final fun getName ()Ljava/lang/String;
public final fun getValue ()Ljava/lang/String;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public abstract class io/ktor/http/HeaderValueWithParameters {
public static final field Companion Lio/ktor/http/HeaderValueWithParameters$Companion;
public fun <init> (Ljava/lang/String;Ljava/util/List;)V
public synthetic fun <init> (Ljava/lang/String;Ljava/util/List;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
protected final fun getContent ()Ljava/lang/String;
public final fun getParameters ()Ljava/util/List;
public final fun parameter (Ljava/lang/String;)Ljava/lang/String;
public fun toString ()Ljava/lang/String;
}
public final class io/ktor/http/HeaderValueWithParameters$Companion {
public final fun parse (Ljava/lang/String;Lkotlin/jvm/functions/Function2;)Ljava/lang/Object;
}
public final class io/ktor/http/HeaderValueWithParametersKt {
public static final fun append (Lio/ktor/util/StringValuesBuilder;Ljava/lang/String;Lio/ktor/http/HeaderValueWithParameters;)V
public static final fun escapeIfNeeded (Ljava/lang/String;)Ljava/lang/String;
public static final fun quote (Ljava/lang/String;)Ljava/lang/String;
}
public abstract interface class io/ktor/http/Headers : io/ktor/util/StringValues {
public static final field Companion Lio/ktor/http/Headers$Companion;
}
public final class io/ktor/http/Headers$Companion {
public final fun build (Lkotlin/jvm/functions/Function1;)Lio/ktor/http/Headers;
public final fun getEmpty ()Lio/ktor/http/Headers;
}
public final class io/ktor/http/Headers$DefaultImpls {
public static fun contains (Lio/ktor/http/Headers;Ljava/lang/String;)Z
public static fun contains (Lio/ktor/http/Headers;Ljava/lang/String;Ljava/lang/String;)Z
public static fun forEach (Lio/ktor/http/Headers;Lkotlin/jvm/functions/Function2;)V
public static fun get (Lio/ktor/http/Headers;Ljava/lang/String;)Ljava/lang/String;
}
public final class io/ktor/http/HeadersBuilder : io/ktor/util/StringValuesBuilderImpl {
public fun <init> ()V
public fun <init> (I)V
public synthetic fun <init> (IILkotlin/jvm/internal/DefaultConstructorMarker;)V
public fun build ()Lio/ktor/http/Headers;
public synthetic fun build ()Lio/ktor/util/StringValues;
}
public final class io/ktor/http/HeadersImpl : io/ktor/util/StringValuesImpl, io/ktor/http/Headers {
public fun <init> ()V
public fun <init> (Ljava/util/Map;)V
public synthetic fun <init> (Ljava/util/Map;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public fun toString ()Ljava/lang/String;
}
public final class io/ktor/http/HeadersKt {
public static final fun headers (Lkotlin/jvm/functions/Function1;)Lio/ktor/http/Headers;
public static final fun headersOf ()Lio/ktor/http/Headers;
public static final fun headersOf (Ljava/lang/String;Ljava/lang/String;)Lio/ktor/http/Headers;
public static final fun headersOf (Ljava/lang/String;Ljava/util/List;)Lio/ktor/http/Headers;
public static final fun headersOf ([Lkotlin/Pair;)Lio/ktor/http/Headers;
}
public final class io/ktor/http/HeadersSingleImpl : io/ktor/util/StringValuesSingleImpl, io/ktor/http/Headers {
public fun <init> (Ljava/lang/String;Ljava/util/List;)V
public fun toString ()Ljava/lang/String;
}
public final class io/ktor/http/HttpHeaderValueParserKt {
public static final fun parseAndSortContentTypeHeader (Ljava/lang/String;)Ljava/util/List;
public static final fun parseAndSortHeader (Ljava/lang/String;)Ljava/util/List;
public static final fun parseHeaderValue (Ljava/lang/String;)Ljava/util/List;
public static final fun parseHeaderValue (Ljava/lang/String;Z)Ljava/util/List;
public static final fun toHeaderParamsList (Ljava/lang/Iterable;)Ljava/util/List;
}
public final class io/ktor/http/HttpHeaders {
public static final field INSTANCE Lio/ktor/http/HttpHeaders;
public final fun checkHeaderName (Ljava/lang/String;)V
public final fun checkHeaderValue (Ljava/lang/String;)V
public final fun getALPN ()Ljava/lang/String;
public final fun getAccept ()Ljava/lang/String;
public final fun getAcceptCharset ()Ljava/lang/String;
public final fun getAcceptEncoding ()Ljava/lang/String;
public final fun getAcceptLanguage ()Ljava/lang/String;
public final fun getAcceptRanges ()Ljava/lang/String;
public final fun getAccessControlAllowCredentials ()Ljava/lang/String;
public final fun getAccessControlAllowHeaders ()Ljava/lang/String;
public final fun getAccessControlAllowMethods ()Ljava/lang/String;
public final fun getAccessControlAllowOrigin ()Ljava/lang/String;
public final fun getAccessControlExposeHeaders ()Ljava/lang/String;
public final fun getAccessControlMaxAge ()Ljava/lang/String;
public final fun getAccessControlRequestHeaders ()Ljava/lang/String;
public final fun getAccessControlRequestMethod ()Ljava/lang/String;
public final fun getAge ()Ljava/lang/String;
public final fun getAllow ()Ljava/lang/String;
public final fun getAuthenticationInfo ()Ljava/lang/String;
public final fun getAuthorization ()Ljava/lang/String;
public final fun getCacheControl ()Ljava/lang/String;
public final fun getConnection ()Ljava/lang/String;
public final fun getContentDisposition ()Ljava/lang/String;
public final fun getContentEncoding ()Ljava/lang/String;
public final fun getContentLanguage ()Ljava/lang/String;
public final fun getContentLength ()Ljava/lang/String;
public final fun getContentLocation ()Ljava/lang/String;
public final fun getContentRange ()Ljava/lang/String;
public final fun getContentType ()Ljava/lang/String;
public final fun getCookie ()Ljava/lang/String;
public final fun getDASL ()Ljava/lang/String;
public final fun getDAV ()Ljava/lang/String;
public final fun getDate ()Ljava/lang/String;
public final fun getDepth ()Ljava/lang/String;
public final fun getDestination ()Ljava/lang/String;
public final fun getETag ()Ljava/lang/String;
public final fun getExpect ()Ljava/lang/String;
public final fun getExpires ()Ljava/lang/String;
public final fun getForwarded ()Ljava/lang/String;
public final fun getFrom ()Ljava/lang/String;
public final fun getHTTP2Settings ()Ljava/lang/String;
public final fun getHost ()Ljava/lang/String;
public final fun getIf ()Ljava/lang/String;
public final fun getIfMatch ()Ljava/lang/String;
public final fun getIfModifiedSince ()Ljava/lang/String;
public final fun getIfNoneMatch ()Ljava/lang/String;
public final fun getIfRange ()Ljava/lang/String;
public final fun getIfScheduleTagMatch ()Ljava/lang/String;
public final fun getIfUnmodifiedSince ()Ljava/lang/String;
public final fun getLastModified ()Ljava/lang/String;
public final fun getLink ()Ljava/lang/String;
public final fun getLocation ()Ljava/lang/String;
public final fun getLockToken ()Ljava/lang/String;
public final fun getMIMEVersion ()Ljava/lang/String;
public final fun getMaxForwards ()Ljava/lang/String;
public final fun getOrderingType ()Ljava/lang/String;
public final fun getOrigin ()Ljava/lang/String;
public final fun getOverwrite ()Ljava/lang/String;
public final fun getPosition ()Ljava/lang/String;
public final fun getPragma ()Ljava/lang/String;
public final fun getPrefer ()Ljava/lang/String;
public final fun getPreferenceApplied ()Ljava/lang/String;
public final fun getProxyAuthenticate ()Ljava/lang/String;
public final fun getProxyAuthenticationInfo ()Ljava/lang/String;
public final fun getProxyAuthorization ()Ljava/lang/String;
public final fun getPublicKeyPins ()Ljava/lang/String;
public final fun getPublicKeyPinsReportOnly ()Ljava/lang/String;
public final fun getRange ()Ljava/lang/String;
public final fun getReferrer ()Ljava/lang/String;
public final fun getRetryAfter ()Ljava/lang/String;
public final fun getSLUG ()Ljava/lang/String;
public final fun getScheduleReply ()Ljava/lang/String;
public final fun getScheduleTag ()Ljava/lang/String;
public final fun getSecWebSocketAccept ()Ljava/lang/String;
public final fun getSecWebSocketExtensions ()Ljava/lang/String;
public final fun getSecWebSocketKey ()Ljava/lang/String;
public final fun getSecWebSocketProtocol ()Ljava/lang/String;
public final fun getSecWebSocketVersion ()Ljava/lang/String;
public final fun getServer ()Ljava/lang/String;
public final fun getSetCookie ()Ljava/lang/String;
public final fun getStrictTransportSecurity ()Ljava/lang/String;
public final fun getTE ()Ljava/lang/String;
public final fun getTimeout ()Ljava/lang/String;
public final fun getTrailer ()Ljava/lang/String;
public final fun getTransferEncoding ()Ljava/lang/String;
public final fun getUnsafeHeaders ()[Ljava/lang/String;
public final fun getUnsafeHeadersList ()Ljava/util/List;
public final fun getUpgrade ()Ljava/lang/String;
public final fun getUserAgent ()Ljava/lang/String;
public final fun getVary ()Ljava/lang/String;
public final fun getVia ()Ljava/lang/String;
public final fun getWWWAuthenticate ()Ljava/lang/String;
public final fun getWarning ()Ljava/lang/String;
public final fun getXCorrelationId ()Ljava/lang/String;
public final fun getXForwardedFor ()Ljava/lang/String;
public final fun getXForwardedHost ()Ljava/lang/String;
public final fun getXForwardedPort ()Ljava/lang/String;
public final fun getXForwardedProto ()Ljava/lang/String;
public final fun getXForwardedServer ()Ljava/lang/String;
public final fun getXHttpMethodOverride ()Ljava/lang/String;
public final fun getXRequestId ()Ljava/lang/String;
public final fun getXTotalCount ()Ljava/lang/String;
public final fun isUnsafe (Ljava/lang/String;)Z
}
public abstract interface class io/ktor/http/HttpMessage {
public abstract fun getHeaders ()Lio/ktor/http/Headers;
}
public abstract interface class io/ktor/http/HttpMessageBuilder {
public abstract fun getHeaders ()Lio/ktor/http/HeadersBuilder;
}
public final class io/ktor/http/HttpMessagePropertiesJvmKt {
public static final fun date (Lio/ktor/http/HttpMessage;)Ljava/util/Date;
public static final fun expires (Lio/ktor/http/HttpMessage;)Ljava/util/Date;
public static final fun expires (Lio/ktor/http/HttpMessageBuilder;)Ljava/util/Date;
public static final fun ifModifiedSince (Lio/ktor/http/HttpMessageBuilder;Ljava/util/Date;)V
public static final fun lastModified (Lio/ktor/http/HttpMessage;)Ljava/util/Date;
public static final fun lastModified (Lio/ktor/http/HttpMessageBuilder;)Ljava/util/Date;
}
public final class io/ktor/http/HttpMessagePropertiesKt {
public static final fun cacheControl (Lio/ktor/http/HttpMessage;)Ljava/util/List;
public static final fun charset (Lio/ktor/http/HttpMessage;)Ljava/nio/charset/Charset;
public static final fun charset (Lio/ktor/http/HttpMessageBuilder;)Ljava/nio/charset/Charset;
public static final fun charset (Lio/ktor/http/HttpMessageBuilder;Ljava/nio/charset/Charset;)Lkotlin/Unit;
public static final fun contentLength (Lio/ktor/http/HttpMessage;)Ljava/lang/Long;
public static final fun contentLength (Lio/ktor/http/HttpMessageBuilder;)Ljava/lang/Long;
public static final fun contentLength (Lio/ktor/http/HttpMessageBuilder;I)V
public static final fun contentType (Lio/ktor/http/HttpMessage;)Lio/ktor/http/ContentType;
public static final fun contentType (Lio/ktor/http/HttpMessageBuilder;)Lio/ktor/http/ContentType;
public static final fun contentType (Lio/ktor/http/HttpMessageBuilder;Lio/ktor/http/ContentType;)V
public static final fun cookies (Lio/ktor/http/HttpMessageBuilder;)Ljava/util/List;
public static final fun etag (Lio/ktor/http/HttpMessage;)Ljava/lang/String;
public static final fun etag (Lio/ktor/http/HttpMessageBuilder;)Ljava/lang/String;
public static final fun ifNoneMatch (Lio/ktor/http/HttpMessageBuilder;Ljava/lang/String;)V
public static final fun maxAge (Lio/ktor/http/HttpMessageBuilder;I)V
public static final fun setCookie (Lio/ktor/http/HttpMessage;)Ljava/util/List;
public static final fun userAgent (Lio/ktor/http/HttpMessageBuilder;Ljava/lang/String;)V
public static final fun vary (Lio/ktor/http/HttpMessage;)Ljava/util/List;
public static final fun vary (Lio/ktor/http/HttpMessageBuilder;)Ljava/util/List;
}
public final class io/ktor/http/HttpMethod {
public static final field Companion Lio/ktor/http/HttpMethod$Companion;
public fun <init> (Ljava/lang/String;)V
public final fun component1 ()Ljava/lang/String;
public final fun copy (Ljava/lang/String;)Lio/ktor/http/HttpMethod;
public static synthetic fun copy$default (Lio/ktor/http/HttpMethod;Ljava/lang/String;ILjava/lang/Object;)Lio/ktor/http/HttpMethod;
public fun equals (Ljava/lang/Object;)Z
public final fun getValue ()Ljava/lang/String;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public final class io/ktor/http/HttpMethod$Companion {
public final fun getDefaultMethods ()Ljava/util/List;
public final fun getDelete ()Lio/ktor/http/HttpMethod;
public final fun getGet ()Lio/ktor/http/HttpMethod;
public final fun getHead ()Lio/ktor/http/HttpMethod;
public final fun getOptions ()Lio/ktor/http/HttpMethod;
public final fun getPatch ()Lio/ktor/http/HttpMethod;
public final fun getPost ()Lio/ktor/http/HttpMethod;
public final fun getPut ()Lio/ktor/http/HttpMethod;
public final fun parse (Ljava/lang/String;)Lio/ktor/http/HttpMethod;
}
public final class io/ktor/http/HttpProtocolVersion {
public static final field Companion Lio/ktor/http/HttpProtocolVersion$Companion;
public fun <init> (Ljava/lang/String;II)V
public final fun component1 ()Ljava/lang/String;
public final fun component2 ()I
public final fun component3 ()I
public final fun copy (Ljava/lang/String;II)Lio/ktor/http/HttpProtocolVersion;
public static synthetic fun copy$default (Lio/ktor/http/HttpProtocolVersion;Ljava/lang/String;IIILjava/lang/Object;)Lio/ktor/http/HttpProtocolVersion;
public fun equals (Ljava/lang/Object;)Z
public final fun getMajor ()I
public final fun getMinor ()I
public final fun getName ()Ljava/lang/String;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public final class io/ktor/http/HttpProtocolVersion$Companion {
public final fun fromValue (Ljava/lang/String;II)Lio/ktor/http/HttpProtocolVersion;
public final fun getHTTP_1_0 ()Lio/ktor/http/HttpProtocolVersion;
public final fun getHTTP_1_1 ()Lio/ktor/http/HttpProtocolVersion;
public final fun getHTTP_2_0 ()Lio/ktor/http/HttpProtocolVersion;
public final fun getQUIC ()Lio/ktor/http/HttpProtocolVersion;
public final fun getSPDY_3 ()Lio/ktor/http/HttpProtocolVersion;
public final fun parse (Ljava/lang/CharSequence;)Lio/ktor/http/HttpProtocolVersion;
}
public final class io/ktor/http/HttpStatusCode : java/lang/Comparable {
public static final field Companion Lio/ktor/http/HttpStatusCode$Companion;
public fun <init> (ILjava/lang/String;)V
public fun compareTo (Lio/ktor/http/HttpStatusCode;)I
public synthetic fun compareTo (Ljava/lang/Object;)I
public final fun component1 ()I
public final fun component2 ()Ljava/lang/String;
public final fun copy (ILjava/lang/String;)Lio/ktor/http/HttpStatusCode;
public static synthetic fun copy$default (Lio/ktor/http/HttpStatusCode;ILjava/lang/String;ILjava/lang/Object;)Lio/ktor/http/HttpStatusCode;
public final fun description (Ljava/lang/String;)Lio/ktor/http/HttpStatusCode;
public fun equals (Ljava/lang/Object;)Z
public final fun getDescription ()Ljava/lang/String;
public final fun getValue ()I
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public final class io/ktor/http/HttpStatusCode$Companion {
public final fun fromValue (I)Lio/ktor/http/HttpStatusCode;
public final fun getAccepted ()Lio/ktor/http/HttpStatusCode;
public final fun getAllStatusCodes ()Ljava/util/List;
public final fun getBadGateway ()Lio/ktor/http/HttpStatusCode;
public final fun getBadRequest ()Lio/ktor/http/HttpStatusCode;
public final fun getConflict ()Lio/ktor/http/HttpStatusCode;
public final fun getContinue ()Lio/ktor/http/HttpStatusCode;
public final fun getCreated ()Lio/ktor/http/HttpStatusCode;
public final fun getExpectationFailed ()Lio/ktor/http/HttpStatusCode;
public final fun getFailedDependency ()Lio/ktor/http/HttpStatusCode;
public final fun getForbidden ()Lio/ktor/http/HttpStatusCode;
public final fun getFound ()Lio/ktor/http/HttpStatusCode;
public final fun getGatewayTimeout ()Lio/ktor/http/HttpStatusCode;
public final fun getGone ()Lio/ktor/http/HttpStatusCode;
public final fun getInsufficientStorage ()Lio/ktor/http/HttpStatusCode;
public final fun getInternalServerError ()Lio/ktor/http/HttpStatusCode;
public final fun getLengthRequired ()Lio/ktor/http/HttpStatusCode;
public final fun getLocked ()Lio/ktor/http/HttpStatusCode;
public final fun getMethodNotAllowed ()Lio/ktor/http/HttpStatusCode;
public final fun getMovedPermanently ()Lio/ktor/http/HttpStatusCode;
public final fun getMultiStatus ()Lio/ktor/http/HttpStatusCode;
public final fun getMultipleChoices ()Lio/ktor/http/HttpStatusCode;
public final fun getNoContent ()Lio/ktor/http/HttpStatusCode;
public final fun getNonAuthoritativeInformation ()Lio/ktor/http/HttpStatusCode;
public final fun getNotAcceptable ()Lio/ktor/http/HttpStatusCode;
public final fun getNotFound ()Lio/ktor/http/HttpStatusCode;
public final fun getNotImplemented ()Lio/ktor/http/HttpStatusCode;
public final fun getNotModified ()Lio/ktor/http/HttpStatusCode;
public final fun getOK ()Lio/ktor/http/HttpStatusCode;
public final fun getPartialContent ()Lio/ktor/http/HttpStatusCode;
public final fun getPayloadTooLarge ()Lio/ktor/http/HttpStatusCode;
public final fun getPaymentRequired ()Lio/ktor/http/HttpStatusCode;
public final fun getPermanentRedirect ()Lio/ktor/http/HttpStatusCode;
public final fun getPreconditionFailed ()Lio/ktor/http/HttpStatusCode;
public final fun getProcessing ()Lio/ktor/http/HttpStatusCode;
public final fun getProxyAuthenticationRequired ()Lio/ktor/http/HttpStatusCode;
public final fun getRequestHeaderFieldTooLarge ()Lio/ktor/http/HttpStatusCode;
public final fun getRequestTimeout ()Lio/ktor/http/HttpStatusCode;
public final fun getRequestURITooLong ()Lio/ktor/http/HttpStatusCode;
public final fun getRequestedRangeNotSatisfiable ()Lio/ktor/http/HttpStatusCode;
public final fun getResetContent ()Lio/ktor/http/HttpStatusCode;
public final fun getSeeOther ()Lio/ktor/http/HttpStatusCode;
public final fun getServiceUnavailable ()Lio/ktor/http/HttpStatusCode;
public final fun getSwitchProxy ()Lio/ktor/http/HttpStatusCode;
public final fun getSwitchingProtocols ()Lio/ktor/http/HttpStatusCode;
public final fun getTemporaryRedirect ()Lio/ktor/http/HttpStatusCode;
public final fun getTooManyRequests ()Lio/ktor/http/HttpStatusCode;
public final fun getUnauthorized ()Lio/ktor/http/HttpStatusCode;
public final fun getUnprocessableEntity ()Lio/ktor/http/HttpStatusCode;
public final fun getUnsupportedMediaType ()Lio/ktor/http/HttpStatusCode;
public final fun getUpgradeRequired ()Lio/ktor/http/HttpStatusCode;
public final fun getUseProxy ()Lio/ktor/http/HttpStatusCode;
public final fun getVariantAlsoNegotiates ()Lio/ktor/http/HttpStatusCode;
public final fun getVersionNotSupported ()Lio/ktor/http/HttpStatusCode;
}
public final class io/ktor/http/HttpStatusCodeKt {
public static final fun getExceptionFailed (Lio/ktor/http/HttpStatusCode$Companion;)Lio/ktor/http/HttpStatusCode;
public static final fun isSuccess (Lio/ktor/http/HttpStatusCode;)Z
}
public final class io/ktor/http/HttpUrlEncodedKt {
public static final fun formUrlEncode (Lio/ktor/http/Parameters;)Ljava/lang/String;
public static final fun formUrlEncode (Ljava/util/List;)Ljava/lang/String;
public static final fun formUrlEncodeTo (Lio/ktor/http/Parameters;Ljava/lang/Appendable;)V
public static final fun formUrlEncodeTo (Ljava/util/List;Ljava/lang/Appendable;)V
public static final fun parseUrlEncodedParameters (Ljava/lang/String;Ljava/nio/charset/Charset;I)Lio/ktor/http/Parameters;
public static synthetic fun parseUrlEncodedParameters$default (Ljava/lang/String;Ljava/nio/charset/Charset;IILjava/lang/Object;)Lio/ktor/http/Parameters;
}
public final class io/ktor/http/IllegalHeaderNameException : java/lang/IllegalArgumentException {
public fun <init> (Ljava/lang/String;I)V
public final fun getHeaderName ()Ljava/lang/String;
public final fun getPosition ()I
}
public final class io/ktor/http/IllegalHeaderValueException : java/lang/IllegalArgumentException {
public fun <init> (Ljava/lang/String;I)V
public final fun getHeaderValue ()Ljava/lang/String;
public final fun getPosition ()I
}
public final class io/ktor/http/IpParserKt {
public static final fun hostIsIp (Ljava/lang/String;)Z
}
public final class io/ktor/http/LinkHeader : io/ktor/http/HeaderValueWithParameters {
public fun <init> (Ljava/lang/String;Ljava/lang/String;)V
public fun <init> (Ljava/lang/String;Ljava/util/List;)V
public fun <init> (Ljava/lang/String;Ljava/util/List;Lio/ktor/http/ContentType;)V
public fun <init> (Ljava/lang/String;[Ljava/lang/String;)V
public final fun getUri ()Ljava/lang/String;
}
public final class io/ktor/http/LinkHeader$Parameters {
public static final field Anchor Ljava/lang/String;
public static final field HrefLang Ljava/lang/String;
public static final field INSTANCE Lio/ktor/http/LinkHeader$Parameters;
public static final field Media Ljava/lang/String;
public static final field Rel Ljava/lang/String;
public static final field Rev Ljava/lang/String;
public static final field Title Ljava/lang/String;
public static final field Type Ljava/lang/String;
}
public final class io/ktor/http/LinkHeader$Rel {
public static final field DnsPrefetch Ljava/lang/String;
public static final field INSTANCE Lio/ktor/http/LinkHeader$Rel;
public static final field Next Ljava/lang/String;
public static final field PreConnect Ljava/lang/String;
public static final field PreLoad Ljava/lang/String;
public static final field PreRender Ljava/lang/String;
public static final field Prefetch Ljava/lang/String;
public static final field Stylesheet Ljava/lang/String;
}
public abstract interface class io/ktor/http/Parameters : io/ktor/util/StringValues {
public static final field Companion Lio/ktor/http/Parameters$Companion;
}
public final class io/ktor/http/Parameters$Companion {
public final fun build (Lkotlin/jvm/functions/Function1;)Lio/ktor/http/Parameters;
public final fun getEmpty ()Lio/ktor/http/Parameters;
}
public final class io/ktor/http/Parameters$DefaultImpls {
public static fun contains (Lio/ktor/http/Parameters;Ljava/lang/String;)Z
public static fun contains (Lio/ktor/http/Parameters;Ljava/lang/String;Ljava/lang/String;)Z
public static fun forEach (Lio/ktor/http/Parameters;Lkotlin/jvm/functions/Function2;)V
public static fun get (Lio/ktor/http/Parameters;Ljava/lang/String;)Ljava/lang/String;
}
public abstract interface class io/ktor/http/ParametersBuilder : io/ktor/util/StringValuesBuilder {
public abstract fun build ()Lio/ktor/http/Parameters;
}
public final class io/ktor/http/ParametersBuilderImpl : io/ktor/util/StringValuesBuilderImpl, io/ktor/http/ParametersBuilder {
public fun <init> ()V
public fun <init> (I)V
public synthetic fun <init> (IILkotlin/jvm/internal/DefaultConstructorMarker;)V
public fun build ()Lio/ktor/http/Parameters;
public synthetic fun build ()Lio/ktor/util/StringValues;
}
public final class io/ktor/http/ParametersImpl : io/ktor/util/StringValuesImpl, io/ktor/http/Parameters {
public fun <init> ()V
public fun <init> (Ljava/util/Map;)V
public synthetic fun <init> (Ljava/util/Map;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public fun toString ()Ljava/lang/String;
}
public final class io/ktor/http/ParametersKt {
public static final fun ParametersBuilder (I)Lio/ktor/http/ParametersBuilder;
public static synthetic fun ParametersBuilder$default (IILjava/lang/Object;)Lio/ktor/http/ParametersBuilder;
public static final fun parameters (Lkotlin/jvm/functions/Function1;)Lio/ktor/http/Parameters;
public static final fun parametersOf ()Lio/ktor/http/Parameters;
public static final fun parametersOf (Ljava/lang/String;Ljava/lang/String;)Lio/ktor/http/Parameters;
public static final fun parametersOf (Ljava/lang/String;Ljava/util/List;)Lio/ktor/http/Parameters;
public static final fun parametersOf (Ljava/util/Map;)Lio/ktor/http/Parameters;
public static final fun parametersOf ([Lkotlin/Pair;)Lio/ktor/http/Parameters;
public static final fun plus (Lio/ktor/http/Parameters;Lio/ktor/http/Parameters;)Lio/ktor/http/Parameters;
}
public final class io/ktor/http/ParametersSingleImpl : io/ktor/util/StringValuesSingleImpl, io/ktor/http/Parameters {
public fun <init> (Ljava/lang/String;Ljava/util/List;)V
public fun toString ()Ljava/lang/String;
}
public final class io/ktor/http/QueryKt {
public static final fun parseQueryString (Ljava/lang/String;IIZ)Lio/ktor/http/Parameters;
public static synthetic fun parseQueryString$default (Ljava/lang/String;IIZILjava/lang/Object;)Lio/ktor/http/Parameters;
}
public final class io/ktor/http/RangeUnits : java/lang/Enum {
public static final field Bytes Lio/ktor/http/RangeUnits;
public static final field None Lio/ktor/http/RangeUnits;
public final fun getUnitToken ()Ljava/lang/String;
public static fun valueOf (Ljava/lang/String;)Lio/ktor/http/RangeUnits;
public static fun values ()[Lio/ktor/http/RangeUnits;
}
public final class io/ktor/http/RangesKt {
public static final fun parseRangesSpecifier (Ljava/lang/String;)Lio/ktor/http/RangesSpecifier;
}
public final class io/ktor/http/RangesSpecifier {
public fun <init> (Lio/ktor/http/RangeUnits;Ljava/util/List;)V
public fun <init> (Ljava/lang/String;Ljava/util/List;)V
public synthetic fun <init> (Ljava/lang/String;Ljava/util/List;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/lang/String;
public final fun component2 ()Ljava/util/List;
public final fun copy (Ljava/lang/String;Ljava/util/List;)Lio/ktor/http/RangesSpecifier;
public static synthetic fun copy$default (Lio/ktor/http/RangesSpecifier;Ljava/lang/String;Ljava/util/List;ILjava/lang/Object;)Lio/ktor/http/RangesSpecifier;
public fun equals (Ljava/lang/Object;)Z
public final fun getRanges ()Ljava/util/List;
public final fun getUnit ()Ljava/lang/String;
public fun hashCode ()I
public final fun isValid (Lkotlin/jvm/functions/Function1;)Z
public static synthetic fun isValid$default (Lio/ktor/http/RangesSpecifier;Lkotlin/jvm/functions/Function1;ILjava/lang/Object;)Z
public final fun merge (J)Ljava/util/List;
public final fun merge (JI)Ljava/util/List;
public static synthetic fun merge$default (Lio/ktor/http/RangesSpecifier;JIILjava/lang/Object;)Ljava/util/List;
public final fun mergeToSingle (J)Lkotlin/ranges/LongRange;
public fun toString ()Ljava/lang/String;
}
public abstract interface class io/ktor/http/RequestConnectionPoint {
public abstract fun getHost ()Ljava/lang/String;
public abstract fun getLocalAddress ()Ljava/lang/String;
public abstract fun getLocalHost ()Ljava/lang/String;
public abstract fun getLocalPort ()I
public abstract fun getMethod ()Lio/ktor/http/HttpMethod;
public abstract fun getPort ()I
public abstract fun getRemoteAddress ()Ljava/lang/String;
public abstract fun getRemoteHost ()Ljava/lang/String;
public abstract fun getRemotePort ()I
public abstract fun getScheme ()Ljava/lang/String;
public abstract fun getServerHost ()Ljava/lang/String;
public abstract fun getServerPort ()I
public abstract fun getUri ()Ljava/lang/String;
public abstract fun getVersion ()Ljava/lang/String;
}
public final class io/ktor/http/URLBuilder {
public static final field Companion Lio/ktor/http/URLBuilder$Companion;
public fun <init> ()V
public fun <init> (Lio/ktor/http/URLProtocol;Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;Ljava/util/List;Lio/ktor/http/Parameters;Ljava/lang/String;Z)V
public synthetic fun <init> (Lio/ktor/http/URLProtocol;Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;Ljava/util/List;Lio/ktor/http/Parameters;Ljava/lang/String;ZILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun build ()Lio/ktor/http/Url;
public final fun buildString ()Ljava/lang/String;
public final fun getEncodedFragment ()Ljava/lang/String;
public final fun getEncodedParameters ()Lio/ktor/http/ParametersBuilder;
public final fun getEncodedPassword ()Ljava/lang/String;
public final fun getEncodedPathSegments ()Ljava/util/List;
public final fun getEncodedUser ()Ljava/lang/String;
public final fun getFragment ()Ljava/lang/String;
public final fun getHost ()Ljava/lang/String;
public final fun getParameters ()Lio/ktor/http/ParametersBuilder;
public final fun getPassword ()Ljava/lang/String;
public final fun getPathSegments ()Ljava/util/List;
public final fun getPort ()I
public final fun getProtocol ()Lio/ktor/http/URLProtocol;
public final fun getTrailingQuery ()Z
public final fun getUser ()Ljava/lang/String;
public final fun setEncodedFragment (Ljava/lang/String;)V
public final fun setEncodedParameters (Lio/ktor/http/ParametersBuilder;)V
public final fun setEncodedPassword (Ljava/lang/String;)V
public final fun setEncodedPathSegments (Ljava/util/List;)V
public final fun setEncodedUser (Ljava/lang/String;)V
public final fun setFragment (Ljava/lang/String;)V
public final fun setHost (Ljava/lang/String;)V
public final fun setPassword (Ljava/lang/String;)V
public final fun setPathSegments (Ljava/util/List;)V
public final fun setPort (I)V
public final fun setProtocol (Lio/ktor/http/URLProtocol;)V
public final fun setTrailingQuery (Z)V
public final fun setUser (Ljava/lang/String;)V
public fun toString ()Ljava/lang/String;
}
public final class io/ktor/http/URLBuilder$Companion {
}
public final class io/ktor/http/URLBuilderJvmKt {
public static final fun getOrigin (Lio/ktor/http/URLBuilder$Companion;)Ljava/lang/String;
public static final fun invoke (Lio/ktor/http/Url$Companion;Ljava/lang/String;)Lio/ktor/http/Url;
}
public final class io/ktor/http/URLBuilderKt {
public static final field DEFAULT_PORT I
public static final fun appendEncodedPathSegments (Lio/ktor/http/URLBuilder;Ljava/util/List;)Lio/ktor/http/URLBuilder;
public static final fun appendEncodedPathSegments (Lio/ktor/http/URLBuilder;[Ljava/lang/String;)Lio/ktor/http/URLBuilder;
public static final synthetic fun appendPathSegments (Lio/ktor/http/URLBuilder;Ljava/util/List;)Lio/ktor/http/URLBuilder;
public static final fun appendPathSegments (Lio/ktor/http/URLBuilder;Ljava/util/List;Z)Lio/ktor/http/URLBuilder;
public static final synthetic fun appendPathSegments (Lio/ktor/http/URLBuilder;[Ljava/lang/String;)Lio/ktor/http/URLBuilder;
public static final fun appendPathSegments (Lio/ktor/http/URLBuilder;[Ljava/lang/String;Z)Lio/ktor/http/URLBuilder;
public static synthetic fun appendPathSegments$default (Lio/ktor/http/URLBuilder;Ljava/util/List;ZILjava/lang/Object;)Lio/ktor/http/URLBuilder;
public static synthetic fun appendPathSegments$default (Lio/ktor/http/URLBuilder;[Ljava/lang/String;ZILjava/lang/Object;)Lio/ktor/http/URLBuilder;
public static final fun clone (Lio/ktor/http/URLBuilder;)Lio/ktor/http/URLBuilder;
public static final fun getAuthority (Lio/ktor/http/URLBuilder;)Ljava/lang/String;
public static final fun getEncodedPath (Lio/ktor/http/URLBuilder;)Ljava/lang/String;
public static final fun path (Lio/ktor/http/URLBuilder;[Ljava/lang/String;)V
public static final fun pathComponents (Lio/ktor/http/URLBuilder;Ljava/util/List;)Lio/ktor/http/URLBuilder;
public static final fun pathComponents (Lio/ktor/http/URLBuilder;[Ljava/lang/String;)Lio/ktor/http/URLBuilder;
public static final fun set (Lio/ktor/http/URLBuilder;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Integer;Ljava/lang/String;Lkotlin/jvm/functions/Function1;)V
public static synthetic fun set$default (Lio/ktor/http/URLBuilder;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Integer;Ljava/lang/String;Lkotlin/jvm/functions/Function1;ILjava/lang/Object;)V
public static final fun setEncodedPath (Lio/ktor/http/URLBuilder;Ljava/lang/String;)V
}
public final class io/ktor/http/URLDecodeException : java/lang/Exception {
public fun <init> (Ljava/lang/String;)V
}
public final class io/ktor/http/URLParserException : java/lang/IllegalStateException {
public fun <init> (Ljava/lang/String;Ljava/lang/Throwable;)V
}
public final class io/ktor/http/URLParserKt {
public static final fun takeFrom (Lio/ktor/http/URLBuilder;Ljava/lang/String;)Lio/ktor/http/URLBuilder;
}
public final class io/ktor/http/URLProtocol {
public static final field Companion Lio/ktor/http/URLProtocol$Companion;
public fun <init> (Ljava/lang/String;I)V
public final fun component1 ()Ljava/lang/String;
public final fun component2 ()I
public final fun copy (Ljava/lang/String;I)Lio/ktor/http/URLProtocol;
public static synthetic fun copy$default (Lio/ktor/http/URLProtocol;Ljava/lang/String;IILjava/lang/Object;)Lio/ktor/http/URLProtocol;
public fun equals (Ljava/lang/Object;)Z
public final fun getDefaultPort ()I
public final fun getName ()Ljava/lang/String;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public final class io/ktor/http/URLProtocol$Companion {
public final fun createOrDefault (Ljava/lang/String;)Lio/ktor/http/URLProtocol;
public final fun getByName ()Ljava/util/Map;
public final fun getHTTP ()Lio/ktor/http/URLProtocol;
public final fun getHTTPS ()Lio/ktor/http/URLProtocol;
public final fun getSOCKS ()Lio/ktor/http/URLProtocol;
public final fun getWS ()Lio/ktor/http/URLProtocol;
public final fun getWSS ()Lio/ktor/http/URLProtocol;
}
public final class io/ktor/http/URLProtocolKt {
public static final fun isSecure (Lio/ktor/http/URLProtocol;)Z
public static final fun isWebsocket (Lio/ktor/http/URLProtocol;)Z
}
public final class io/ktor/http/URLUtilsJvmKt {
public static final fun Url (Ljava/net/URI;)Lio/ktor/http/Url;
public static final fun takeFrom (Lio/ktor/http/URLBuilder;Ljava/net/URI;)Lio/ktor/http/URLBuilder;
public static final fun takeFrom (Lio/ktor/http/URLBuilder;Ljava/net/URL;)Lio/ktor/http/URLBuilder;
public static final fun toURI (Lio/ktor/http/Url;)Ljava/net/URI;
}
public final class io/ktor/http/URLUtilsKt {