dev.fitko.fitconnect.api.domain.model.destination.Destination Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client Show documentation
Show all versions of client Show documentation
Library that provides client access to the FIT-Connect api-endpoints for sending, subscribing and
routing
package dev.fitko.fitconnect.api.domain.model.destination;
import com.fasterxml.jackson.annotation.JsonProperty;
import dev.fitko.fitconnect.api.domain.model.callback.Callback;
import dev.fitko.fitconnect.api.domain.model.reply.replychannel.ReplyChannel;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.LinkedHashSet;
import java.util.Set;
import java.util.UUID;
@Data
@NoArgsConstructor
public class Destination {
@JsonProperty("destinationId")
private UUID destinationId;
@JsonProperty("encryptionKid")
private String encryptionKid;
@JsonProperty("metadataVersions")
private Set metadataVersions = new LinkedHashSet<>();
@JsonProperty("replyChannels")
private ReplyChannel replyChannels;
@JsonProperty("services")
private Set services = new LinkedHashSet<>();
@JsonProperty("status")
private StatusEnum status;
@JsonProperty("contactInformation")
private ContactInformation contactInformation;
@JsonProperty("callback")
private Callback callback;
}