/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package sample.ws.service; import java.util.logging.Logger; /** * Examples code for spring boot with CXF services. HelloPortImpl is the * implementation for Hello interface. This class was generated by Apache CXF * 3.1.0 2015-05-18T13:02:03.098-05:00 Generated source version: 3.1.0 */ @javax.jws.WebService(serviceName = "HelloService", portName = "HelloPort", targetNamespace = "http://service.ws.sample/", endpointInterface = "sample.ws.service.Hello") public class HelloPortImpl implements Hello { private static final Logger LOG = Logger.getLogger(HelloPortImpl.class.getName()); public java.lang.String sayHello(java.lang.String myname) { LOG.info("Executing operation sayHello" + myname); try { return "Hello, Welcome to CXF Spring boot " + myname + "!!!"; } catch (java.lang.Exception ex) { ex.printStackTrace(); throw new RuntimeException(ex); } } }