String json = jsonSerializer.serialize(lucy);
assertAttribute("address", json);
assertAttribute("name", json);
jsonSerializer.use(Object.class, new ObjectJsonSerializer() {
public void serializeValue(final JsonContext jsonContext, Object value) {
jsonContext.writeOpenObject();
BeanSerializer beanVisitor = new BeanSerializer(jsonContext, value) {
@Override