return obj;
}
public void marshal(RegistryObject object,Element parent)
{
GetRegistryInfo request = (GetRegistryInfo)object;
Element element = parent.getOwnerDocument().createElement(TAG_NAME);
AbstractHandler handler = null;
String generic = request.getGeneric();
if (generic != null)
element.setAttribute("generic",generic);
parent.appendChild(element);
}