Interface Dialect
-
- All Known Implementing Classes:
FragmentDialect
public interface DialectThe interface for a Dialect objects.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.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.ObjectprocessGet(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 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 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.
-
-