Examples of ErrorLogEntry


Examples of com.xmultra.log.ErrorLogEntry

   * @return True if successful setting up.
   */
  boolean init(Node setupNode, XmlParseUtils xmlParseUtils, Logger logger) {

    this.msgEntry = new MessageLogEntry(this, VERSION);
    this.errEntry = new ErrorLogEntry(this, VERSION);
    this.logger = logger;
    this.xmlParseUtils = xmlParseUtils;

    // Get the MessageSenderClassName.
    this.messageSenderClassName = xmlParseUtils.getAttributeValueFromNode(
View Full Code Here

Examples of com.xmultra.log.ErrorLogEntry

        if ( !this.destWriter.init(imh, rssMergeEl, new DateUtils()) ) {
            return false;
        }

        msgEntry = new MessageLogEntry(this, VERSION);
        errEntry = new ErrorLogEntry(this, VERSION);

        // Get the directory to move a file to after processing it.
        this.srcDoneLocFile = getLocationDirectory(XmultraConfig.SRC_DONE_LOCATION_ELEMENT);

        // if src done is not specified, delete files after they are processed.
View Full Code Here

Examples of com.xmultra.log.ErrorLogEntry

     * @param setupData A holder of data to setup the JmsProcessor.
     */
    boolean init(XmlParseUtils xmlParseUtils, Logger logger) {

        this.msgEntry = new MessageLogEntry(this, VERSION);
        this.errEntry = new ErrorLogEntry(this, VERSION);
        this.logger = logger;
        this.xmlParseUtils = xmlParseUtils;

        return true;
    }
View Full Code Here

Examples of com.xmultra.log.ErrorLogEntry

        // The JmsProcessor node.
        Node aProcessorNode = n;

        // Create the log entry objects.
        msgEntry = new MessageLogEntry(this, VERSION);
        errEntry = new ErrorLogEntry(this, VERSION);

        // Create Strings instance and add it to the InitMapHolder.
        strings = new Strings();
        initMapHolder.setEntry(this, InitMapHolder.STRINGS, strings);
View Full Code Here

Examples of com.xmultra.log.ErrorLogEntry

            return false;
        }

        retrySyncFlag = new SyncFlag(false);
        msgEntry = new MessageLogEntry(this, VERSION);
        errEntry = new ErrorLogEntry(this, VERSION);

        this.strings = new Strings();

        // Get the user.
        user = xmlParseUtils.getAttributeValueFromNode(aProcessorNode, XmultraConfig.USER_ATTRIBUTE);
View Full Code Here

Examples of com.xmultra.log.ErrorLogEntry

        xformerEl = e;
        msgHolder = new MessageHolder();

        // Get the Log references.
        msgEntry = new MessageLogEntry(this, VERSION);
        errEntry = new ErrorLogEntry(this, VERSION);
        logger = (Logger)imh.getEntry(InitMapHolder.LOGGER);

        // Get the file/Xml util references.
        fileUtils = (FileUtils)imh.getEntry(InitMapHolder.FILE_UTILS);
        xmlParseUtils = (XmlParseUtils)imh.getEntry(InitMapHolder.XML_PARSE_UTILS);
View Full Code Here

Examples of com.xmultra.log.ErrorLogEntry

        if (!super.init(n, imh, sf, stopFlag)) return false;

        // Create the log entry objects.
        msgEntry = new MessageLogEntry(this, VERSION);
        errEntry = new ErrorLogEntry(this, VERSION);

        // Creates a DocMeter that shows average rates over the last 100 docs.
        docMeter = new DocMeter(100);

        // Create Strings instance and add it to the InitMapHolder.
View Full Code Here

Examples of com.xmultra.log.ErrorLogEntry

        // The WebServicesProcessor node.
        Node aProcessorNode = n;

        // Create the log entry objects.
        msgEntry = new MessageLogEntry(this, VERSION);
        errEntry = new ErrorLogEntry(this, VERSION);

        // Create Strings instance and add it to the InitMapHolder.
        strings = new Strings();
        initMapHolder.setEntry(this, InitMapHolder.STRINGS, strings);
View Full Code Here

Examples of com.xmultra.log.ErrorLogEntry

        // The WebServicesProcessor node.
        Node aProcessorNode = n;

        // Create the log entry objects.
        msgEntry = new MessageLogEntry(this, VERSION);
        errEntry = new ErrorLogEntry(this, VERSION);

        // Create Strings instance and add it to the InitMapHolder.
        strings = new Strings();
        initMapHolder.setEntry(this, InitMapHolder.STRINGS, strings);
View Full Code Here

Examples of com.xmultra.log.ErrorLogEntry

        if (!super.init(n, imh, sf, stopFlag)) return false;

        this.strings = new Strings();

        msgEntry = new MessageLogEntry(this, VERSION);
        errEntry = new ErrorLogEntry(this, VERSION);

        // Get the SourceLocation String reference (used in error messages).
        srcLocation =
            (String)initMapHolder.getEntry(InitMapHolder.SOURCE_LOCATION);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.