ImageInfo.java
807 Bytes
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* org.jetbrains.annotations.NotNull
*/
package com.scene7.is.ps.provider.fvctx;
import com.scene7.is.ps.provider.Request;
import com.scene7.is.ps.provider.fvctx.FvctxImageProps;
import org.jetbrains.annotations.NotNull;
class ImageInfo {
@NotNull
public final String netPath;
@NotNull
public final String query;
@NotNull
public final Request parsedRequest;
@NotNull
public final FvctxImageProps imageProps;
ImageInfo(@NotNull String netPath, @NotNull String query, @NotNull Request parsedRequest, @NotNull FvctxImageProps imageProps) {
this.netPath = netPath;
this.query = query;
this.parsedRequest = parsedRequest;
this.imageProps = imageProps;
}
}