Package org.eclipse.wst.wsi.internal.core.report.impl

Examples of org.eclipse.wst.wsi.internal.core.report.impl.EntryImpl


          if (!omitRequest(messageEntryRequest))
          {
            // Create entry
            // ADD: Need to create entry from report
            //Entry entry = this.reporter.getReport().createEntry();
            Entry entry = new EntryImpl();
            entry.setEntryType(
                  EntryType.getEntryType(MessageValidator.TYPE_MESSAGE_REQUEST));
            entry.setReferenceID(messageEntryRequest.getId());
            entry.setEntryDetail(messageEntryRequest);
 
            // Create the context for the request-response pair
            EntryContext requestTargetContext =
                 new EntryContext(
                      entry,
                      messageEntryRequest,
                      messageEntryResponse);
            if (requestTargetContext != null)
              processLogEntry(requestTargetContext);
 
            // Create entry
            // ADD: Need to create entry from report
            //Entry entry = this.reporter.getReport().createEntry();
            entry = new EntryImpl();
            entry.setEntryType(
              EntryType.getEntryType(MessageValidator.TYPE_MESSAGE_RESPONSE));
            entry.setReferenceID(messageEntryResponse.getId());
            entry.setEntryDetail(messageEntryResponse);
 
            EntryContext responseTargetContext =
                  new EntryContext(
                    entry,
                    messageEntryRequest,
View Full Code Here


        /* Process all remaining requests in the messageEntryList */
        for (int i = 0; i < messageEntryList.size(); i++) {
            MessageEntry logEntry = (MessageEntry) messageEntryList.get(i);
            if (!omitRequest(logEntry))
            {
              Entry entry = new EntryImpl();
              entry.setEntryType(EntryType.getEntryType(
                    MessageValidator.TYPE_MESSAGE_REQUEST));
              entry.setReferenceID(logEntry.getId());
              entry.setEntryDetail(logEntry);
              EntryContext requestTargetContext =
                new EntryContext(entry, logEntry, null);
              if (requestTargetContext != null)
                processLogEntry(requestTargetContext);
            }
View Full Code Here

TOP

Related Classes of org.eclipse.wst.wsi.internal.core.report.impl.EntryImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.