public class Hello { public static void main(String args[]) { //Call syntax: $GatewayTest UUID id = UUID.randomUUID(); String strDDSVendor = args[2]; SupportedDDSVendors ddsVendor = UniversalDDSLayerFactory.convertStrToSupportedDDSVendor(strDDSVendor); new Gateway(Integer.parseInt(args[1]), args[0], id, false, ddsVendor); System.out.println("Gateway started..."); System.out.println("Gateway MR-UDP IP: " + args[0] + ":" + args[1]); } }