Interface WsdlMarshalling

  • All Implemented Interfaces:
    com.google.common.util.concurrent.Service

    
    public interface WsdlMarshalling
     implements Service
                        

    JAXB WSDL marshalling service.

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      abstract void marshal(TDefinitions wsdlDefinitions, OutputStream outputStream) Marshals a WSDL document.
      abstract TDefinitions unmarshal(InputStream inputStream) Unmarshals a WSDL document.
      • Methods inherited from class com.google.common.util.concurrent.Service

        addListener, awaitRunning, awaitTerminated, failureCause, isRunning, startAsync, state, stopAsync
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail

      • marshal

         abstract void marshal(TDefinitions wsdlDefinitions, OutputStream outputStream)

        Marshals a WSDL document.

        Parameters:
        wsdlDefinitions - the WSDL definition to marshal.
        outputStream - the output stream where to write marshalled data to.
      • unmarshal

         abstract TDefinitions unmarshal(InputStream inputStream)

        Unmarshals a WSDL document.

        Parameters:
        inputStream - the input WSDL definition to unmarshal.
        Returns:

        the unmarshalled WSDL definition.