Package com.xmultra.manager.watch.jcw

Examples of com.xmultra.manager.watch.jcw.JcronMessage


                            List fileList,
                            int fileListIndex) {
        // For Jcron
        if (messageClassName.endsWith(XmultraConfig.JCRON_MESSAGE)) {

            JcronMessage jcronMessage   = ((JcronMessage) fileList.get(fileListIndex));
            // this.srcDir              = jcronMessage.getSrcDir();
            //// this.address           = jcronMessage.getAddress();
            // this.getSrcFile          = jcronMessage.getSrcFile();
            this.getDstDir              = jcronMessage.getDstDir();
            //// this.message           = jcronMessage.getMessage();
            this.minFileAge             = jcronMessage.getMinFileAge();
            this.minFileAgeUnits        = jcronMessage.getMinFileAgeUnits();
            this.maxFileAge             = jcronMessage.getMaxFileAge();
            this.maxFileAgeUnits        = jcronMessage.getMaxFileAgeUnits();
            this.deleteAfterRetrieval   = jcronMessage.getDeleteAfterRetrieval();

            this.messageNode            = jcronMessage.getMessageNode();
            this.getLocationsNode       = xmlParseUtils.getChildNode(messageNode, XmultraConfig.GET_LOCATIONS_ELEMENT);
            this.getSrcLocationNode     = xmlParseUtils.getChildNode(getLocationsNode, XmultraConfig.GET_SRC_LOCATION_ELEMENT);

            this.messageInserts         = jcronMessage.getMessageInserts();
        }
        else {
            // JdirWatch received a GetMessage file.
            currentFile = (File)fileList.get(fileListIndex);
View Full Code Here

TOP

Related Classes of com.xmultra.manager.watch.jcw.JcronMessage

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.