Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public final class DataFlowPrepareMessage {
private String participantId;
private String counterPartyId;
private String dataspaceContext;
private String processId;
private String dataFlowId;
private String agreementId;
private String datasetId;
private URI callbackAddress;
Expand Down Expand Up @@ -51,8 +51,8 @@ public String getDataspaceContext() {
return dataspaceContext;
}

public String getProcessId() {
return processId;
public String getDataFlowId() {
return dataFlowId;
}

public String getAgreementId() {
Expand Down Expand Up @@ -119,8 +119,8 @@ public Builder dataspaceContext(String dataspaceContext) {
return this;
}

public Builder processId(String processId) {
instance.processId = processId;
public Builder dataFlowId(String processId) {
instance.dataFlowId = processId;
return this;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public final class DataFlowStartMessage {
private String participantId;
private String counterPartyId;
private String dataspaceContext;
private String processId;
private String dataFlowId;
private String agreementId;
private String datasetId;
private URI callbackAddress;
Expand Down Expand Up @@ -56,8 +56,8 @@ public String getDataspaceContext() {
return dataspaceContext;
}

public String getProcessId() {
return processId;
public String getDataFlowId() {
return dataFlowId;
}

public String getAgreementId() {
Expand Down Expand Up @@ -128,8 +128,8 @@ public Builder dataspaceContext(String dataspaceContext) {
return this;
}

public Builder processId(String processId) {
instance.processId = processId;
public Builder dataFlowId(String processId) {
instance.dataFlowId = processId;
return this;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public StatusResult<DataFlowResponse> prepare(TransferProcess transferProcess, P
.participantId(policy.getAssignee())
.counterPartyId(policy.getAssigner())
.dataspaceContext(transferProcess.getProtocol())
.processId(transferProcess.getId())
.dataFlowId(transferProcess.getId())
.agreementId(transferProcess.getContractId())
.datasetId(transferProcess.getAssetId())
.profile(transferProcess.getTransferType())
Expand Down Expand Up @@ -122,7 +122,7 @@ public StatusResult<DataFlowResponse> prepare(TransferProcess transferProcess, P
.participantId(policy.getAssigner())
.counterPartyId(policy.getAssignee())
.dataspaceContext(transferProcess.getProtocol())
.processId(transferProcess.getId())
.dataFlowId(transferProcess.getId())
.agreementId(transferProcess.getContractId())
.datasetId(transferProcess.getAssetId())
.profile(transferProcess.getTransferType())
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ atomikos = "6.0.1"
awaitility = "4.2.2"
bouncyCastle-jdk18on = "1.84"
cloudEvents = "5.0.0"
dataplane-sdk = "1.0.0"
dataplane-sdk = "1.1.0"
edc = "0.19.0-SNAPSHOT"
failsafe = "3.3.2"
h2 = "2.4.240"
Expand Down Expand Up @@ -113,7 +113,7 @@ nats = { module = "io.nats:jnats", version = "2.26.2" }

dcp-tck = { module = "org.eclipse.dataspacetck.dcp:dcp-tck", version = "1.0.2" }
dsp-tck = { module = "org.eclipse.dataspacetck.dsp:dsp-tck", version = "1.0.1" }
dps-tck = { module = "org.eclipse.dataspacetck.dps:dps-tck", version = "1.2.0" }
dps-tck = { module = "org.eclipse.dataspacetck.dps:dps-tck", version = "1.3.0" }

[bundles]
jackson = ["jackson-annotations", "jackson-databind"]
Expand Down
Loading