Home || Visual Search || Applications || Architecture || Important Messages || OGL || Src

void Impala::Core::IDash::XmlJob::Export ( Util::IOBuffer ioBuf  )  [inline]

Definition at line 93 of file XmlJob.h.

References mId, mProgressPercentage, mQuerySet, mStatus, mStatusDetails, mVideo, and Impala::Util::IOBuffer::Puts().

Referenced by Impala::Core::IDash::Server::StatusJob().

00094     {
00095         ioBuf->Puts("<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?>");
00096         ioBuf->Puts("<job xmlns=\"http://www.i-dash.eu/ActionData\"");
00097         ioBuf->Puts("     xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"");
00098         ioBuf->Puts("     xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"");
00099         ioBuf->Puts("     xmlns:xlink=\"http://www.w3.org/1999/xlink\"");
00100         ioBuf->Puts("     xsi:schemaLocation=\"http://www.i-dash.eu/ActionData http://www.i-dash.eu/Schemas/ActionData/Job.xsd\">");
00101         ioBuf->Puts("  <id>" + mId + "</id>");
00102         ioBuf->Puts("  <video xlink:type=\"simple\" xlink:href=\"" + mVideo + "\" entityType=\"Video\"/>");
00103         ioBuf->Puts("  <querySet xlink:type=\"simple\" xlink:href=\"" + mQuerySet + "\" entityType=\"QuerySet\"/>");
00104         ioBuf->Puts("  <status>" + mStatus  + "</status>");
00105         ioBuf->Puts("  <statusDetails>" + mStatusDetails  + "</statusDetails>");
00106         ioBuf->Puts("  <progressPercentage>" + mProgressPercentage + "</progressPercentage>");
00107         ioBuf->Puts("</job>");
00108     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:19:53 2011 for ImpalaSrc by  doxygen 1.5.1