FvctxPipelineBuilderMock.java
2.27 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
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* com.scene7.is.provider.catalog.Catalog
* org.jetbrains.annotations.NotNull
*/
package com.scene7.is.ps.provider.fvctx;
import com.scene7.is.provider.catalog.Catalog;
import com.scene7.is.ps.provider.Request;
import com.scene7.is.ps.provider.fvctx.FvctxNode;
import com.scene7.is.ps.provider.fvctx.FvctxNodeCanonicalizeImagePath;
import com.scene7.is.ps.provider.fvctx.FvctxNodeInlineNesting;
import com.scene7.is.ps.provider.fvctx.FvctxPipelineBuilder;
import com.scene7.is.ps.provider.fvctx.FvctxRequestBuilder;
import org.jetbrains.annotations.NotNull;
public class FvctxPipelineBuilderMock
implements FvctxPipelineBuilder {
@NotNull
private final FvctxNode outputNode;
FvctxPipelineBuilderMock(@NotNull FvctxNode outputNode) {
this.outputNode = outputNode;
}
@NotNull
@Override
public FvctxNode createSingleImagePipeline() {
return this.outputNode;
}
@NotNull
@Override
public FvctxNode createSingleImageMediaSetPipeline(@NotNull Catalog catalog) {
return new FvctxNodeCanonicalizeImagePath(catalog, this.outputNode);
}
@NotNull
@Override
public FvctxNode createVideoPipeline(@NotNull Catalog catalog) {
return new FvctxNodeCanonicalizeImagePath(catalog, this.outputNode);
}
@NotNull
@Override
public FvctxNode createVideoMediaSetPipeline(@NotNull Catalog catalog) {
return new FvctxNodeCanonicalizeImagePath(catalog, this.outputNode);
}
@NotNull
@Override
public FvctxNode createImageSetPipeline(@NotNull Catalog catalog) {
return new FvctxNodeInlineNesting(catalog, this, new FvctxNodeCanonicalizeImagePath(catalog, this.outputNode));
}
@NotNull
@Override
public FvctxNode createImageSetMediaSetPipeline(@NotNull Catalog catalog) {
return new FvctxNodeInlineNesting(catalog, this, new FvctxNodeCanonicalizeImagePath(catalog, this.outputNode));
}
@NotNull
@Override
public FvctxRequestBuilder createFvctxRequestBuilder(@NotNull Request request) {
throw new UnsupportedOperationException();
}
@NotNull
@Override
public FvctxRequestBuilder getRequestBuilder() {
throw new UnsupportedOperationException();
}
}