Package com.commander4j.interfaces

Examples of com.commander4j.interfaces.OutboundInterface


    inint.setPollingInterval((long) 1000);
    //Assign INBOUND interface to Map
    map.setInboundInterface(inint);
    //Enable MAP and associated Interfaces
   
    OutboundInterface outint = new OutboundInterface(map);
    outint.setType(IntefaceConnector.Connector_XML);
    outint.setOutputPath(System.getProperty("user.dir")+File.separator+"interface"+File.separator+"output");

    map.addOutboundInterface(outint);
   
    map.setEnabled(true);
   
View Full Code Here

TOP

Related Classes of com.commander4j.interfaces.OutboundInterface

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.