All Downloads are FREE. Search and download functionalities are using the official Maven repository.

network.oxalis.as4.inbound.As4EnvelopeHeader Maven / Gradle / Ivy

There is a newer version: 6.7.0
Show newest version
package network.oxalis.as4.inbound;

import lombok.Data;
import network.oxalis.as4.common.As4MessageProperties;

import java.util.ArrayList;
import java.util.List;

@Data
public class As4EnvelopeHeader {

    private String messageId;
    private String conversationId;

    private List fromPartyId;
    private String fromPartyRole;

    private List toPartyId;
    private String toPartyRole;

    private String service;
    private String action;

    private As4MessageProperties messageProperties = new As4MessageProperties();

    private List payloadCIDs = new ArrayList<>();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy