Richard Allred
2019-05-23 497620c4d1bcb410267c56351432f87fb3aee5a4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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;
    }
    
}