public static class MyJAXBObjectResource {
@GET
public MyJAXBObject getMyJAXBObject() throws IOException {
MyJAXBObject p = new MyJAXBObject();
MyProperties myProps = new MyProperties();
myProps.addProperty("I rock?", "Yes, yes I do.");
p.setConfiguration(myProps);
return p;
}