Interface Dialect
- All Known Implementing Classes:
FragmentDialect
public interface Dialect
The interface for a Dialect objects.
-
Method Summary
Modifier and TypeMethodDescriptionprocessCreate(Create body) Method for processing incoming Create message by Dialect extension.booleanprocessDelete(Delete body, Representation representation) Method for processing incoming Delete message by Dialect extension.processGet(Get body, Representation representation) Method for processing incoming Get message by Dialect extension.processPut(Put body, Representation representation) Method for processing incoming Put message by Dialect extension.
-
Method Details
-
processGet
Method for processing incoming Get message by Dialect extension.- Parameters:
body- Get bodyrepresentation- XML representation stored in the ResourceManager- Returns:
- Representation, which will be returned in response.
-
processPut
Method for processing incoming Put message by Dialect extension.- Parameters:
body- Put bodyrepresentation- XML representation stored in the ResourceManager- Returns:
- Representation, which will be stored in ResourceManager.
-
processDelete
Method for processing incoming Delete message by Dialect extension.- Parameters:
body- Delete bodyrepresentation- XML representation stored in the ResourceManager- Returns:
- Representation, which will be stored in ResourceManager.
-
processCreate
Method for processing incoming Create message by Dialect extension.- Parameters:
body- Create body- Returns:
- Representation, which will be stored in ResourceManager.
-