summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/openslx/dnbd3/xml/Client.java
blob: 8cc7879e3bc55560faa6ff943b95ae4e2de8b0dc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package org.openslx.dnbd3.xml;

import org.simpleframework.xml.Attribute;

public class Client {

    @Attribute
    private String ip;
    @Attribute
    private String file;

    public Client(@Attribute(name="ip") String ip, @Attribute(name="file") String file) {
        this.ip = ip;
        this.file = file;
    }

    public String getIp() {
        return ip;
    }

    public void setIp(String ip) {
        this.ip = ip;
    }

    public String getFile() {
        return file;
    }

    public void setFile(String file) {
        this.file = file;
    }

}