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 lombok.Data;

import java.net.URI;
import java.util.regex.Pattern;

@Data
public class Ping {

    private URI url;
    private int timeout = 30 * 1000;
    private Pattern pattern = Pattern.compile(".*");
    private boolean sslVerify = true;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy