Interface Dialect
- All Known Implementing Classes:
FragmentDialect
public interface Dialect
The interface for a Dialect objects.
-
Method Summary
Modifier and TypeMethodDescriptionorg.apache.cxf.ws.transfer.RepresentationprocessCreate(org.apache.cxf.ws.transfer.Create body) Method for processing incoming Create message by Dialect extension.booleanprocessDelete(org.apache.cxf.ws.transfer.Delete body, org.apache.cxf.ws.transfer.Representation representation) Method for processing incoming Delete message by Dialect extension.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.RepresentationprocessPut(org.apache.cxf.ws.transfer.Put body, org.apache.cxf.ws.transfer.Representation representation) Method for processing incoming Put message by Dialect extension.
-
Method Details
-
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 bodyrepresentation- 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 bodyrepresentation- 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 bodyrepresentation- 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.
-