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