Skip to content

Commit

Permalink
SD-1699 Updating test config helper
Browse files Browse the repository at this point in the history
  • Loading branch information
gj0dcsa committed Nov 16, 2024
1 parent 9c1238f commit 3f52316
Showing 1 changed file with 11 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

import lombok.SneakyThrows;
import lombok.extern.slf4j.Slf4j;
import org.dcsa.conformance.core.party.EndpointUriOverrideConfiguration;
import org.dcsa.conformance.core.party.HttpHeaderConfiguration;
import org.dcsa.conformance.sandbox.ConformanceWebuiHandler;
import org.dcsa.conformance.springboot.ConformanceApplication;
Expand Down Expand Up @@ -461,15 +462,16 @@ record Sandbox(
protected record SandboxItem(String id, String name, List<String> operatorLog, boolean canNotifyParty) {}

public record SandboxConfig(
String sandboxId,
String sandboxName,
String sandboxUrl,
String sandboxAuthHeaderName,
String sandboxAuthHeaderValue,
String externalPartyUrl,
String externalPartyAuthHeaderName,
String externalPartyAuthHeaderValue,
HttpHeaderConfiguration[] externalPartyAdditionalHeaders) {}
String sandboxId,
String sandboxName,
String sandboxUrl,
String sandboxAuthHeaderName,
String sandboxAuthHeaderValue,
String externalPartyUrl,
String externalPartyAuthHeaderName,
String externalPartyAuthHeaderValue,
HttpHeaderConfiguration[] externalPartyAdditionalHeaders,
EndpointUriOverrideConfiguration[] endpointUriOverrideConfigurations) {}

record ScenarioDigest(String moduleName, List<Scenario> scenarios) {}

Expand Down

0 comments on commit 3f52316

Please sign in to comment.