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

mn.foreman.api.model.Network Maven / Gradle / Ivy

There is a newer version: 1.78.0
Show newest version
package mn.foreman.api.model;

import lombok.Builder;
import lombok.Data;

/** A network configuration. */
@Data
@Builder
public class Network {

    /** The DNS entry. */
    public final String dns;

    /** The gateway. */
    public final String gateway;

    /** The hostname. */
    public final String hostname;

    /** The IP address. */
    public final String ipAddress;

    /** The netmask. */
    public final String netmask;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy