In my current JAXB marshaller application, I need to conditionally write an element into xml. Let me see if I can think of an example without making it sound like a college homework assignment.
I have a class called Student with properties called merit and status. Not all students will have Merit. Only the non-Freshman students will have merits ( property called status gives the information on whether student is freshman or not). While I traverse through the list of Students and marshall into xml, I need to conditionally display Merit. How do I handle such dynamic creation of XML elements with JAXB? I can think of a solution where I split my Student class into FreshManStudents and OtherStudents and define merit as @XMlTransient for Otherstudents. Isn't that a bit overkill to refactor my object just for JAXB purpose?
Alternatively, I can have the logic inside getMerit adn have the getMerit return NULL for Freshman students. Assuming JAXB ignores null objects, is that a valid ( read elegant) way to solve the problem?
Thanks for your opinions and suggestions
public class Student {
private Merit merit;
private String status;
public Merit getMerit() {
return merit;
}
public void setMerit(Merit m) {
merit= m;
}
public String getStatus() {
return status;
}
public void setStatus(String s) {
status= s;
}
}