Package org.codehaus.xfire.xmlbeans

Source Code of org.codehaus.xfire.xmlbeans.WeatherService2

package org.codehaus.xfire.xmlbeans;

import net.webservicex.GetWeatherByZipCodeDocument;
import net.webservicex.GetWeatherByZipCodeResponseDocument;
import net.webservicex.WeatherForecasts;

/**
* @author <a href="mailto:dan@envoisolutions.com">Dan Diephouse</a>
*/
public class WeatherService2
{
    public GetWeatherByZipCodeResponseDocument.GetWeatherByZipCodeResponse
        GetWeatherByZipCode( GetWeatherByZipCodeDocument.GetWeatherByZipCode body )
    {
        GetWeatherByZipCodeResponseDocument.GetWeatherByZipCodeResponse res =
            GetWeatherByZipCodeResponseDocument.GetWeatherByZipCodeResponse.Factory.newInstance();
       
        WeatherForecasts weather =
            res.addNewGetWeatherByZipCodeResult();
       
        weather.setLatitude(1);
        weather.setLongitude(1);
        weather.setPlaceName("Grand Rapids, MI");
       
        return res;
    }
   
    public WeatherForecasts GetForecasts( )
    {
        WeatherForecasts weather =
            WeatherForecasts.Factory.newInstance();
       
        weather.setLatitude(1);
        weather.setLongitude(1);
        weather.setPlaceName("Grand Rapids, MI");
       
        return weather;
    }
}
TOP

Related Classes of org.codehaus.xfire.xmlbeans.WeatherService2

TOP
Copyright © 2018 www.massapi.com. 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.