Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
langjava
package org.apache.servicemix.samples.citytime;

import javax.jws.WebService;

@WebService(serviceName = "CityTime", targetNamespace = "http://servicemix.apache.org/samples/citytime", 
            endpointInterface = "org.apache.servicemix.samples.citytime.CityTimePortType")
public class CityTimeImpl
    implements CityTimePortType
{


    public GetCityTimeResponse getCityTime(org.apache.servicemix.samples.citytime.GetCityTimeRequest GetCityTimeRequest) {
        throw new UnsupportedOperationException();
    }

}

...