I do not want to create separate POJO for each element with attributes. For example, lets say my xml is:
<channel>
<title lang="en" relationship="xyz"> Title </title>
<restriction type="download" duration="20"> Restriction </restriction>
<video format="mp3" type="streaming"> Video </video>
</channel>
I have the following class
@XmlRootElement(name="channel")
class Channel
{
@XmlElement
private String title;
@XmlElement
private String restriction;
@XmlElement
private String video;
// getters and setters
}