Package com.sun.faban.harness.util

Examples of com.sun.faban.harness.util.InterfaceProbe$Route


            if ("1.6".compareTo(System.getProperty("java.version")) > 0) {
                logger.severe("Could not find a way to check the interface!");
                return false;
            }

            InterfaceProbe iProbe = null;
            try {
                iProbe = new InterfaceProbe(Config.THREADPOOL);
                iProbe.getIfMap(remoteMachines, ifMap);
            } catch (SocketException e) {
                logger.log(Level.SEVERE,
                        "Could not find a way to check the interface!", e);
            }
        }
View Full Code Here


        }
        return new NmnRoute(this, Route, route.getName(), positions);
    }

    public void read(InputStream source, CompactCalendar startDate, ParserContext<NmnRoute> context) throws Exception {
        Route route = unmarshal(source);
        context.appendRoute(process(route));
    }
View Full Code Here

        throw new UnsupportedOperationException();
    }

    private Route createNmn(NmnRoute route, int startIndex, int endIndex) {
        ObjectFactory objectFactory = new ObjectFactory();
        Route result = objectFactory.createRoute();
        result.setName(asRouteName(route.getName()));
        for (int i = startIndex; i < endIndex; i++) {
            NmnPosition position = route.getPosition(i);
            Route.Point point = objectFactory.createRoutePoint();
            point.setX(formatBigDecimal(position.getLongitude(), 7));
            point.setY(formatBigDecimal(position.getLatitude(), 7));
            point.setName(position.getDescription());
            result.getPoint().add(point);
        }
        return result;
    }
View Full Code Here

        }
        return marshaller;
    }

    public static Route unmarshal(InputStream in) throws JAXBException {
        Route result = null;
        try {
            result = (Route) newUnmarshaller().unmarshal(in);
        } catch (ClassCastException e) {
            throw new JAXBException("Parse error: " + e, e);
        }
View Full Code Here

TOP

Related Classes of com.sun.faban.harness.util.InterfaceProbe$Route

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.