forked from eclipse-dataplane-core/dataplane-sdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDataFlowStartMessage.java
More file actions
37 lines (33 loc) · 927 Bytes
/
DataFlowStartMessage.java
File metadata and controls
37 lines (33 loc) · 927 Bytes
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
/*
* Copyright (c) 2025 Think-it GmbH
*
* This program and the accompanying materials are made available under the
* terms of the Apache License, Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: Apache-2.0
*
* Contributors:
* Think-it GmbH - initial API and implementation
*
*/
package org.eclipse.dataplane.domain.dataflow;
import org.eclipse.dataplane.domain.DataAddress;
import java.net.URI;
import java.util.List;
import java.util.Map;
public record DataFlowStartMessage(
String messageId,
String participantId,
String counterPartyId,
String dataspaceContext,
String processId,
String agreementId,
String datasetId,
URI callbackAddress,
String transferType,
DataAddress dataAddress,
List<String> labels,
Map<String, Object> metadata
) {
}