Interface Dialect

All Known Implementing Classes:
FragmentDialect

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

    • processGet

      Object processGet(Get body, 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

      Representation processPut(Put body, 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(Delete body, 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

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