Interface OnJPAWriteContent
- All Superinterfaces:
ODataCallback
The interface is a call back interface that enables OData JPA Processor to get JPA provider specific implementation of java.sql.Blob and java.sql.Clob instances.
Implement this interface if the JPA Model uses the data types java.sql.Blob and java.sql.Clob for its entity properties.
-
Method Summary
Modifier and TypeMethodDescriptiongetJPABlob(byte[] binaryData) Implement this method to instantiate JPA provider specific implementation of java.sql.Blob instance from an array of bytes.getJPAClob(char[] characterData) Implement this method to instantiate JPA provider specific implementation of java.sql.Clob instance from an array of characters.
-
Method Details
-
getJPABlob
Implement this method to instantiate JPA provider specific implementation of java.sql.Blob instance from an array of bytes.- Parameters:
binaryData- is an array of bytes- Returns:
- an instance of type
Blob - Throws:
ODataJPARuntimeException- Caso ocorra exceção
-
getJPAClob
Implement this method to instantiate JPA provider specific implementation of java.sql.Clob instance from an array of characters.- Parameters:
characterData- is an array of characters- Returns:
- an instance of type
Clob - Throws:
ODataJPARuntimeException- Caso ocorra exceção
-