Dan K
2019-07-22 81fbcfc2409f885dd8405042b05d272d4eb629e5
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;
    }
    
}