Class FragmentDialect
- java.lang.Object
-
- org.apache.cxf.ws.transfer.dialect.fragment.FragmentDialect
-
-
Constructor Summary
Constructors Constructor Description FragmentDialect()
-
Method Summary
All Methods Instance Methods Concrete 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.javax.xml.bind.JAXBElement<org.apache.cxf.ws.transfer.dialect.fragment.ValueType>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.voidregisterLanguage(String iri, FragmentDialectLanguage language)Register FragmentDialectLanguage object for IRI.voidunregisterLanguage(String iri)Unregister FragmentDialectLanguage object for IRI.
-
-
-
Method Detail
-
processGet
public javax.xml.bind.JAXBElement<org.apache.cxf.ws.transfer.dialect.fragment.ValueType> processGet(org.apache.cxf.ws.transfer.Get body, org.apache.cxf.ws.transfer.Representation representation)Description copied from interface:DialectMethod for processing incoming Get message by Dialect extension.- Specified by:
processGetin interfaceDialect- Parameters:
body- Get bodyrepresentation- XML representation stored in the ResourceManager- Returns:
- Representation, which will be returned in response.
-
processPut
public org.apache.cxf.ws.transfer.Representation processPut(org.apache.cxf.ws.transfer.Put body, org.apache.cxf.ws.transfer.Representation representation)Description copied from interface:DialectMethod for processing incoming Put message by Dialect extension.- Specified by:
processPutin interfaceDialect- Parameters:
body- Put bodyrepresentation- XML representation stored in the ResourceManager- Returns:
- Representation, which will be stored in ResourceManager.
-
processDelete
public boolean processDelete(org.apache.cxf.ws.transfer.Delete body, org.apache.cxf.ws.transfer.Representation representation)Description copied from interface:DialectMethod for processing incoming Delete message by Dialect extension.- Specified by:
processDeletein interfaceDialect- Parameters:
body- Delete bodyrepresentation- XML representation stored in the ResourceManager- Returns:
- Representation, which will be stored in ResourceManager.
-
processCreate
public org.apache.cxf.ws.transfer.Representation processCreate(org.apache.cxf.ws.transfer.Create body)
Description copied from interface:DialectMethod for processing incoming Create message by Dialect extension.- Specified by:
processCreatein interfaceDialect- Parameters:
body- Create body- Returns:
- Representation, which will be stored in ResourceManager.
-
registerLanguage
public void registerLanguage(String iri, FragmentDialectLanguage language)
Register FragmentDialectLanguage object for IRI.- Parameters:
iri-language-
-
unregisterLanguage
public void unregisterLanguage(String iri)
Unregister FragmentDialectLanguage object for IRI.- Parameters:
iri-
-
-