Package com.xmultra.log

Examples of com.xmultra.log.MessageLogEntry


        // Store the time Xmultra loaded for error logging.
        SystemContext.setProgramStartTime(System.currentTimeMillis());

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

        startingManagersSyncFlag = new SyncFlag(true);
    }
View Full Code Here


        initMapHolder = imh;
        xmlParseUtils = (XmlParseUtils)initMapHolder.getEntry(
                            InitMapHolder.XML_PARSE_UTILS);
        this.strings = (Strings)initMapHolder.getEntry(InitMapHolder.STRINGS);

        this.msgEntry = new MessageLogEntry(this, VERSION);

        this.logger = (Logger)initMapHolder.getEntry(InitMapHolder.LOGGER);

        this.nim = (Nim)initMapHolder.getEntry(InitMapHolder.NIM);
View Full Code Here

    public boolean init (Node n, InitMapHolder imh, SyncFlag sf,
                         SyncFlag stopFlag) {

        if (!super.init(n, imh, sf, stopFlag)) 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);
View Full Code Here

    public boolean init(Node n, InitMapHolder imh, SyncFlag sf, SyncFlag stopFlag) {

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

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

        List<String> supportingScripts = new ArrayList<String>();
        this.arguments = new ArrayList<String>();
View Full Code Here

   *
   * @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.
View Full Code Here

        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);
View Full Code Here

     *
     * @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

        // 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

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

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

        this.strings = new Strings();

        // Get the user.
View Full Code Here

        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);
View Full Code Here

TOP

Related Classes of com.xmultra.log.MessageLogEntry

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.