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

com.mercadopago.insight.dto.DnsInfo Maven / Gradle / Ivy

There is a newer version: 1.8.0
Show newest version
package com.mercadopago.insight.dto;


import com.google.gson.annotations.SerializedName;

import java.io.Serializable;

public final class DnsInfo implements Serializable {

    /**
     *
     */
    private static final long serialVersionUID = 1L;

    /**
     * Since we use Builder pattern, we can use public final class attributes
     */
    @SerializedName("nameserver-address")
    public final String nameServerAddress;

    @SerializedName("total-lookup-time-millis")
    public final Long lookupTime;

    /**
     * Constructor must be private to enforce Builder pattern usage
     *
     * @param builder the {@link Builder} used to gather {@link DnsInfo} data
     */
    private DnsInfo(Builder builder) {
        this.nameServerAddress = builder.nameServerAddress;
        this.lookupTime = builder.lookupTime;
    }

    public Builder newBuilder() {
        Builder builder = new Builder();

        builder.nameServerAddress = this.nameServerAddress;
        builder.lookupTime = this.lookupTime;

        return builder;
    }

    /**
     * The {@link DnsInfo} Builder
     */
    public static class Builder {

        private String nameServerAddress;
        private Long lookupTime;

        public Builder withNameServerAddress(String nameServerAddress) {
            this.nameServerAddress = nameServerAddress;
            return this;
        }

        public Builder withLookupTime(Long lookupTime) {
            this.lookupTime = lookupTime;
            return this;
        }

        public DnsInfo build() {
            return new DnsInfo(this);
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy