
de.mhus.test.ws.ws_model.WSEntity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ws-model Show documentation
Show all versions of ws-model Show documentation
ws-model OSGi blueprint bundle project.
The newest version!
package de.mhus.test.ws.ws_model;
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement
public class WSEntity {
private String name;
public WSEntity() {
}
public WSEntity(String name) {
setName(name);
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy