Interface Dialect

  • All Known Implementing Classes:
    FragmentDialect

    public interface Dialect
    The interface for a Dialect objects.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      org.apache.cxf.ws.transfer.Representation processCreate​(org.apache.cxf.ws.transfer.Create body)
      Method for processing incoming Create message by Dialect extension.
      boolean processDelete​(org.apache.cxf.ws.transfer.Delete body, org.apache.cxf.ws.transfer.Representation representation)
      Method for processing incoming Delete message by Dialect extension.
      Object processGet​(org.apache.cxf.ws.transfer.Get body, org.apache.cxf.ws.transfer.Representation representation)
      Method for processing incoming Get message by Dialect extension.
      org.apache.cxf.ws.transfer.Representation processPut​(org.apache.cxf.ws.transfer.Put body, org.apache.cxf.ws.transfer.Representation representation)
      Method for processing incoming Put message by Dialect extension.
    • Method Detail

      • processGet

        Object processGet​(org.apache.cxf.ws.transfer.Get body,
                          org.apache.cxf.ws.transfer.Representation representation)
        Method for processing incoming Get message by Dialect extension.
        Parameters:
        body - Get body
        representation - XML representation stored in the ResourceManager
        Returns:
        Representation, which will be returned in response.
      • processPut

        org.apache.cxf.ws.transfer.Representation processPut​(org.apache.cxf.ws.transfer.Put body,
                                                             org.apache.cxf.ws.transfer.Representation representation)
        Method for processing incoming Put message by Dialect extension.
        Parameters:
        body - Put body
        representation - XML representation stored in the ResourceManager
        Returns:
        Representation, which will be stored in ResourceManager.
      • processDelete

        boolean processDelete​(org.apache.cxf.ws.transfer.Delete body,
                              org.apache.cxf.ws.transfer.Representation representation)
        Method for processing incoming Delete message by Dialect extension.
        Parameters:
        body - Delete body
        representation - XML representation stored in the ResourceManager
        Returns:
        Representation, which will be stored in ResourceManager.
      • processCreate

        org.apache.cxf.ws.transfer.Representation processCreate​(org.apache.cxf.ws.transfer.Create body)
        Method for processing incoming Create message by Dialect extension.
        Parameters:
        body - Create body
        Returns:
        Representation, which will be stored in ResourceManager.