How can I produce the following XML fragment using JAXB?
<sequence md5="1de2cf633901ff1f00785735c8ce7e70">MPTINSALRKVARVRLTSG</sequence>
My class is as follows:
@XmlType(name = "SequenceType")
public class Sequence {
private String md5;
private String sequence;
@XmlAttribute
public String getMd5() {
return md5;
}
// JAXB annotation here??
public String getSequence() {
return sequence;
}
}
@XmlValue on the sequence property.
@XmlType(name = "SequenceType")
public class Sequence {
private String md5;
private String sequence;
@XmlAttribute
public String getMd5() {
return md5;
}
@XmlValue
public String getSequence() {
return sequence;
}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With