Interface SoapMarshalling

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

    
    public interface SoapMarshalling
     implements Service
                        

    JAXB SOAP 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(Envelope envelope, OutputStream outputStream) Marshals a SOAP message.
      abstract Envelope unmarshal(InputStream inputStream) Unmarshals a SOAP message.
      abstract Envelope unmarshal(Reader reader) Unmarshals a SOAP message.
      • 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(Envelope envelope, OutputStream outputStream)

        Marshals a SOAP message.

        Parameters:
        envelope - The envelope of the SOAP message.
        outputStream - The output stream where to write marshalled data to.
      • unmarshal

         abstract Envelope unmarshal(InputStream inputStream)

        Unmarshals a SOAP message.

        Parameters:
        inputStream - the input message to unmarshal a SOAP message from.
        Returns:

        the unmarshalled SOAP envelope.

      • unmarshal

         abstract Envelope unmarshal(Reader reader)

        Unmarshals a SOAP message.

        Parameters:
        reader - the input message to unmarshal a SOAP message from.
        Returns:

        the unmarshalled SOAP envelope.