File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed
extractor/src/main/java/org/schabi/newpipe/extractor/services/media_ccc/extractors Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change 1+ package org .schabi .newpipe .extractor .services .media_ccc .extractors ;
2+
3+ import com .grack .nanojson .JsonObject ;
4+
5+ final class MediaCCCLiveStreamMapperDTO {
6+ private final JsonObject streamJsonObj ;
7+ private final String urlKey ;
8+ private final JsonObject urlValue ;
9+
10+ MediaCCCLiveStreamMapperDTO (final JsonObject streamJsonObj ,
11+ final String urlKey ,
12+ final JsonObject urlValue ) {
13+ this .streamJsonObj = streamJsonObj ;
14+ this .urlKey = urlKey ;
15+ this .urlValue = urlValue ;
16+ }
17+
18+ JsonObject getStreamJsonObj () {
19+ return streamJsonObj ;
20+ }
21+
22+ String getUrlKey () {
23+ return urlKey ;
24+ }
25+
26+ JsonObject getUrlValue () {
27+ return urlValue ;
28+ }
29+ }
You can’t perform that action at this time.
0 commit comments