JsonParser jsonParser = new JsonParserImpl();
JsonDefaultHandler handler = new JsonDefaultHandler();
jsonParser.parse(new ByteArrayInputStream(source.getBytes()), handler);
JsonValue jsonValue = handler.getJsonObject();
//System.out.println(jsonValue);
ClassTransfBean o = ObjectBuilder.createObject(ClassTransfBean.class, jsonValue);
assertEquals(ForTestClass001.class, o.getKlass());
}