Package hermes.impl

Examples of hermes.impl.ConfigDAOImpl


            ResultSet rs = stmt.executeQuery(query);
            while (rs.next()) {
                String tableName = rs.getString(1);
                // tableName = getActualTopicName(tableName);
                LOG.debug("Fetching Topic information " + tableName);
                ConfigDAO configDao = new ConfigDAOImpl();
                DestinationConfig dc = configDao.createDestinationConfig(
                        tableName, Domain.TOPIC);
                dc.setDurable(false);
                dc.setName(tableName);
                dc.setShortName(tableName);
                String hostname = InetAddress.getLocalHost().getHostName();
View Full Code Here

TOP

Related Classes of hermes.impl.ConfigDAOImpl

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.