return obj;
}
public void marshal(RegistryObject object,Element parent)
{
GetAssertionStatusReport request = (GetAssertionStatusReport)object;
Element element = parent.getOwnerDocument().createElement(TAG_NAME);
AbstractHandler handler = null;
String generic = request.getGeneric();
if (generic != null)
element.setAttribute("generic",generic);
AuthInfo authInfo = request.getAuthInfo();
if (authInfo != null)
{
handler = maker.lookup(AuthInfoHandler.TAG_NAME);
handler.marshal(authInfo,element);
}
String status = request.getCompletionStatus();
if (status != null)
{
handler = maker.lookup(CompletionStatusHandler.TAG_NAME);
handler.marshal(new CompletionStatus(status),element);
}