io.github.dft.alliance.GetRatingSoap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alliance Show documentation
Show all versions of alliance Show documentation
Alliance API using JDK 11
package io.github.dft.alliance;
import io.github.dft.alliance.model.ArrayOfRatingOutput;
import io.github.dft.alliance.model.ObjectFactory;
import io.github.dft.alliance.model.RatingEngineInput;
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebResult;
import javax.jws.WebService;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.ws.RequestWrapper;
import javax.xml.ws.ResponseWrapper;
/**
* This class was generated by Apache CXF 3.5.2
* 2022-05-10T12:40:24.890+05:30
* Generated source version: 3.5.2
*
*/
@WebService(targetNamespace = "http://tempuri.org/", name = "GetRatingSoap")
@XmlSeeAlso({ObjectFactory.class})
public interface GetRatingSoap {
/**
* Get Rating
*/
@WebMethod(operationName = "GetRating", action = "http://tempuri.org/GetRating")
@RequestWrapper(localName = "GetRating", targetNamespace = "http://tempuri.org/", className = "com.taim.api.accessorial.GetRating")
@ResponseWrapper(localName = "GetRatingResponse", targetNamespace = "http://tempuri.org/", className = "com.taim.api.accessorial.GetRatingResponse")
@WebResult(name = "GetRatingResult", targetNamespace = "http://tempuri.org/")
public ArrayOfRatingOutput getRating(
@WebParam(name = "RatingParam", targetNamespace = "http://tempuri.org/")
RatingEngineInput ratingParam
);
}