de.scoopgmbh.customerservice.CustomerServiceImpl Maven / Gradle / Ivy
/*
* Copyright 2002-2013 SCOOP Software GmbH
*
* Licensed 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 de.scoopgmbh.customerservice;
import java.util.logging.Logger;
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebResult;
import javax.jws.WebService;
import javax.jws.soap.SOAPBinding;
import javax.xml.bind.annotation.XmlSeeAlso;
/**
* This class was generated by Apache CXF 2.6.0
* 2013-12-19T10:16:59.550+01:00
* Generated source version: 2.6.0
*
*/
@javax.jws.WebService(
serviceName = "CustomerServiceService",
portName = "CustomerServicePort",
targetNamespace = "http://customerservice.scoopgmbh.de/",
wsdlLocation = "classpath:wsdl/CustomerService.wsdl",
endpointInterface = "de.scoopgmbh.customerservice.CustomerService")
public class CustomerServiceImpl implements CustomerService {
private static final Logger LOG = Logger.getLogger(CustomerServiceImpl.class.getName());
/* (non-Javadoc)
* @see de.scoopgmbh.customerservice.CustomerService#getCustomersByMsisdn(de.scoopgmbh.customerservice.GetCustomersByMsisdnRequest parameters )*
*/
public de.scoopgmbh.customerservice.GetCustomersByMsisdnResponse getCustomersByMsisdn(GetCustomersByMsisdnRequest parameters) {
LOG.info("Executing operation getCustomersByMsisdn");
System.out.println(parameters);
try {
de.scoopgmbh.customerservice.GetCustomersByMsisdnResponse _return = null;
return _return;
} catch (java.lang.Exception ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy