Package com.xmultra.util

Examples of com.xmultra.util.InitMapHolder


   
    /**
     * Add DTD into xml get message configuration file.
     */
    private String insertDTD(InitMapHolder imh, String getMessageConfigDocumentStr) {
        InitMapHolder initMapHolder = imh;

        // Get the preparser config file and DTD.
        String getMessageConfigDTDFile =
            this.fileUtils.addRoot(GetMessageConfig.GET_MESSAGE_DTD_FILE);

View Full Code Here


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

        // Create a new InitMapHolder.
        initMapHolder = new InitMapHolder();

        // Create new Logger object.
        logger = new Logger(initMapHolder, managerNode, this);

        // Create FileUtils and store in InitMapHolder.
View Full Code Here

        // Create Strings object.
        this.strings = new Strings();

        // Create a new InitMapHolder.
        initMapHolder = new InitMapHolder();

        try {
            // Get the Xmultra config Document.
            xmultraConfigDocument = getXmlDocumentFromFile(xmultraConfigFile);
        }
View Full Code Here

     * @param xmlParseUtils Has utilities that are used to parse out the
     *                      config file.
     */
    DigestEntryGetMessage (InitMapHolder imh, Strings strings) {

         InitMapHolder initMapHolder = imh;

        this.strings= strings;

        // Get the Logger reference.
        logger = (Logger)initMapHolder.getEntry(InitMapHolder.LOGGER);

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

        // Get the XmlParseUtils reference.
        this.xmlParseUtils = (XmlParseUtils)initMapHolder.getEntry(
                            InitMapHolder.XML_PARSE_UTILS);

        // Get the FileUtils reference.
        fileUtils = (FileUtils)initMapHolder.getEntry(
                            InitMapHolder.FILE_UTILS);

    }
View Full Code Here

    /**
     * Constructor.
     */
    DigestProcessorConfig (InitMapHolder imh, Strings strings) {

        InitMapHolder initMapHolder = imh;
        this.strings= strings;


        // Get the Logger reference.
        logger = (Logger)initMapHolder.getEntry(InitMapHolder.LOGGER);

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

        // Get the XmlParseUtils reference.
        this.xmlParseUtils = (XmlParseUtils)initMapHolder.getEntry(
                            InitMapHolder.XML_PARSE_UTILS);
    }
View Full Code Here

TOP

Related Classes of com.xmultra.util.InitMapHolder

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.