Package org.springframework.osgi.samples.weather.service

Examples of org.springframework.osgi.samples.weather.service.WeatherService


    public void testWeatherServiceExported() {

        ServiceReference ref = bundleContext.getServiceReference("org.springframework.osgi.samples.weather.service.WeatherService");
        assertNotNull("Service Reference is null", ref);
        try {
            WeatherService weather = (WeatherService) bundleContext.getService(ref);
            assertNotNull("Cannot find the service", weather);
            assertEquals(new Double(15.0), weather.getHistoricalHigh(new GregorianCalendar(2004, 0, 1).getTime()));
        }
        finally {
          bundleContext.ungetService(ref);
        }
    }
View Full Code Here

TOP

Related Classes of org.springframework.osgi.samples.weather.service.WeatherService

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.