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

io.convergence_platform.services.infrastructure.dto.ServiceConnectionDetailsResponse Maven / Gradle / Ivy

Go to download

Holds the common functionality needed by all Convergence Platform-based services written in Java.

The newest version!
package io.convergence_platform.services.infrastructure.dto;

import io.convergence_platform.common.responses.IApiResponseBody;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;

@Data
public class ServiceConnectionDetailsResponse implements IApiResponseBody {
    @JsonProperty("service")
    private String service;

    @JsonProperty("service_git_hash")
    private String serviceGitHash;

    @JsonProperty("port")
    private int port;

    @JsonProperty("ip")
    private String ip;

    @JsonProperty("host")
    private String host;

    @Override
    public String getResponseBodyType() {
        return "service_connection_details";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy