com.yoti.api.client.sandbox.docs.request.check.SandboxCheck Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yoti-sdk-sandbox Show documentation
Show all versions of yoti-sdk-sandbox Show documentation
Java SDK for simple integration with the Sandbox Yoti platform
The newest version!
package com.yoti.api.client.sandbox.docs.request.check;
import static com.yoti.api.client.spi.remote.util.Validation.notNull;
import java.util.ArrayList;
import java.util.List;
import com.yoti.api.client.sandbox.docs.request.check.report.SandboxBreakdown;
import com.yoti.api.client.sandbox.docs.request.check.report.SandboxRecommendation;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
@JsonInclude(JsonInclude.Include.NON_EMPTY)
public abstract class SandboxCheck {
@JsonProperty("result")
private final SandboxCheckResult result;
SandboxCheck(SandboxCheckResult result) {
this.result = result;
}
public SandboxCheckResult getResult() {
return result;
}
static abstract class Builder> {
protected SandboxRecommendation recommendation;
protected List breakdown = new ArrayList<>();
public T withRecommendation(SandboxRecommendation recommendation) {
this.recommendation = recommendation;
return self();
}
public T withBreakdown(SandboxBreakdown breakdown) {
this.breakdown.add(breakdown);
return self();
}
public T withBreakdowns(List breakdowns) {
notNull(breakdowns, "breakdowns");
this.breakdown = breakdowns;
return self();
}
protected abstract T self();
public abstract SandboxCheck build();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy