Examples of ErrorLogEntry


Examples of com.xmultra.log.ErrorLogEntry

    nim = (Nim) initMapHolder.getEntry(InitMapHolder.NIM);

    tagPatterns = new HashMap();

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

    FileUtils fileUtils =
        (FileUtils) initMapHolder.getEntry(
        InitMapHolder.FILE_UTILS);
View Full Code Here

Examples of com.xmultra.log.ErrorLogEntry

        initMapHolder = imh;

        retrySyncFlag = new SyncFlag(false);
        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

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

        if (!super.init(n, imh, sf, stopFlag)) return false;
        retrySyncFlag = new SyncFlag(false);
        msgEntry = new MessageLogEntry(this, VERSION);
        errEntry = new ErrorLogEntry(this, VERSION);

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

Examples of com.xmultra.log.ErrorLogEntry

     */
    public FileUtils(Logger log, String root) {

        // Set/create the log references.
        logger = log;
        errEntry = new ErrorLogEntry(this, VERSION);
        msgEntry = new MessageLogEntry(this, VERSION);

        // Set the root directory.
        xmultraRootDir = new File(root).toString();
    }
View Full Code Here

Examples of com.xmultra.log.ErrorLogEntry

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

        Element splitProcessorEl = (Element)n;

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

        // Make a Strings instance.
        strings = new Strings();

        fileUtils = (FileUtils)initMapHolder.getEntry(InitMapHolder.FILE_UTILS);
View Full Code Here

Examples of com.xmultra.log.ErrorLogEntry

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

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

        // Make a Strings instance.
        this.strings = new Strings();
        imh.setEntry(this, InitMapHolder.STRINGS, strings);
View Full Code Here

Examples of com.xmultra.log.ErrorLogEntry

        this.retrySyncFlag = new SyncFlag(false);

        Node aProcessorNode = n;

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

        this.imh = imh;

        // Make a Strings instance.
        this.strings = new Strings();
View Full Code Here

Examples of com.xmultra.log.ErrorLogEntry

                                      XmultraConfig.XMULTRA_CONFIG_DTD_FILE);

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

Examples of com.xmultra.log.ErrorLogEntry

                         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);
        if (this.srcDoneLocFile == null) return false;
View Full Code Here

Examples of com.xmultra.log.ErrorLogEntry

        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>();

        //Cycle through the script nodes.
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.