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

com.alexecollins.docker.orchestration.model.Ping Maven / Gradle / Ivy

There is a newer version: 2.11.29
Show newest version
package com.alexecollins.docker.orchestration.model;


import com.fasterxml.jackson.annotation.JsonProperty;

import java.net.URI;

public class Ping {

	@JsonProperty
	private URI url;
	@JsonProperty(required = false)
	private int timeout = 30 * 1000;

	public URI getUrl() {
		return url;
	}

	public int getTimeout() {
		return timeout;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy