propertyList.add(dummyBean);
ArrayList attributes = new ArrayList();
OMFactory factory = OMAbstractFactory.getOMFactory();
QName elementQName = new QName("http://ec.org/software", "Employee", "emp");
OMNamespace attrNS = factory.createOMNamespace("mailto:whoever@whatever.com", "attrNS");
// add some attributes with namespaces
OMAttribute[] attribute = new OMAttribute[5];
for (int i = 0; i < 5; i++) {
attribute[i] = factory.createOMAttribute("Attr" + (i + 1), attrNS, "Value " + (i + 1));