24 lines
326 B
Java
24 lines
326 B
Java
package com.redhat.training.model;
|
|
|
|
import java.net.InetAddress;
|
|
|
|
public class Host {
|
|
|
|
private String ip;
|
|
private String hostname;
|
|
|
|
public Host(String ip, String hostname) {
|
|
this.ip = ip;
|
|
this.hostname = hostname;
|
|
}
|
|
|
|
public String getIp() {
|
|
return ip;
|
|
}
|
|
|
|
public String getHostname() {
|
|
return hostname;
|
|
}
|
|
|
|
}
|
|
|