io.convergence_platform.services.infrastructure.dto.ServiceConnectionDetailsResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of service-lib Show documentation
Show all versions of service-lib Show documentation
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";
}
}