Kernel kernel = bootstrap();
configurator = kernel.getConfigurator();
info = configurator.getBeanInfo(SimpleBean.class);
SimpleBean bean = (SimpleBean) instantiate(configurator, info);
metaData = new AbstractBeanMetaData();
HashSet attributes = new HashSet();
attributes.add(new AbstractPropertyMetaData("aString", stringValue.toString()));
attributes.add(new AbstractPropertyMetaData("aByte", byteValue.toString()));
attributes.add(new AbstractPropertyMetaData("aBoolean", booleanValue.toString()));
// TODO character