-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsdk-core.api
More file actions
2396 lines (2146 loc) · 166 KB
/
Copy pathsdk-core.api
File metadata and controls
2396 lines (2146 loc) · 166 KB
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 abstract interface class org/dexpace/sdk/core/client/AsyncHttpClient : java/lang/AutoCloseable {
public fun close ()V
public abstract fun executeAsync (Lorg/dexpace/sdk/core/http/request/Request;)Ljava/util/concurrent/CompletableFuture;
}
public final class org/dexpace/sdk/core/client/AsyncHttpClient$DefaultImpls {
public static fun close (Lorg/dexpace/sdk/core/client/AsyncHttpClient;)V
}
public final class org/dexpace/sdk/core/client/AsyncHttpClients {
public static final fun asAsync (Lorg/dexpace/sdk/core/client/HttpClient;Ljava/util/concurrent/Executor;)Lorg/dexpace/sdk/core/client/AsyncHttpClient;
public static final fun asBlocking (Lorg/dexpace/sdk/core/client/AsyncHttpClient;)Lorg/dexpace/sdk/core/client/HttpClient;
}
public abstract interface class org/dexpace/sdk/core/client/HttpClient : java/lang/AutoCloseable {
public fun close ()V
public abstract fun execute (Lorg/dexpace/sdk/core/http/request/Request;)Lorg/dexpace/sdk/core/http/response/Response;
}
public final class org/dexpace/sdk/core/client/HttpClient$DefaultImpls {
public static fun close (Lorg/dexpace/sdk/core/client/HttpClient;)V
}
public final class org/dexpace/sdk/core/config/Configuration {
public static final field Companion Lorg/dexpace/sdk/core/config/Configuration$Companion;
public static final field HTTPS_PROXY Ljava/lang/String;
public static final field HTTP_PROXY Ljava/lang/String;
public static final field LOG_LEVEL Ljava/lang/String;
public static final field MAX_RETRY_ATTEMPTS Ljava/lang/String;
public static final field NO_PROXY Ljava/lang/String;
public final fun get (Ljava/lang/String;)Ljava/lang/String;
public final fun get (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
public static synthetic fun get$default (Lorg/dexpace/sdk/core/config/Configuration;Ljava/lang/String;Ljava/lang/String;ILjava/lang/Object;)Ljava/lang/String;
public final fun getBoolean (Ljava/lang/String;Z)Z
public final fun getDuration (Ljava/lang/String;Ljava/time/Duration;)Ljava/time/Duration;
public static final fun getGlobalConfiguration ()Lorg/dexpace/sdk/core/config/Configuration;
public final fun getInt (Ljava/lang/String;I)I
public final fun getProperty (Ljava/lang/String;)Ljava/lang/String;
public static final fun setGlobalConfiguration (Lorg/dexpace/sdk/core/config/Configuration;)V
}
public final class org/dexpace/sdk/core/config/Configuration$Companion {
public final fun getGlobalConfiguration ()Lorg/dexpace/sdk/core/config/Configuration;
public final fun setGlobalConfiguration (Lorg/dexpace/sdk/core/config/Configuration;)V
}
public final class org/dexpace/sdk/core/config/ConfigurationBuilder {
public fun <init> ()V
public final fun build ()Lorg/dexpace/sdk/core/config/Configuration;
public final fun envSource (Ljava/util/function/Function;)Lorg/dexpace/sdk/core/config/ConfigurationBuilder;
public final fun propsSource (Ljava/util/function/Function;)Lorg/dexpace/sdk/core/config/ConfigurationBuilder;
public final fun put (Ljava/lang/String;Ljava/lang/String;)Lorg/dexpace/sdk/core/config/ConfigurationBuilder;
}
public abstract interface class org/dexpace/sdk/core/generics/Builder {
public abstract fun build ()Ljava/lang/Object;
}
public final class org/dexpace/sdk/core/generics/BuilderChecksKt {
public static final fun checkRequired (Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object;
}
public final class org/dexpace/sdk/core/http/auth/AuthChallengeParser {
public static final field INSTANCE Lorg/dexpace/sdk/core/http/auth/AuthChallengeParser;
public static final fun parse (Ljava/lang/String;)Ljava/util/List;
}
public final class org/dexpace/sdk/core/http/auth/AuthMetadata {
public fun <init> (Ljava/util/List;)V
public fun <init> (Ljava/util/List;Ljava/util/List;)V
public fun <init> (Ljava/util/List;Ljava/util/List;Ljava/util/Map;)V
public synthetic fun <init> (Ljava/util/List;Ljava/util/List;Ljava/util/Map;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun getOauthParams ()Ljava/util/Map;
public final fun getOauthScopes ()Ljava/util/List;
public final fun getSchemes ()Ljava/util/List;
}
public final class org/dexpace/sdk/core/http/auth/AuthScheme : java/lang/Enum {
public static final field API_KEY Lorg/dexpace/sdk/core/http/auth/AuthScheme;
public static final field BASIC Lorg/dexpace/sdk/core/http/auth/AuthScheme;
public static final field DIGEST Lorg/dexpace/sdk/core/http/auth/AuthScheme;
public static final field NO_AUTH Lorg/dexpace/sdk/core/http/auth/AuthScheme;
public static final field OAUTH2 Lorg/dexpace/sdk/core/http/auth/AuthScheme;
public static fun getEntries ()Lkotlin/enums/EnumEntries;
public static fun valueOf (Ljava/lang/String;)Lorg/dexpace/sdk/core/http/auth/AuthScheme;
public static fun values ()[Lorg/dexpace/sdk/core/http/auth/AuthScheme;
}
public final class org/dexpace/sdk/core/http/auth/AuthenticateChallenge {
public fun <init> (Ljava/lang/String;Ljava/util/Map;)V
public final fun component1 ()Ljava/lang/String;
public final fun component2 ()Ljava/util/Map;
public final fun copy (Ljava/lang/String;Ljava/util/Map;)Lorg/dexpace/sdk/core/http/auth/AuthenticateChallenge;
public static synthetic fun copy$default (Lorg/dexpace/sdk/core/http/auth/AuthenticateChallenge;Ljava/lang/String;Ljava/util/Map;ILjava/lang/Object;)Lorg/dexpace/sdk/core/http/auth/AuthenticateChallenge;
public fun equals (Ljava/lang/Object;)Z
public final fun getParameters ()Ljava/util/Map;
public final fun getScheme ()Ljava/lang/String;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public final class org/dexpace/sdk/core/http/auth/AuthorizationHeader {
public fun <init> (Ljava/lang/String;Ljava/lang/String;)V
public final fun component1 ()Ljava/lang/String;
public final fun component2 ()Ljava/lang/String;
public final fun copy (Ljava/lang/String;Ljava/lang/String;)Lorg/dexpace/sdk/core/http/auth/AuthorizationHeader;
public static synthetic fun copy$default (Lorg/dexpace/sdk/core/http/auth/AuthorizationHeader;Ljava/lang/String;Ljava/lang/String;ILjava/lang/Object;)Lorg/dexpace/sdk/core/http/auth/AuthorizationHeader;
public fun equals (Ljava/lang/Object;)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 final class org/dexpace/sdk/core/http/auth/BasicChallengeHandler : org/dexpace/sdk/core/http/auth/ChallengeHandler {
public fun <init> (Ljava/lang/String;Ljava/lang/String;)V
public fun canHandle (Ljava/util/List;)Z
public fun handleChallenges (Lorg/dexpace/sdk/core/http/request/Method;Ljava/net/URI;Ljava/util/List;)Lorg/dexpace/sdk/core/http/auth/AuthorizationHeader;
public fun handleChallenges (Lorg/dexpace/sdk/core/http/request/Method;Ljava/net/URI;Ljava/util/List;Z)Lorg/dexpace/sdk/core/http/auth/AuthorizationHeader;
}
public final class org/dexpace/sdk/core/http/auth/BearerToken : org/dexpace/sdk/core/http/auth/Credential {
public fun <init> (Ljava/lang/String;Ljava/time/Instant;)V
public final fun component1 ()Ljava/lang/String;
public final fun component2 ()Ljava/time/Instant;
public final fun copy (Ljava/lang/String;Ljava/time/Instant;)Lorg/dexpace/sdk/core/http/auth/BearerToken;
public static synthetic fun copy$default (Lorg/dexpace/sdk/core/http/auth/BearerToken;Ljava/lang/String;Ljava/time/Instant;ILjava/lang/Object;)Lorg/dexpace/sdk/core/http/auth/BearerToken;
public fun equals (Ljava/lang/Object;)Z
public final fun getExpiresAt ()Ljava/time/Instant;
public final fun getToken ()Ljava/lang/String;
public fun hashCode ()I
public final fun isExpiredAt (Ljava/time/Instant;)Z
public final fun isExpiredAt (Ljava/time/Instant;Ljava/time/Duration;)Z
public static synthetic fun isExpiredAt$default (Lorg/dexpace/sdk/core/http/auth/BearerToken;Ljava/time/Instant;Ljava/time/Duration;ILjava/lang/Object;)Z
public fun toString ()Ljava/lang/String;
}
public abstract interface class org/dexpace/sdk/core/http/auth/BearerTokenProvider {
public fun fetch (Ljava/util/List;)Lorg/dexpace/sdk/core/http/auth/BearerToken;
public abstract fun fetch (Ljava/util/List;Ljava/util/Map;)Lorg/dexpace/sdk/core/http/auth/BearerToken;
}
public final class org/dexpace/sdk/core/http/auth/BearerTokenProvider$DefaultImpls {
public static fun fetch (Lorg/dexpace/sdk/core/http/auth/BearerTokenProvider;Ljava/util/List;)Lorg/dexpace/sdk/core/http/auth/BearerToken;
}
public abstract interface class org/dexpace/sdk/core/http/auth/ChallengeHandler {
public static final field Companion Lorg/dexpace/sdk/core/http/auth/ChallengeHandler$Companion;
public abstract fun canHandle (Ljava/util/List;)Z
public fun handleChallenges (Lorg/dexpace/sdk/core/http/request/Method;Ljava/net/URI;Ljava/util/List;)Lorg/dexpace/sdk/core/http/auth/AuthorizationHeader;
public abstract fun handleChallenges (Lorg/dexpace/sdk/core/http/request/Method;Ljava/net/URI;Ljava/util/List;Z)Lorg/dexpace/sdk/core/http/auth/AuthorizationHeader;
public static synthetic fun handleChallenges$default (Lorg/dexpace/sdk/core/http/auth/ChallengeHandler;Lorg/dexpace/sdk/core/http/request/Method;Ljava/net/URI;Ljava/util/List;ZILjava/lang/Object;)Lorg/dexpace/sdk/core/http/auth/AuthorizationHeader;
public static fun of ([Lorg/dexpace/sdk/core/http/auth/ChallengeHandler;)Lorg/dexpace/sdk/core/http/auth/ChallengeHandler;
}
public final class org/dexpace/sdk/core/http/auth/ChallengeHandler$Companion {
public final fun of ([Lorg/dexpace/sdk/core/http/auth/ChallengeHandler;)Lorg/dexpace/sdk/core/http/auth/ChallengeHandler;
}
public final class org/dexpace/sdk/core/http/auth/ChallengeHandler$DefaultImpls {
public static fun handleChallenges (Lorg/dexpace/sdk/core/http/auth/ChallengeHandler;Lorg/dexpace/sdk/core/http/request/Method;Ljava/net/URI;Ljava/util/List;)Lorg/dexpace/sdk/core/http/auth/AuthorizationHeader;
public static synthetic fun handleChallenges$default (Lorg/dexpace/sdk/core/http/auth/ChallengeHandler;Lorg/dexpace/sdk/core/http/request/Method;Ljava/net/URI;Ljava/util/List;ZILjava/lang/Object;)Lorg/dexpace/sdk/core/http/auth/AuthorizationHeader;
}
public abstract interface class org/dexpace/sdk/core/http/auth/Credential {
}
public final class org/dexpace/sdk/core/http/auth/DigestAlgorithm : java/lang/Enum {
public static final field Companion Lorg/dexpace/sdk/core/http/auth/DigestAlgorithm$Companion;
public static final field MD5 Lorg/dexpace/sdk/core/http/auth/DigestAlgorithm;
public static final field MD5_SESS Lorg/dexpace/sdk/core/http/auth/DigestAlgorithm;
public static final field SHA_256 Lorg/dexpace/sdk/core/http/auth/DigestAlgorithm;
public static final field SHA_256_SESS Lorg/dexpace/sdk/core/http/auth/DigestAlgorithm;
public static final fun fromString (Ljava/lang/String;)Lorg/dexpace/sdk/core/http/auth/DigestAlgorithm;
public static fun getEntries ()Lkotlin/enums/EnumEntries;
public final fun getHeaderName ()Ljava/lang/String;
public final fun getJavaName ()Ljava/lang/String;
public final fun getSessionVariant ()Z
public static fun valueOf (Ljava/lang/String;)Lorg/dexpace/sdk/core/http/auth/DigestAlgorithm;
public static fun values ()[Lorg/dexpace/sdk/core/http/auth/DigestAlgorithm;
}
public final class org/dexpace/sdk/core/http/auth/DigestAlgorithm$Companion {
public final fun fromString (Ljava/lang/String;)Lorg/dexpace/sdk/core/http/auth/DigestAlgorithm;
}
public final class org/dexpace/sdk/core/http/auth/DigestChallengeHandler : org/dexpace/sdk/core/http/auth/ChallengeHandler {
public static final field Companion Lorg/dexpace/sdk/core/http/auth/DigestChallengeHandler$Companion;
public fun <init> (Ljava/lang/String;Ljava/lang/String;)V
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 canHandle (Ljava/util/List;)Z
public fun handleChallenges (Lorg/dexpace/sdk/core/http/request/Method;Ljava/net/URI;Ljava/util/List;)Lorg/dexpace/sdk/core/http/auth/AuthorizationHeader;
public fun handleChallenges (Lorg/dexpace/sdk/core/http/request/Method;Ljava/net/URI;Ljava/util/List;Z)Lorg/dexpace/sdk/core/http/auth/AuthorizationHeader;
}
public final class org/dexpace/sdk/core/http/auth/DigestChallengeHandler$Companion {
}
public final class org/dexpace/sdk/core/http/auth/KeyCredential : org/dexpace/sdk/core/http/auth/Credential {
public fun <init> (Ljava/lang/String;)V
public fun <init> (Ljava/lang/String;Lorg/dexpace/sdk/core/http/common/HttpHeaderName;)V
public fun <init> (Ljava/lang/String;Lorg/dexpace/sdk/core/http/common/HttpHeaderName;Ljava/lang/String;)V
public synthetic fun <init> (Ljava/lang/String;Lorg/dexpace/sdk/core/http/common/HttpHeaderName;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun getApiKey ()Ljava/lang/String;
public final fun getHeaderName ()Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public final fun getPrefix ()Ljava/lang/String;
public fun toString ()Ljava/lang/String;
}
public final class org/dexpace/sdk/core/http/auth/NamedKeyCredential : org/dexpace/sdk/core/http/auth/Credential {
public fun <init> (Ljava/lang/String;Ljava/lang/String;)V
public final fun getKey ()Ljava/lang/String;
public final fun getName ()Ljava/lang/String;
public fun toString ()Ljava/lang/String;
}
public final class org/dexpace/sdk/core/http/common/CommonMediaTypes {
public static final field APPLICATION_FORM_URLENCODED Lorg/dexpace/sdk/core/http/common/MediaType;
public static final field APPLICATION_HAL_JSON Lorg/dexpace/sdk/core/http/common/MediaType;
public static final field APPLICATION_JAVASCRIPT Lorg/dexpace/sdk/core/http/common/MediaType;
public static final field APPLICATION_JSON Lorg/dexpace/sdk/core/http/common/MediaType;
public static final field APPLICATION_JSON_GRAPHQL Lorg/dexpace/sdk/core/http/common/MediaType;
public static final field APPLICATION_OCTET_STREAM Lorg/dexpace/sdk/core/http/common/MediaType;
public static final field APPLICATION_PDF Lorg/dexpace/sdk/core/http/common/MediaType;
public static final field APPLICATION_PROBLEM_JSON Lorg/dexpace/sdk/core/http/common/MediaType;
public static final field APPLICATION_VND_API_JSON Lorg/dexpace/sdk/core/http/common/MediaType;
public static final field APPLICATION_XML Lorg/dexpace/sdk/core/http/common/MediaType;
public static final field APPLICATION_ZIP Lorg/dexpace/sdk/core/http/common/MediaType;
public static final field AUDIO_MPEG Lorg/dexpace/sdk/core/http/common/MediaType;
public static final field AUDIO_WAV Lorg/dexpace/sdk/core/http/common/MediaType;
public static final field IMAGE_GIF Lorg/dexpace/sdk/core/http/common/MediaType;
public static final field IMAGE_JPEG Lorg/dexpace/sdk/core/http/common/MediaType;
public static final field IMAGE_PNG Lorg/dexpace/sdk/core/http/common/MediaType;
public static final field IMAGE_SVG_XML Lorg/dexpace/sdk/core/http/common/MediaType;
public static final field INSTANCE Lorg/dexpace/sdk/core/http/common/CommonMediaTypes;
public static final field MULTIPART_BYTERANGES Lorg/dexpace/sdk/core/http/common/MediaType;
public static final field MULTIPART_FORM_DATA Lorg/dexpace/sdk/core/http/common/MediaType;
public static final field TEXT_CSS Lorg/dexpace/sdk/core/http/common/MediaType;
public static final field TEXT_CSV Lorg/dexpace/sdk/core/http/common/MediaType;
public static final field TEXT_HTML Lorg/dexpace/sdk/core/http/common/MediaType;
public static final field TEXT_JAVASCRIPT Lorg/dexpace/sdk/core/http/common/MediaType;
public static final field TEXT_PLAIN Lorg/dexpace/sdk/core/http/common/MediaType;
public static final field VIDEO_MP4 Lorg/dexpace/sdk/core/http/common/MediaType;
public static final field VIDEO_MPEG Lorg/dexpace/sdk/core/http/common/MediaType;
}
public final class org/dexpace/sdk/core/http/common/ETag {
public static final field Companion Lorg/dexpace/sdk/core/http/common/ETag$Companion;
public static final synthetic fun box-impl (Ljava/lang/String;)Lorg/dexpace/sdk/core/http/common/ETag;
public fun equals (Ljava/lang/Object;)Z
public static fun equals-impl (Ljava/lang/String;Ljava/lang/Object;)Z
public static final fun equals-impl0 (Ljava/lang/String;Ljava/lang/String;)Z
public static final fun getANY-Ibeg9ak ()Ljava/lang/String;
public static final fun getOpaque-impl (Ljava/lang/String;)Ljava/lang/String;
public fun hashCode ()I
public static fun hashCode-impl (Ljava/lang/String;)I
public static final fun isAny-impl (Ljava/lang/String;)Z
public static final fun isStrong-impl (Ljava/lang/String;)Z
public static final fun isWeak-impl (Ljava/lang/String;)Z
public static final fun parse-h2-RfS0 (Ljava/lang/String;)Ljava/lang/String;
public static final fun strong-ag3KNXs (Ljava/lang/String;)Ljava/lang/String;
public static final fun toHeaderValue-impl (Ljava/lang/String;)Ljava/lang/String;
public fun toString ()Ljava/lang/String;
public static fun toString-impl (Ljava/lang/String;)Ljava/lang/String;
public final synthetic fun unbox-impl ()Ljava/lang/String;
public static final fun weak-ag3KNXs (Ljava/lang/String;)Ljava/lang/String;
}
public final class org/dexpace/sdk/core/http/common/ETag$Companion {
public final fun getANY-Ibeg9ak ()Ljava/lang/String;
public final fun parse-h2-RfS0 (Ljava/lang/String;)Ljava/lang/String;
public final fun strong-ag3KNXs (Ljava/lang/String;)Ljava/lang/String;
public final fun weak-ag3KNXs (Ljava/lang/String;)Ljava/lang/String;
}
public final class org/dexpace/sdk/core/http/common/Headers {
public static final field Companion Lorg/dexpace/sdk/core/http/common/Headers$Companion;
public synthetic fun <init> (Ljava/util/Map;Lkotlin/jvm/internal/DefaultConstructorMarker;)V
public static final fun builder ()Lorg/dexpace/sdk/core/http/common/Headers$Builder;
public final fun contains (Ljava/lang/String;)Z
public final fun contains (Lorg/dexpace/sdk/core/http/common/HttpHeaderName;)Z
public final fun entries ()Ljava/util/Set;
public fun equals (Ljava/lang/Object;)Z
public final fun get (Ljava/lang/String;)Ljava/lang/String;
public final fun get (Lorg/dexpace/sdk/core/http/common/HttpHeaderName;)Ljava/lang/String;
public fun hashCode ()I
public final fun names ()Ljava/util/Set;
public final fun newBuilder ()Lorg/dexpace/sdk/core/http/common/Headers$Builder;
public fun toString ()Ljava/lang/String;
public final fun values (Ljava/lang/String;)Ljava/util/List;
public final fun values (Lorg/dexpace/sdk/core/http/common/HttpHeaderName;)Ljava/util/List;
}
public final class org/dexpace/sdk/core/http/common/Headers$Builder {
public fun <init> ()V
public fun <init> (Lorg/dexpace/sdk/core/http/common/Headers;)V
public final fun add (Ljava/lang/String;Ljava/lang/String;)Lorg/dexpace/sdk/core/http/common/Headers$Builder;
public final fun add (Ljava/lang/String;Ljava/util/List;)Lorg/dexpace/sdk/core/http/common/Headers$Builder;
public final fun add (Lorg/dexpace/sdk/core/http/common/HttpHeaderName;Ljava/lang/String;)Lorg/dexpace/sdk/core/http/common/Headers$Builder;
public final fun add (Lorg/dexpace/sdk/core/http/common/HttpHeaderName;Ljava/util/List;)Lorg/dexpace/sdk/core/http/common/Headers$Builder;
public final fun addAll (Lorg/dexpace/sdk/core/http/common/Headers;)Lorg/dexpace/sdk/core/http/common/Headers$Builder;
public final fun build ()Lorg/dexpace/sdk/core/http/common/Headers;
public final fun remove (Ljava/lang/String;)Lorg/dexpace/sdk/core/http/common/Headers$Builder;
public final fun remove (Lorg/dexpace/sdk/core/http/common/HttpHeaderName;)Lorg/dexpace/sdk/core/http/common/Headers$Builder;
public final fun set (Ljava/lang/String;Ljava/lang/String;)Lorg/dexpace/sdk/core/http/common/Headers$Builder;
public final fun set (Ljava/lang/String;Ljava/util/List;)Lorg/dexpace/sdk/core/http/common/Headers$Builder;
public final fun set (Lorg/dexpace/sdk/core/http/common/HttpHeaderName;Ljava/lang/String;)Lorg/dexpace/sdk/core/http/common/Headers$Builder;
public final fun set (Lorg/dexpace/sdk/core/http/common/HttpHeaderName;Ljava/util/List;)Lorg/dexpace/sdk/core/http/common/Headers$Builder;
}
public final class org/dexpace/sdk/core/http/common/Headers$Companion {
public final fun builder ()Lorg/dexpace/sdk/core/http/common/Headers$Builder;
}
public final class org/dexpace/sdk/core/http/common/HttpHeaderName {
public static final field ACCEPT Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field ACCEPT_CHARSET Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field ACCEPT_ENCODING Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field ACCEPT_LANGUAGE Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field ACCEPT_RANGES Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field ACCESS_CONTROL_ALLOW_CREDENTIALS Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field ACCESS_CONTROL_ALLOW_HEADERS Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field ACCESS_CONTROL_ALLOW_METHODS Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field ACCESS_CONTROL_ALLOW_ORIGIN Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field ACCESS_CONTROL_EXPOSE_HEADERS Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field ACCESS_CONTROL_MAX_AGE Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field ACCESS_CONTROL_REQUEST_HEADERS Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field ACCESS_CONTROL_REQUEST_METHOD Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field AGE Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field ALLOW Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field AUTHORIZATION Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field CACHE_CONTROL Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field CONNECTION Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field CONTENT_DISPOSITION Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field CONTENT_ENCODING Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field CONTENT_LANGUAGE Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field CONTENT_LENGTH Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field CONTENT_LOCATION Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field CONTENT_MD5 Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field CONTENT_RANGE Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field CONTENT_SECURITY_POLICY Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field CONTENT_TYPE Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field COOKIE Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field Companion Lorg/dexpace/sdk/core/http/common/HttpHeaderName$Companion;
public static final field DATE Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field ETAG Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field EXPECT Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field EXPIRES Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field FORWARDED Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field FROM Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field HOST Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field IF_MATCH Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field IF_MODIFIED_SINCE Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field IF_NONE_MATCH Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field IF_RANGE Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field IF_UNMODIFIED_SINCE Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field LAST_MODIFIED Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field LINK Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field LOCATION Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field MAX_FORWARDS Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field ORIGIN Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field PRAGMA Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field PROXY_AUTHENTICATE Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field PROXY_AUTHORIZATION Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field RANGE Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field REFERER Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field REFERRER_POLICY Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field RETRY_AFTER Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field RETRY_AFTER_MS Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field SERVER Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field SET_COOKIE Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field STRICT_TRANSPORT_SECURITY Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field TE Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field TRAILER Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field TRANSFER_ENCODING Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field UPGRADE Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field USER_AGENT Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field VARY Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field VIA Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field WARNING Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field WWW_AUTHENTICATE Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field X_CONTENT_TYPE_OPTIONS Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field X_FORWARDED_FOR Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field X_FORWARDED_HOST Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field X_FORWARDED_PROTO Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field X_FRAME_OPTIONS Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field X_MS_CLIENT_REQUEST_ID Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field X_MS_CORRELATION_REQUEST_ID Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field X_MS_REQUEST_ID Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field X_MS_RETRY_AFTER_MS Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field X_REQUEST_ID Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public static final field X_XSS_PROTECTION Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public synthetic fun <init> (Ljava/lang/String;Ljava/lang/String;Lkotlin/jvm/internal/DefaultConstructorMarker;)V
public fun equals (Ljava/lang/Object;)Z
public static final fun fromString (Ljava/lang/String;)Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public final fun getCaseInsensitiveName ()Ljava/lang/String;
public final fun getCaseSensitiveName ()Ljava/lang/String;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public final class org/dexpace/sdk/core/http/common/HttpHeaderName$Companion {
public final fun fromString (Ljava/lang/String;)Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
}
public final class org/dexpace/sdk/core/http/common/HttpRange {
public static final field Companion Lorg/dexpace/sdk/core/http/common/HttpRange$Companion;
public static final synthetic fun box-impl (Ljava/lang/String;)Lorg/dexpace/sdk/core/http/common/HttpRange;
public static final fun bytes-Oepi37k (JJ)Ljava/lang/String;
public fun equals (Ljava/lang/Object;)Z
public static fun equals-impl (Ljava/lang/String;Ljava/lang/Object;)Z
public static final fun equals-impl0 (Ljava/lang/String;Ljava/lang/String;)Z
public static final fun from-1jReFK8 (J)Ljava/lang/String;
public fun hashCode ()I
public static fun hashCode-impl (Ljava/lang/String;)I
public static final fun parse-1jReFK8 (Ljava/lang/String;)Ljava/lang/String;
public static final fun suffix-1jReFK8 (J)Ljava/lang/String;
public static final fun toHeaderValue-impl (Ljava/lang/String;)Ljava/lang/String;
public fun toString ()Ljava/lang/String;
public static fun toString-impl (Ljava/lang/String;)Ljava/lang/String;
public final synthetic fun unbox-impl ()Ljava/lang/String;
}
public final class org/dexpace/sdk/core/http/common/HttpRange$Companion {
public final fun bytes-Oepi37k (JJ)Ljava/lang/String;
public final fun from-1jReFK8 (J)Ljava/lang/String;
public final fun parse-1jReFK8 (Ljava/lang/String;)Ljava/lang/String;
public final fun suffix-1jReFK8 (J)Ljava/lang/String;
}
public final class org/dexpace/sdk/core/http/common/MediaType {
public static final field Companion Lorg/dexpace/sdk/core/http/common/MediaType$Companion;
public synthetic fun <init> (Ljava/lang/String;Ljava/lang/String;Ljava/util/Map;Lkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/lang/String;
public final fun component2 ()Ljava/lang/String;
public final fun component3 ()Ljava/util/Map;
public fun equals (Ljava/lang/Object;)Z
public final fun getCharset ()Ljava/nio/charset/Charset;
public final fun getFullType ()Ljava/lang/String;
public final fun getParameters ()Ljava/util/Map;
public final fun getSubtype ()Ljava/lang/String;
public final fun getType ()Ljava/lang/String;
public fun hashCode ()I
public final fun includes (Lorg/dexpace/sdk/core/http/common/MediaType;)Z
public static final fun of (Ljava/lang/String;Ljava/lang/String;)Lorg/dexpace/sdk/core/http/common/MediaType;
public static final fun of (Ljava/lang/String;Ljava/lang/String;Ljava/util/Map;)Lorg/dexpace/sdk/core/http/common/MediaType;
public static final fun parse (Ljava/lang/String;)Lorg/dexpace/sdk/core/http/common/MediaType;
public fun toString ()Ljava/lang/String;
}
public final class org/dexpace/sdk/core/http/common/MediaType$Companion {
public final fun of (Ljava/lang/String;Ljava/lang/String;)Lorg/dexpace/sdk/core/http/common/MediaType;
public final fun of (Ljava/lang/String;Ljava/lang/String;Ljava/util/Map;)Lorg/dexpace/sdk/core/http/common/MediaType;
public static synthetic fun of$default (Lorg/dexpace/sdk/core/http/common/MediaType$Companion;Ljava/lang/String;Ljava/lang/String;Ljava/util/Map;ILjava/lang/Object;)Lorg/dexpace/sdk/core/http/common/MediaType;
public final fun parse (Ljava/lang/String;)Lorg/dexpace/sdk/core/http/common/MediaType;
}
public final class org/dexpace/sdk/core/http/common/Protocol : java/lang/Enum {
public static final field Companion Lorg/dexpace/sdk/core/http/common/Protocol$Companion;
public static final field H2_PRIOR_KNOWLEDGE Lorg/dexpace/sdk/core/http/common/Protocol;
public static final field HTTP_1_0 Lorg/dexpace/sdk/core/http/common/Protocol;
public static final field HTTP_1_1 Lorg/dexpace/sdk/core/http/common/Protocol;
public static final field HTTP_2 Lorg/dexpace/sdk/core/http/common/Protocol;
public static final field QUIC Lorg/dexpace/sdk/core/http/common/Protocol;
public static final fun get (Ljava/lang/String;)Lorg/dexpace/sdk/core/http/common/Protocol;
public static fun getEntries ()Lkotlin/enums/EnumEntries;
public fun toString ()Ljava/lang/String;
public static fun valueOf (Ljava/lang/String;)Lorg/dexpace/sdk/core/http/common/Protocol;
public static fun values ()[Lorg/dexpace/sdk/core/http/common/Protocol;
}
public final class org/dexpace/sdk/core/http/common/Protocol$Companion {
public final fun get (Ljava/lang/String;)Lorg/dexpace/sdk/core/http/common/Protocol;
}
public final class org/dexpace/sdk/core/http/common/RequestConditions {
public static final field Companion Lorg/dexpace/sdk/core/http/common/RequestConditions$Companion;
public synthetic fun <init> (Ljava/util/List;Ljava/util/List;Ljava/time/Instant;Ljava/time/Instant;Lkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun applyTo (Lorg/dexpace/sdk/core/http/common/Headers$Builder;)Lorg/dexpace/sdk/core/http/common/Headers$Builder;
public static final fun builder ()Lorg/dexpace/sdk/core/http/common/RequestConditions$Builder;
public final fun getIfMatch ()Ljava/util/List;
public final fun getIfModifiedSince ()Ljava/time/Instant;
public final fun getIfNoneMatch ()Ljava/util/List;
public final fun getIfUnmodifiedSince ()Ljava/time/Instant;
public final fun newBuilder ()Lorg/dexpace/sdk/core/http/common/RequestConditions$Builder;
}
public final class org/dexpace/sdk/core/http/common/RequestConditions$Builder {
public fun <init> ()V
public fun <init> (Lorg/dexpace/sdk/core/http/common/RequestConditions;)V
public final fun build ()Lorg/dexpace/sdk/core/http/common/RequestConditions;
public final fun ifMatch-a6HYibk (Ljava/lang/String;)Lorg/dexpace/sdk/core/http/common/RequestConditions$Builder;
public final fun ifModifiedSince (Ljava/time/Instant;)Lorg/dexpace/sdk/core/http/common/RequestConditions$Builder;
public final fun ifNoneMatch-a6HYibk (Ljava/lang/String;)Lorg/dexpace/sdk/core/http/common/RequestConditions$Builder;
public final fun ifUnmodifiedSince (Ljava/time/Instant;)Lorg/dexpace/sdk/core/http/common/RequestConditions$Builder;
}
public final class org/dexpace/sdk/core/http/common/RequestConditions$Companion {
public final fun builder ()Lorg/dexpace/sdk/core/http/common/RequestConditions$Builder;
}
public abstract interface class org/dexpace/sdk/core/http/context/CallContext : java/lang/AutoCloseable {
public fun close ()V
public abstract fun getCallKey ()Ljava/lang/String;
public abstract fun getInstrumentationContext ()Lorg/dexpace/sdk/core/instrumentation/InstrumentationContext;
}
public final class org/dexpace/sdk/core/http/context/CallContext$DefaultImpls {
public static fun close (Lorg/dexpace/sdk/core/http/context/CallContext;)V
}
public final class org/dexpace/sdk/core/http/context/ContextStore {
public static final field INSTANCE Lorg/dexpace/sdk/core/http/context/ContextStore;
public final fun get (Ljava/lang/String;)Lorg/dexpace/sdk/core/http/context/CallContext;
public final fun put (Ljava/lang/String;Lorg/dexpace/sdk/core/http/context/CallContext;)V
public final fun remove (Ljava/lang/String;)V
public final fun remove (Ljava/lang/String;Lorg/dexpace/sdk/core/http/context/CallContext;)Z
public final fun set (Ljava/lang/String;Lorg/dexpace/sdk/core/http/context/CallContext;)V
}
public final class org/dexpace/sdk/core/http/context/DispatchContext : org/dexpace/sdk/core/http/context/CallContext {
public static final field Companion Lorg/dexpace/sdk/core/http/context/DispatchContext$Companion;
public fun <init> (Lorg/dexpace/sdk/core/instrumentation/InstrumentationContext;Ljava/lang/String;)V
public synthetic fun <init> (Lorg/dexpace/sdk/core/instrumentation/InstrumentationContext;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public fun close ()V
public final fun component1 ()Lorg/dexpace/sdk/core/instrumentation/InstrumentationContext;
public final fun component2 ()Ljava/lang/String;
public final fun copy (Lorg/dexpace/sdk/core/instrumentation/InstrumentationContext;Ljava/lang/String;)Lorg/dexpace/sdk/core/http/context/DispatchContext;
public static synthetic fun copy$default (Lorg/dexpace/sdk/core/http/context/DispatchContext;Lorg/dexpace/sdk/core/instrumentation/InstrumentationContext;Ljava/lang/String;ILjava/lang/Object;)Lorg/dexpace/sdk/core/http/context/DispatchContext;
public fun equals (Ljava/lang/Object;)Z
public fun getCallKey ()Ljava/lang/String;
public fun getInstrumentationContext ()Lorg/dexpace/sdk/core/instrumentation/InstrumentationContext;
public fun hashCode ()I
public final fun toRequestContext (Lorg/dexpace/sdk/core/http/request/Request;)Lorg/dexpace/sdk/core/http/context/RequestContext;
public fun toString ()Ljava/lang/String;
}
public final class org/dexpace/sdk/core/http/context/DispatchContext$Companion {
public final fun default ()Lorg/dexpace/sdk/core/http/context/DispatchContext;
}
public final class org/dexpace/sdk/core/http/context/ExchangeContext : org/dexpace/sdk/core/http/context/CallContext {
public fun <init> (Lorg/dexpace/sdk/core/instrumentation/InstrumentationContext;Lorg/dexpace/sdk/core/http/request/Request;Lorg/dexpace/sdk/core/http/response/Response;Ljava/lang/String;)V
public synthetic fun <init> (Lorg/dexpace/sdk/core/instrumentation/InstrumentationContext;Lorg/dexpace/sdk/core/http/request/Request;Lorg/dexpace/sdk/core/http/response/Response;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public fun close ()V
public final fun component1 ()Lorg/dexpace/sdk/core/instrumentation/InstrumentationContext;
public final fun component2 ()Lorg/dexpace/sdk/core/http/request/Request;
public final fun component3 ()Lorg/dexpace/sdk/core/http/response/Response;
public final fun component4 ()Ljava/lang/String;
public final fun copy (Lorg/dexpace/sdk/core/instrumentation/InstrumentationContext;Lorg/dexpace/sdk/core/http/request/Request;Lorg/dexpace/sdk/core/http/response/Response;Ljava/lang/String;)Lorg/dexpace/sdk/core/http/context/ExchangeContext;
public static synthetic fun copy$default (Lorg/dexpace/sdk/core/http/context/ExchangeContext;Lorg/dexpace/sdk/core/instrumentation/InstrumentationContext;Lorg/dexpace/sdk/core/http/request/Request;Lorg/dexpace/sdk/core/http/response/Response;Ljava/lang/String;ILjava/lang/Object;)Lorg/dexpace/sdk/core/http/context/ExchangeContext;
public fun equals (Ljava/lang/Object;)Z
public fun getCallKey ()Ljava/lang/String;
public fun getInstrumentationContext ()Lorg/dexpace/sdk/core/instrumentation/InstrumentationContext;
public final fun getRequest ()Lorg/dexpace/sdk/core/http/request/Request;
public final fun getResponse ()Lorg/dexpace/sdk/core/http/response/Response;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public final class org/dexpace/sdk/core/http/context/RequestContext : org/dexpace/sdk/core/http/context/CallContext {
public fun <init> (Lorg/dexpace/sdk/core/instrumentation/InstrumentationContext;Lorg/dexpace/sdk/core/http/request/Request;Ljava/lang/String;)V
public synthetic fun <init> (Lorg/dexpace/sdk/core/instrumentation/InstrumentationContext;Lorg/dexpace/sdk/core/http/request/Request;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public fun close ()V
public final fun component1 ()Lorg/dexpace/sdk/core/instrumentation/InstrumentationContext;
public final fun component2 ()Lorg/dexpace/sdk/core/http/request/Request;
public final fun component3 ()Ljava/lang/String;
public final fun copy (Lorg/dexpace/sdk/core/instrumentation/InstrumentationContext;Lorg/dexpace/sdk/core/http/request/Request;Ljava/lang/String;)Lorg/dexpace/sdk/core/http/context/RequestContext;
public static synthetic fun copy$default (Lorg/dexpace/sdk/core/http/context/RequestContext;Lorg/dexpace/sdk/core/instrumentation/InstrumentationContext;Lorg/dexpace/sdk/core/http/request/Request;Ljava/lang/String;ILjava/lang/Object;)Lorg/dexpace/sdk/core/http/context/RequestContext;
public fun equals (Ljava/lang/Object;)Z
public fun getCallKey ()Ljava/lang/String;
public fun getInstrumentationContext ()Lorg/dexpace/sdk/core/instrumentation/InstrumentationContext;
public final fun getRequest ()Lorg/dexpace/sdk/core/http/request/Request;
public fun hashCode ()I
public final fun toExchangeContext (Lorg/dexpace/sdk/core/http/response/Response;)Lorg/dexpace/sdk/core/http/context/ExchangeContext;
public fun toString ()Ljava/lang/String;
}
public abstract interface class org/dexpace/sdk/core/http/paging/FirstPageFetcher {
public abstract fun fetch (Lorg/dexpace/sdk/core/http/paging/PagingOptions;)Lorg/dexpace/sdk/core/http/paging/PagedResponse;
}
public abstract interface class org/dexpace/sdk/core/http/paging/NextPageFetcher {
public abstract fun fetch (Lorg/dexpace/sdk/core/http/paging/PagingOptions;Ljava/lang/String;)Lorg/dexpace/sdk/core/http/paging/PagedResponse;
}
public final class org/dexpace/sdk/core/http/paging/PagedIterable : java/lang/Iterable, kotlin/jvm/internal/markers/KMappedMarker {
public fun <init> (Lorg/dexpace/sdk/core/http/paging/FirstPageFetcher;)V
public fun <init> (Lorg/dexpace/sdk/core/http/paging/FirstPageFetcher;Lorg/dexpace/sdk/core/http/paging/NextPageFetcher;)V
public fun <init> (Lorg/dexpace/sdk/core/http/paging/FirstPageFetcher;Lorg/dexpace/sdk/core/http/paging/NextPageFetcher;J)V
public synthetic fun <init> (Lorg/dexpace/sdk/core/http/paging/FirstPageFetcher;Lorg/dexpace/sdk/core/http/paging/NextPageFetcher;JILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun byPage ()Lkotlin/sequences/Sequence;
public final fun byPage (Lorg/dexpace/sdk/core/http/paging/PagingOptions;)Lkotlin/sequences/Sequence;
public static synthetic fun byPage$default (Lorg/dexpace/sdk/core/http/paging/PagedIterable;Lorg/dexpace/sdk/core/http/paging/PagingOptions;ILjava/lang/Object;)Lkotlin/sequences/Sequence;
public fun iterator ()Ljava/util/Iterator;
public final fun stream ()Ljava/util/stream/Stream;
}
public final class org/dexpace/sdk/core/http/paging/PagedResponse : java/io/Closeable {
public fun <init> (Lorg/dexpace/sdk/core/http/response/Response;Ljava/util/List;)V
public fun <init> (Lorg/dexpace/sdk/core/http/response/Response;Ljava/util/List;Ljava/lang/String;)V
public fun <init> (Lorg/dexpace/sdk/core/http/response/Response;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;)V
public fun <init> (Lorg/dexpace/sdk/core/http/response/Response;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
public fun <init> (Lorg/dexpace/sdk/core/http/response/Response;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
public fun <init> (Lorg/dexpace/sdk/core/http/response/Response;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
public synthetic fun <init> (Lorg/dexpace/sdk/core/http/response/Response;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public fun close ()V
public final fun getContinuationToken ()Ljava/lang/String;
public final fun getFirstLink ()Ljava/lang/String;
public final fun getHeaders ()Lorg/dexpace/sdk/core/http/common/Headers;
public final fun getLastLink ()Ljava/lang/String;
public final fun getNextLink ()Ljava/lang/String;
public final fun getPreviousLink ()Ljava/lang/String;
public final fun getRequest ()Lorg/dexpace/sdk/core/http/request/Request;
public final fun getResponse ()Lorg/dexpace/sdk/core/http/response/Response;
public final fun getStatusCode ()I
public final fun getValue ()Ljava/util/List;
}
public final class org/dexpace/sdk/core/http/paging/PagingOptions {
public fun <init> ()V
public fun <init> (Ljava/lang/Long;)V
public fun <init> (Ljava/lang/Long;Ljava/lang/Long;)V
public fun <init> (Ljava/lang/Long;Ljava/lang/Long;Ljava/lang/Long;)V
public fun <init> (Ljava/lang/Long;Ljava/lang/Long;Ljava/lang/Long;Ljava/lang/String;)V
public synthetic fun <init> (Ljava/lang/Long;Ljava/lang/Long;Ljava/lang/Long;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun getContinuationToken ()Ljava/lang/String;
public final fun getOffset ()Ljava/lang/Long;
public final fun getPageIndex ()Ljava/lang/Long;
public final fun getPageSize ()Ljava/lang/Long;
public final fun setContinuationToken (Ljava/lang/String;)V
public final fun setOffset (Ljava/lang/Long;)V
public final fun setPageIndex (Ljava/lang/Long;)V
public final fun setPageSize (Ljava/lang/Long;)V
}
public final class org/dexpace/sdk/core/http/pipeline/AsyncHttpPipeline {
public static final field Companion Lorg/dexpace/sdk/core/http/pipeline/AsyncHttpPipeline$Companion;
public final fun getHttpClient ()Lorg/dexpace/sdk/core/client/AsyncHttpClient;
public final fun getSteps ()Ljava/util/List;
public static final fun of (Lorg/dexpace/sdk/core/client/AsyncHttpClient;)Lorg/dexpace/sdk/core/http/pipeline/AsyncHttpPipeline;
public final fun sendAsync (Lorg/dexpace/sdk/core/http/request/Request;)Ljava/util/concurrent/CompletableFuture;
}
public final class org/dexpace/sdk/core/http/pipeline/AsyncHttpPipeline$Companion {
public final fun of (Lorg/dexpace/sdk/core/client/AsyncHttpClient;)Lorg/dexpace/sdk/core/http/pipeline/AsyncHttpPipeline;
}
public final class org/dexpace/sdk/core/http/pipeline/AsyncHttpPipelineBuilder {
public static final field Companion Lorg/dexpace/sdk/core/http/pipeline/AsyncHttpPipelineBuilder$Companion;
public fun <init> (Lorg/dexpace/sdk/core/client/AsyncHttpClient;)V
public final fun append (Lorg/dexpace/sdk/core/http/pipeline/AsyncHttpStep;)Lorg/dexpace/sdk/core/http/pipeline/AsyncHttpPipelineBuilder;
public final fun appendAll (Ljava/lang/Iterable;)Lorg/dexpace/sdk/core/http/pipeline/AsyncHttpPipelineBuilder;
public final fun build ()Lorg/dexpace/sdk/core/http/pipeline/AsyncHttpPipeline;
public static final fun from (Lorg/dexpace/sdk/core/http/pipeline/AsyncHttpPipeline;)Lorg/dexpace/sdk/core/http/pipeline/AsyncHttpPipelineBuilder;
public final fun insertAfter (Ljava/lang/Class;Lorg/dexpace/sdk/core/http/pipeline/AsyncHttpStep;)Lorg/dexpace/sdk/core/http/pipeline/AsyncHttpPipelineBuilder;
public final fun insertBefore (Ljava/lang/Class;Lorg/dexpace/sdk/core/http/pipeline/AsyncHttpStep;)Lorg/dexpace/sdk/core/http/pipeline/AsyncHttpPipelineBuilder;
public final fun prepend (Lorg/dexpace/sdk/core/http/pipeline/AsyncHttpStep;)Lorg/dexpace/sdk/core/http/pipeline/AsyncHttpPipelineBuilder;
public final fun prependAll (Ljava/lang/Iterable;)Lorg/dexpace/sdk/core/http/pipeline/AsyncHttpPipelineBuilder;
public final fun remove (Ljava/lang/Class;)Lorg/dexpace/sdk/core/http/pipeline/AsyncHttpPipelineBuilder;
public final fun replace (Ljava/lang/Class;Lorg/dexpace/sdk/core/http/pipeline/AsyncHttpStep;)Lorg/dexpace/sdk/core/http/pipeline/AsyncHttpPipelineBuilder;
}
public final class org/dexpace/sdk/core/http/pipeline/AsyncHttpPipelineBuilder$Companion {
public final fun from (Lorg/dexpace/sdk/core/http/pipeline/AsyncHttpPipeline;)Lorg/dexpace/sdk/core/http/pipeline/AsyncHttpPipelineBuilder;
}
public abstract interface class org/dexpace/sdk/core/http/pipeline/AsyncHttpStep {
public abstract fun getStage ()Lorg/dexpace/sdk/core/http/pipeline/Stage;
public abstract fun processAsync (Lorg/dexpace/sdk/core/http/request/Request;Lorg/dexpace/sdk/core/http/pipeline/AsyncPipelineNext;)Ljava/util/concurrent/CompletableFuture;
}
public final class org/dexpace/sdk/core/http/pipeline/AsyncPipelineNext {
public final fun copy ()Lorg/dexpace/sdk/core/http/pipeline/AsyncPipelineNext;
public final fun processAsync ()Ljava/util/concurrent/CompletableFuture;
public final fun processAsync (Lorg/dexpace/sdk/core/http/request/Request;)Ljava/util/concurrent/CompletableFuture;
}
public final class org/dexpace/sdk/core/http/pipeline/HttpPipeline {
public static final field Companion Lorg/dexpace/sdk/core/http/pipeline/HttpPipeline$Companion;
public final fun getHttpClient ()Lorg/dexpace/sdk/core/client/HttpClient;
public final fun getSteps ()Ljava/util/List;
public static final fun of (Lorg/dexpace/sdk/core/client/HttpClient;)Lorg/dexpace/sdk/core/http/pipeline/HttpPipeline;
public final fun send (Lorg/dexpace/sdk/core/http/request/Request;)Lorg/dexpace/sdk/core/http/response/Response;
}
public final class org/dexpace/sdk/core/http/pipeline/HttpPipeline$Companion {
public final fun of (Lorg/dexpace/sdk/core/client/HttpClient;)Lorg/dexpace/sdk/core/http/pipeline/HttpPipeline;
}
public final class org/dexpace/sdk/core/http/pipeline/HttpPipelineBridges {
public static final fun toAsync (Lorg/dexpace/sdk/core/http/pipeline/HttpPipeline;Ljava/util/concurrent/Executor;)Lorg/dexpace/sdk/core/http/pipeline/AsyncHttpPipeline;
public static final fun toBlocking (Lorg/dexpace/sdk/core/http/pipeline/AsyncHttpPipeline;)Lorg/dexpace/sdk/core/http/pipeline/HttpPipeline;
}
public final class org/dexpace/sdk/core/http/pipeline/HttpPipelineBuilder {
public static final field Companion Lorg/dexpace/sdk/core/http/pipeline/HttpPipelineBuilder$Companion;
public fun <init> (Lorg/dexpace/sdk/core/client/HttpClient;)V
public final fun append (Lorg/dexpace/sdk/core/http/pipeline/HttpStep;)Lorg/dexpace/sdk/core/http/pipeline/HttpPipelineBuilder;
public final fun appendAll (Ljava/lang/Iterable;)Lorg/dexpace/sdk/core/http/pipeline/HttpPipelineBuilder;
public final fun build ()Lorg/dexpace/sdk/core/http/pipeline/HttpPipeline;
public static final fun from (Lorg/dexpace/sdk/core/http/pipeline/HttpPipeline;)Lorg/dexpace/sdk/core/http/pipeline/HttpPipelineBuilder;
public final fun insertAfter (Ljava/lang/Class;Lorg/dexpace/sdk/core/http/pipeline/HttpStep;)Lorg/dexpace/sdk/core/http/pipeline/HttpPipelineBuilder;
public final fun insertBefore (Ljava/lang/Class;Lorg/dexpace/sdk/core/http/pipeline/HttpStep;)Lorg/dexpace/sdk/core/http/pipeline/HttpPipelineBuilder;
public final fun prepend (Lorg/dexpace/sdk/core/http/pipeline/HttpStep;)Lorg/dexpace/sdk/core/http/pipeline/HttpPipelineBuilder;
public final fun prependAll (Ljava/lang/Iterable;)Lorg/dexpace/sdk/core/http/pipeline/HttpPipelineBuilder;
public final fun remove (Ljava/lang/Class;)Lorg/dexpace/sdk/core/http/pipeline/HttpPipelineBuilder;
public final fun replace (Ljava/lang/Class;Lorg/dexpace/sdk/core/http/pipeline/HttpStep;)Lorg/dexpace/sdk/core/http/pipeline/HttpPipelineBuilder;
}
public final class org/dexpace/sdk/core/http/pipeline/HttpPipelineBuilder$Companion {
public final fun from (Lorg/dexpace/sdk/core/http/pipeline/HttpPipeline;)Lorg/dexpace/sdk/core/http/pipeline/HttpPipelineBuilder;
}
public abstract interface class org/dexpace/sdk/core/http/pipeline/HttpStep {
public abstract fun getStage ()Lorg/dexpace/sdk/core/http/pipeline/Stage;
public abstract fun process (Lorg/dexpace/sdk/core/http/request/Request;Lorg/dexpace/sdk/core/http/pipeline/PipelineNext;)Lorg/dexpace/sdk/core/http/response/Response;
}
public final class org/dexpace/sdk/core/http/pipeline/PipelineNext {
public final fun copy ()Lorg/dexpace/sdk/core/http/pipeline/PipelineNext;
public final fun process ()Lorg/dexpace/sdk/core/http/response/Response;
public final fun process (Lorg/dexpace/sdk/core/http/request/Request;)Lorg/dexpace/sdk/core/http/response/Response;
}
public final class org/dexpace/sdk/core/http/pipeline/Stage : java/lang/Enum {
public static final field AUTH Lorg/dexpace/sdk/core/http/pipeline/Stage;
public static final field LOGGING Lorg/dexpace/sdk/core/http/pipeline/Stage;
public static final field POST_AUTH Lorg/dexpace/sdk/core/http/pipeline/Stage;
public static final field POST_LOGGING Lorg/dexpace/sdk/core/http/pipeline/Stage;
public static final field POST_REDIRECT Lorg/dexpace/sdk/core/http/pipeline/Stage;
public static final field POST_RETRY Lorg/dexpace/sdk/core/http/pipeline/Stage;
public static final field POST_SERDE Lorg/dexpace/sdk/core/http/pipeline/Stage;
public static final field PRE_AUTH Lorg/dexpace/sdk/core/http/pipeline/Stage;
public static final field PRE_LOGGING Lorg/dexpace/sdk/core/http/pipeline/Stage;
public static final field PRE_SEND Lorg/dexpace/sdk/core/http/pipeline/Stage;
public static final field PRE_SERDE Lorg/dexpace/sdk/core/http/pipeline/Stage;
public static final field REDIRECT Lorg/dexpace/sdk/core/http/pipeline/Stage;
public static final field RETRY Lorg/dexpace/sdk/core/http/pipeline/Stage;
public static final field SEND Lorg/dexpace/sdk/core/http/pipeline/Stage;
public static final field SERDE Lorg/dexpace/sdk/core/http/pipeline/Stage;
public static fun getEntries ()Lkotlin/enums/EnumEntries;
public final fun getOrder ()I
public final fun isPillar ()Z
public static fun valueOf (Ljava/lang/String;)Lorg/dexpace/sdk/core/http/pipeline/Stage;
public static fun values ()[Lorg/dexpace/sdk/core/http/pipeline/Stage;
}
public abstract class org/dexpace/sdk/core/http/pipeline/steps/AuthStep : org/dexpace/sdk/core/http/pipeline/HttpStep {
public fun <init> ()V
protected abstract fun authorizeRequest (Lorg/dexpace/sdk/core/http/request/Request;)Lorg/dexpace/sdk/core/http/request/Request;
protected fun authorizeRequestOnChallenge (Lorg/dexpace/sdk/core/http/request/Request;Lorg/dexpace/sdk/core/http/response/Response;)Lorg/dexpace/sdk/core/http/request/Request;
public final fun getStage ()Lorg/dexpace/sdk/core/http/pipeline/Stage;
public final fun process (Lorg/dexpace/sdk/core/http/request/Request;Lorg/dexpace/sdk/core/http/pipeline/PipelineNext;)Lorg/dexpace/sdk/core/http/response/Response;
}
public class org/dexpace/sdk/core/http/pipeline/steps/BearerTokenAuthStep : org/dexpace/sdk/core/http/pipeline/steps/AuthStep {
public fun <init> (Lorg/dexpace/sdk/core/http/auth/BearerTokenProvider;Ljava/util/List;)V
public fun <init> (Lorg/dexpace/sdk/core/http/auth/BearerTokenProvider;Ljava/util/List;Ljava/time/Duration;)V
public fun <init> (Lorg/dexpace/sdk/core/http/auth/BearerTokenProvider;Ljava/util/List;Ljava/time/Duration;Lorg/dexpace/sdk/core/util/Clock;)V
public synthetic fun <init> (Lorg/dexpace/sdk/core/http/auth/BearerTokenProvider;Ljava/util/List;Ljava/time/Duration;Lorg/dexpace/sdk/core/util/Clock;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
protected fun authorizeRequest (Lorg/dexpace/sdk/core/http/request/Request;)Lorg/dexpace/sdk/core/http/request/Request;
}
public final class org/dexpace/sdk/core/http/pipeline/steps/DefaultAsyncInstrumentationStep : org/dexpace/sdk/core/http/pipeline/AsyncHttpStep {
public fun <init> ()V
public fun <init> (Lorg/dexpace/sdk/core/http/pipeline/steps/HttpInstrumentationOptions;)V
public fun <init> (Lorg/dexpace/sdk/core/http/pipeline/steps/HttpInstrumentationOptions;Lorg/dexpace/sdk/core/util/Clock;)V
public fun <init> (Lorg/dexpace/sdk/core/http/pipeline/steps/HttpInstrumentationOptions;Lorg/dexpace/sdk/core/util/Clock;Lorg/dexpace/sdk/core/instrumentation/ClientLogger;)V
public synthetic fun <init> (Lorg/dexpace/sdk/core/http/pipeline/steps/HttpInstrumentationOptions;Lorg/dexpace/sdk/core/util/Clock;Lorg/dexpace/sdk/core/instrumentation/ClientLogger;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public fun getStage ()Lorg/dexpace/sdk/core/http/pipeline/Stage;
public fun processAsync (Lorg/dexpace/sdk/core/http/request/Request;Lorg/dexpace/sdk/core/http/pipeline/AsyncPipelineNext;)Ljava/util/concurrent/CompletableFuture;
}
public final class org/dexpace/sdk/core/http/pipeline/steps/DefaultInstrumentationStep : org/dexpace/sdk/core/http/pipeline/steps/InstrumentationStep {
public fun <init> ()V
public fun <init> (Lorg/dexpace/sdk/core/http/pipeline/steps/HttpInstrumentationOptions;)V
public fun <init> (Lorg/dexpace/sdk/core/http/pipeline/steps/HttpInstrumentationOptions;Lorg/dexpace/sdk/core/util/Clock;)V
public fun <init> (Lorg/dexpace/sdk/core/http/pipeline/steps/HttpInstrumentationOptions;Lorg/dexpace/sdk/core/util/Clock;Lorg/dexpace/sdk/core/instrumentation/ClientLogger;)V
public synthetic fun <init> (Lorg/dexpace/sdk/core/http/pipeline/steps/HttpInstrumentationOptions;Lorg/dexpace/sdk/core/util/Clock;Lorg/dexpace/sdk/core/instrumentation/ClientLogger;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public fun process (Lorg/dexpace/sdk/core/http/request/Request;Lorg/dexpace/sdk/core/http/pipeline/PipelineNext;)Lorg/dexpace/sdk/core/http/response/Response;
}
public class org/dexpace/sdk/core/http/pipeline/steps/DefaultRedirectStep : org/dexpace/sdk/core/http/pipeline/steps/RedirectStep {
public fun <init> ()V
public fun <init> (Lorg/dexpace/sdk/core/http/pipeline/steps/HttpRedirectOptions;)V
public fun <init> (Lorg/dexpace/sdk/core/http/pipeline/steps/HttpRedirectOptions;Lorg/dexpace/sdk/core/instrumentation/ClientLogger;)V
public synthetic fun <init> (Lorg/dexpace/sdk/core/http/pipeline/steps/HttpRedirectOptions;Lorg/dexpace/sdk/core/instrumentation/ClientLogger;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public fun process (Lorg/dexpace/sdk/core/http/request/Request;Lorg/dexpace/sdk/core/http/pipeline/PipelineNext;)Lorg/dexpace/sdk/core/http/response/Response;
}
public class org/dexpace/sdk/core/http/pipeline/steps/DefaultRetryStep : org/dexpace/sdk/core/http/pipeline/steps/RetryStep {
public static final field Companion Lorg/dexpace/sdk/core/http/pipeline/steps/DefaultRetryStep$Companion;
public static final field DEFAULT_MAX_RETRIES I
public fun <init> ()V
public fun <init> (Lorg/dexpace/sdk/core/http/pipeline/steps/HttpRetryOptions;)V
public fun <init> (Lorg/dexpace/sdk/core/http/pipeline/steps/HttpRetryOptions;Lorg/dexpace/sdk/core/util/Clock;)V
public fun <init> (Lorg/dexpace/sdk/core/http/pipeline/steps/HttpRetryOptions;Lorg/dexpace/sdk/core/util/Clock;Lorg/dexpace/sdk/core/instrumentation/ClientLogger;)V
public synthetic fun <init> (Lorg/dexpace/sdk/core/http/pipeline/steps/HttpRetryOptions;Lorg/dexpace/sdk/core/util/Clock;Lorg/dexpace/sdk/core/instrumentation/ClientLogger;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
protected fun computeExceptionDelay (Lorg/dexpace/sdk/core/http/pipeline/steps/HttpRetryCondition;)Ljava/time/Duration;
protected fun computeResponseDelay (Lorg/dexpace/sdk/core/http/pipeline/steps/HttpRetryCondition;)Ljava/time/Duration;
public fun process (Lorg/dexpace/sdk/core/http/request/Request;Lorg/dexpace/sdk/core/http/pipeline/PipelineNext;)Lorg/dexpace/sdk/core/http/response/Response;
protected fun retryAfterFromHeaders (Lorg/dexpace/sdk/core/http/response/Response;)Ljava/time/Duration;
}
public final class org/dexpace/sdk/core/http/pipeline/steps/DefaultRetryStep$Companion {
}
public final class org/dexpace/sdk/core/http/pipeline/steps/HttpInstrumentationOptions {
public static final field Companion Lorg/dexpace/sdk/core/http/pipeline/steps/HttpInstrumentationOptions$Companion;
public static final field DEFAULT_ALLOWED_HEADERS Ljava/util/Set;
public static final field DEFAULT_BODY_PREVIEW_MAX_BYTES I
public fun <init> ()V
public fun <init> (Lorg/dexpace/sdk/core/http/pipeline/steps/HttpLogLevel;)V
public fun <init> (Lorg/dexpace/sdk/core/http/pipeline/steps/HttpLogLevel;Ljava/util/Set;)V
public fun <init> (Lorg/dexpace/sdk/core/http/pipeline/steps/HttpLogLevel;Ljava/util/Set;Ljava/util/Set;)V
public fun <init> (Lorg/dexpace/sdk/core/http/pipeline/steps/HttpLogLevel;Ljava/util/Set;Ljava/util/Set;Z)V
public fun <init> (Lorg/dexpace/sdk/core/http/pipeline/steps/HttpLogLevel;Ljava/util/Set;Ljava/util/Set;ZLorg/dexpace/sdk/core/instrumentation/Tracer;)V
public fun <init> (Lorg/dexpace/sdk/core/http/pipeline/steps/HttpLogLevel;Ljava/util/Set;Ljava/util/Set;ZLorg/dexpace/sdk/core/instrumentation/Tracer;Lorg/dexpace/sdk/core/instrumentation/metrics/Meter;)V
public fun <init> (Lorg/dexpace/sdk/core/http/pipeline/steps/HttpLogLevel;Ljava/util/Set;Ljava/util/Set;ZLorg/dexpace/sdk/core/instrumentation/Tracer;Lorg/dexpace/sdk/core/instrumentation/metrics/Meter;I)V
public synthetic fun <init> (Lorg/dexpace/sdk/core/http/pipeline/steps/HttpLogLevel;Ljava/util/Set;Ljava/util/Set;ZLorg/dexpace/sdk/core/instrumentation/Tracer;Lorg/dexpace/sdk/core/instrumentation/metrics/Meter;IILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun getAllowedHeaderNames ()Ljava/util/Set;
public final fun getAllowedQueryParamNames ()Ljava/util/Set;
public final fun getBodyPreviewMaxBytes ()I
public final fun getLogLevel ()Lorg/dexpace/sdk/core/http/pipeline/steps/HttpLogLevel;
public final fun getMeter ()Lorg/dexpace/sdk/core/instrumentation/metrics/Meter;
public final fun getTracer ()Lorg/dexpace/sdk/core/instrumentation/Tracer;
public final fun isRedactedHeaderNamesLoggingEnabled ()Z
}
public final class org/dexpace/sdk/core/http/pipeline/steps/HttpInstrumentationOptions$Companion {
}
public final class org/dexpace/sdk/core/http/pipeline/steps/HttpLogLevel : java/lang/Enum {
public static final field BODY_AND_HEADERS Lorg/dexpace/sdk/core/http/pipeline/steps/HttpLogLevel;
public static final field Companion Lorg/dexpace/sdk/core/http/pipeline/steps/HttpLogLevel$Companion;
public static final field HEADERS Lorg/dexpace/sdk/core/http/pipeline/steps/HttpLogLevel;
public static final field NONE Lorg/dexpace/sdk/core/http/pipeline/steps/HttpLogLevel;
public static final fun fromConfiguration (Ljava/lang/String;Lorg/dexpace/sdk/core/config/Configuration;)Lorg/dexpace/sdk/core/http/pipeline/steps/HttpLogLevel;
public static final fun fromConfiguration (Ljava/lang/String;Lorg/dexpace/sdk/core/config/Configuration;Lorg/dexpace/sdk/core/http/pipeline/steps/HttpLogLevel;)Lorg/dexpace/sdk/core/http/pipeline/steps/HttpLogLevel;
public static fun getEntries ()Lkotlin/enums/EnumEntries;
public static fun valueOf (Ljava/lang/String;)Lorg/dexpace/sdk/core/http/pipeline/steps/HttpLogLevel;
public static fun values ()[Lorg/dexpace/sdk/core/http/pipeline/steps/HttpLogLevel;
}
public final class org/dexpace/sdk/core/http/pipeline/steps/HttpLogLevel$Companion {
public final fun fromConfiguration (Ljava/lang/String;Lorg/dexpace/sdk/core/config/Configuration;)Lorg/dexpace/sdk/core/http/pipeline/steps/HttpLogLevel;
public final fun fromConfiguration (Ljava/lang/String;Lorg/dexpace/sdk/core/config/Configuration;Lorg/dexpace/sdk/core/http/pipeline/steps/HttpLogLevel;)Lorg/dexpace/sdk/core/http/pipeline/steps/HttpLogLevel;
public static synthetic fun fromConfiguration$default (Lorg/dexpace/sdk/core/http/pipeline/steps/HttpLogLevel$Companion;Ljava/lang/String;Lorg/dexpace/sdk/core/config/Configuration;Lorg/dexpace/sdk/core/http/pipeline/steps/HttpLogLevel;ILjava/lang/Object;)Lorg/dexpace/sdk/core/http/pipeline/steps/HttpLogLevel;
}
public final class org/dexpace/sdk/core/http/pipeline/steps/HttpRedirectCondition {
public fun <init> (Lorg/dexpace/sdk/core/http/response/Response;ILjava/util/Set;)V
public final fun component1 ()Lorg/dexpace/sdk/core/http/response/Response;
public final fun component2 ()I
public final fun component3 ()Ljava/util/Set;
public final fun copy (Lorg/dexpace/sdk/core/http/response/Response;ILjava/util/Set;)Lorg/dexpace/sdk/core/http/pipeline/steps/HttpRedirectCondition;
public static synthetic fun copy$default (Lorg/dexpace/sdk/core/http/pipeline/steps/HttpRedirectCondition;Lorg/dexpace/sdk/core/http/response/Response;ILjava/util/Set;ILjava/lang/Object;)Lorg/dexpace/sdk/core/http/pipeline/steps/HttpRedirectCondition;
public fun equals (Ljava/lang/Object;)Z
public final fun getRedirectedUris ()Ljava/util/Set;
public final fun getResponse ()Lorg/dexpace/sdk/core/http/response/Response;
public final fun getTryCount ()I
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public final class org/dexpace/sdk/core/http/pipeline/steps/HttpRedirectOptions {
public fun <init> ()V
public fun <init> (I)V
public fun <init> (ILjava/util/EnumSet;)V
public fun <init> (ILjava/util/EnumSet;Lorg/dexpace/sdk/core/http/common/HttpHeaderName;)V
public fun <init> (ILjava/util/EnumSet;Lorg/dexpace/sdk/core/http/common/HttpHeaderName;Z)V
public fun <init> (ILjava/util/EnumSet;Lorg/dexpace/sdk/core/http/common/HttpHeaderName;ZZ)V
public fun <init> (ILjava/util/EnumSet;Lorg/dexpace/sdk/core/http/common/HttpHeaderName;ZZLorg/dexpace/sdk/core/http/pipeline/steps/HttpRedirectPredicate;)V
public synthetic fun <init> (ILjava/util/EnumSet;Lorg/dexpace/sdk/core/http/common/HttpHeaderName;ZZLorg/dexpace/sdk/core/http/pipeline/steps/HttpRedirectPredicate;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun getAllowSchemeDowngrade ()Z
public final fun getAllowedMethods ()Ljava/util/Set;
public final fun getFollow303 ()Z
public final fun getLocationHeader ()Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public final fun getMaxHops ()I
public final fun getShouldRedirect ()Lorg/dexpace/sdk/core/http/pipeline/steps/HttpRedirectPredicate;
}
public abstract interface class org/dexpace/sdk/core/http/pipeline/steps/HttpRedirectPredicate {
public abstract fun shouldRedirect (Lorg/dexpace/sdk/core/http/pipeline/steps/HttpRedirectCondition;)Z
}
public final class org/dexpace/sdk/core/http/pipeline/steps/HttpRetryCondition {
public fun <init> (Lorg/dexpace/sdk/core/http/response/Response;Ljava/lang/Exception;ILjava/util/List;)V
public final fun component1 ()Lorg/dexpace/sdk/core/http/response/Response;
public final fun component2 ()Ljava/lang/Exception;
public final fun component3 ()I
public final fun component4 ()Ljava/util/List;
public final fun copy (Lorg/dexpace/sdk/core/http/response/Response;Ljava/lang/Exception;ILjava/util/List;)Lorg/dexpace/sdk/core/http/pipeline/steps/HttpRetryCondition;
public static synthetic fun copy$default (Lorg/dexpace/sdk/core/http/pipeline/steps/HttpRetryCondition;Lorg/dexpace/sdk/core/http/response/Response;Ljava/lang/Exception;ILjava/util/List;ILjava/lang/Object;)Lorg/dexpace/sdk/core/http/pipeline/steps/HttpRetryCondition;
public fun equals (Ljava/lang/Object;)Z
public final fun getException ()Ljava/lang/Exception;
public final fun getResponse ()Lorg/dexpace/sdk/core/http/response/Response;
public final fun getRetriedExceptions ()Ljava/util/List;
public final fun getTryCount ()I
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public abstract interface class org/dexpace/sdk/core/http/pipeline/steps/HttpRetryConditionPredicate {
public abstract fun shouldRetry (Lorg/dexpace/sdk/core/http/pipeline/steps/HttpRetryCondition;)Z
}
public abstract interface class org/dexpace/sdk/core/http/pipeline/steps/HttpRetryDelayProvider {
public abstract fun delayFor (Lorg/dexpace/sdk/core/http/pipeline/steps/HttpRetryCondition;)Ljava/time/Duration;
}
public final class org/dexpace/sdk/core/http/pipeline/steps/HttpRetryOptions {
public static final field Companion Lorg/dexpace/sdk/core/http/pipeline/steps/HttpRetryOptions$Companion;
public static final field DEFAULT_RETRY_AFTER_HEADERS Ljava/util/List;
public fun <init> ()V
public fun <init> (I)V
public fun <init> (ILjava/time/Duration;)V
public fun <init> (ILjava/time/Duration;Ljava/time/Duration;)V
public fun <init> (ILjava/time/Duration;Ljava/time/Duration;Ljava/time/Duration;)V
public fun <init> (ILjava/time/Duration;Ljava/time/Duration;Ljava/time/Duration;Ljava/util/List;)V
public fun <init> (ILjava/time/Duration;Ljava/time/Duration;Ljava/time/Duration;Ljava/util/List;Lorg/dexpace/sdk/core/http/pipeline/steps/HttpRetryConditionPredicate;)V
public fun <init> (ILjava/time/Duration;Ljava/time/Duration;Ljava/time/Duration;Ljava/util/List;Lorg/dexpace/sdk/core/http/pipeline/steps/HttpRetryConditionPredicate;Lorg/dexpace/sdk/core/http/pipeline/steps/HttpRetryConditionPredicate;)V
public fun <init> (ILjava/time/Duration;Ljava/time/Duration;Ljava/time/Duration;Ljava/util/List;Lorg/dexpace/sdk/core/http/pipeline/steps/HttpRetryConditionPredicate;Lorg/dexpace/sdk/core/http/pipeline/steps/HttpRetryConditionPredicate;Lorg/dexpace/sdk/core/http/pipeline/steps/HttpRetryDelayProvider;)V
public synthetic fun <init> (ILjava/time/Duration;Ljava/time/Duration;Ljava/time/Duration;Ljava/util/List;Lorg/dexpace/sdk/core/http/pipeline/steps/HttpRetryConditionPredicate;Lorg/dexpace/sdk/core/http/pipeline/steps/HttpRetryConditionPredicate;Lorg/dexpace/sdk/core/http/pipeline/steps/HttpRetryDelayProvider;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public static final fun fixed (ILjava/time/Duration;)Lorg/dexpace/sdk/core/http/pipeline/steps/HttpRetryOptions;
public final fun getBaseDelay ()Ljava/time/Duration;
public final fun getDelayFromCondition ()Lorg/dexpace/sdk/core/http/pipeline/steps/HttpRetryDelayProvider;
public final fun getFixedDelay ()Ljava/time/Duration;
public final fun getMaxDelay ()Ljava/time/Duration;
public final fun getMaxRetries ()I
public final fun getRetryAfterHeaders ()Ljava/util/List;
public final fun getShouldRetryCondition ()Lorg/dexpace/sdk/core/http/pipeline/steps/HttpRetryConditionPredicate;
public final fun getShouldRetryException ()Lorg/dexpace/sdk/core/http/pipeline/steps/HttpRetryConditionPredicate;
}
public final class org/dexpace/sdk/core/http/pipeline/steps/HttpRetryOptions$Companion {
public final fun fixed (ILjava/time/Duration;)Lorg/dexpace/sdk/core/http/pipeline/steps/HttpRetryOptions;
}
public abstract class org/dexpace/sdk/core/http/pipeline/steps/InstrumentationStep : org/dexpace/sdk/core/http/pipeline/HttpStep {
public fun <init> ()V
public final fun getStage ()Lorg/dexpace/sdk/core/http/pipeline/Stage;
}
public class org/dexpace/sdk/core/http/pipeline/steps/KeyCredentialAuthStep : org/dexpace/sdk/core/http/pipeline/steps/AuthStep {
public fun <init> (Lorg/dexpace/sdk/core/http/auth/KeyCredential;)V
protected fun authorizeRequest (Lorg/dexpace/sdk/core/http/request/Request;)Lorg/dexpace/sdk/core/http/request/Request;
}
public abstract class org/dexpace/sdk/core/http/pipeline/steps/RedirectStep : org/dexpace/sdk/core/http/pipeline/HttpStep {
public fun <init> ()V
public final fun getStage ()Lorg/dexpace/sdk/core/http/pipeline/Stage;
}
public abstract class org/dexpace/sdk/core/http/pipeline/steps/RetryStep : org/dexpace/sdk/core/http/pipeline/HttpStep {
public fun <init> ()V
public final fun getStage ()Lorg/dexpace/sdk/core/http/pipeline/Stage;
}
public final class org/dexpace/sdk/core/http/pipeline/steps/ServerOverrideRetryPredicate : org/dexpace/sdk/core/http/pipeline/steps/HttpRetryConditionPredicate {
public static final field Companion Lorg/dexpace/sdk/core/http/pipeline/steps/ServerOverrideRetryPredicate$Companion;
public static final field DEFAULT_HEADER_NAME Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public fun <init> ()V
public fun <init> (Lorg/dexpace/sdk/core/http/common/HttpHeaderName;)V
public fun <init> (Lorg/dexpace/sdk/core/http/common/HttpHeaderName;Lorg/dexpace/sdk/core/http/pipeline/steps/HttpRetryConditionPredicate;)V
public synthetic fun <init> (Lorg/dexpace/sdk/core/http/common/HttpHeaderName;Lorg/dexpace/sdk/core/http/pipeline/steps/HttpRetryConditionPredicate;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun getDelegate ()Lorg/dexpace/sdk/core/http/pipeline/steps/HttpRetryConditionPredicate;
public final fun getHeaderName ()Lorg/dexpace/sdk/core/http/common/HttpHeaderName;
public fun shouldRetry (Lorg/dexpace/sdk/core/http/pipeline/steps/HttpRetryCondition;)Z
}
public final class org/dexpace/sdk/core/http/pipeline/steps/ServerOverrideRetryPredicate$Companion {
}
public final class org/dexpace/sdk/core/http/pipeline/steps/SetDateStep : org/dexpace/sdk/core/http/pipeline/HttpStep {
public fun <init> ()V
public fun <init> (Lorg/dexpace/sdk/core/util/Clock;)V
public synthetic fun <init> (Lorg/dexpace/sdk/core/util/Clock;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public fun getStage ()Lorg/dexpace/sdk/core/http/pipeline/Stage;
public fun process (Lorg/dexpace/sdk/core/http/request/Request;Lorg/dexpace/sdk/core/http/pipeline/PipelineNext;)Lorg/dexpace/sdk/core/http/response/Response;
}
public final class org/dexpace/sdk/core/http/request/FileRequestBody : org/dexpace/sdk/core/http/request/RequestBody {
public fun <init> (Ljava/nio/file/Path;)V
public fun <init> (Ljava/nio/file/Path;Lorg/dexpace/sdk/core/http/common/MediaType;)V
public fun <init> (Ljava/nio/file/Path;Lorg/dexpace/sdk/core/http/common/MediaType;J)V
public fun <init> (Ljava/nio/file/Path;Lorg/dexpace/sdk/core/http/common/MediaType;JJ)V
public synthetic fun <init> (Ljava/nio/file/Path;Lorg/dexpace/sdk/core/http/common/MediaType;JJILkotlin/jvm/internal/DefaultConstructorMarker;)V
public fun contentLength ()J
public final fun getCount ()J
public final fun getFile ()Ljava/nio/file/Path;
public final fun getPosition ()J
public fun isReplayable ()Z
public fun mediaType ()Lorg/dexpace/sdk/core/http/common/MediaType;
public final fun toByteBuffer ()Ljava/nio/ByteBuffer;
public fun toReplayable (Lorg/dexpace/sdk/core/io/IoProvider;)Lorg/dexpace/sdk/core/http/request/RequestBody;
public fun writeTo (Lorg/dexpace/sdk/core/io/BufferedSink;)V
}