Package org.mule.cxf.weatherservice.myweather

Examples of org.mule.cxf.weatherservice.myweather.GetCityWeatherByZIP


     *
     * @param input
     * @return
     */
    public GetCityWeatherByZIP createRequest(Object input) {
        GetCityWeatherByZIP request = new GetCityWeatherByZIP();
        request.setZIP("30075");
        return request;
    }
View Full Code Here


    /**
     * Create a request to query by zip code.
     */
    public GetCityWeatherByZIP createRequest(Object input) {
        GetCityWeatherByZIP request = new GetCityWeatherByZIP();
        request.setZIP("30075");
        return request;
    }
View Full Code Here

TOP

Related Classes of org.mule.cxf.weatherservice.myweather.GetCityWeatherByZIP

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.