package org.savara.purchasing.creditagency; 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.4.0 * 2012-09-02T18:03:55.846+01:00 * Generated source version: 2.4.0 * */ @WebService(targetNamespace = "http://www.savara.org/Purchasing/CreditAgency", name = "CreditAgency") @XmlSeeAlso({org.jboss.examples.creditagency.ObjectFactory.class}) @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE) public interface CreditAgency { @WebResult(name = "CreditRating", targetNamespace = "http://www.jboss.org/examples/creditAgency", partName = "content") @WebMethod(action = "http://www.savara.org/Purchasing/CreditAgency/creditCheck") public org.jboss.examples.creditagency.CreditRatingType creditCheck( @WebParam(partName = "content", name = "CreditCheckRequest", targetNamespace = "http://www.jboss.org/examples/creditAgency") org.jboss.examples.creditagency.CreditCheckType content ) throws CustomerUnknownFault; }