WSDL

@XmlSerialName(value = "definitions", namespace = "http://schemas.xmlsoap.org/wsdl/")
data class WSDL(val name: String, val targetNamespace: String, val documentation: Documentation? = null, val types: List<Types>, val messages: List<Message>, val portTypes: List<PortType>, val bindings: List<Binding>, val services: List<Service>)(source)

Constructors

Link copied to clipboard
constructor(name: String, targetNamespace: String, documentation: Documentation? = null, types: List<Types>, messages: List<Message>, portTypes: List<PortType>, bindings: List<Binding>, services: List<Service>)

Properties

Link copied to clipboard
@XmlElement
@XmlSerialName(value = "binding", namespace = "http://schemas.xmlsoap.org/wsdl/")
val bindings: List<Binding>
Link copied to clipboard
@XmlElement
@XmlSerialName(value = "documentation", namespace = "http://schemas.xmlsoap.org/wsdl/")
val documentation: Documentation?
Link copied to clipboard
@XmlElement
@XmlSerialName(value = "message", namespace = "http://schemas.xmlsoap.org/wsdl/")
val messages: List<Message>
Link copied to clipboard
Link copied to clipboard
@XmlElement
@XmlSerialName(value = "portType", namespace = "http://schemas.xmlsoap.org/wsdl/")
val portTypes: List<PortType>
Link copied to clipboard
@XmlElement
@XmlSerialName(value = "service", namespace = "http://schemas.xmlsoap.org/wsdl/")
val services: List<Service>
Link copied to clipboard
Link copied to clipboard
@XmlElement
@XmlSerialName(value = "types", namespace = "http://schemas.xmlsoap.org/wsdl/")
val types: List<Types>