summaryrefslogblamecommitdiffstats
path: root/src/main/java/org/openslx/dnbd3/xml/Client.java
blob: 8cc7879e3bc55560faa6ff943b95ae4e2de8b0dc (plain) (tree)
































                                                                                         
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;
    }

}