package org.mike.jaxb; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; @XmlRootElement @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Mike", namespace = "http://org.mike/") public class Mike implements IMike { private String id; public void setId(String id) { this.id = id; } public String getId() { return id; } }