Known Direct Subclasses
|
Known Indirect Subclasses
|
Class Overview
A ODataConnectorCapabilitiesAdapter is a wrapper around ODataConnector that implements org.mule.api.Capabilities interface.
Summary
| Public Methods |
|
boolean
|
isCapableOf(Capability capability)
Returns true if this module implements such capability
|
|
[Expand]
Inherited Methods |
From class
org.mule.modules.odata.ODataConnector
|
BatchResult
|
batch(MuleMessage message, List<NestedProcessor> processors)
Executes a series of insert/update/deletes in a batch grouped in one changeset.
|
|
void
|
connect(String username, String password, String serviceUri)
|
|
void
|
createEntity(MuleMessage message, Object entity, String entitySetName)
Inserts an entity from an input pojo.
|
|
void
|
deleteEntity(MuleMessage message, Object entity, String entitySetName, String keyAttribute)
Deletes an entity represented by a pojo on the OData service
To specify the entitie's id, your pojo can rather have an attribute of type
Guid or to have a string attribute annotated with Guid
|
|
void
|
disconnect()
|
|
String
|
getConnectionIdentifier()
|
|
ODataConsumerFactory
|
getConsumerFactory()
|
|
ODataVersion
|
getConsumerVersion()
|
|
List<Object>
|
getEntities(String returnClass, String entitySetName, String filter, String orderBy, String expand, Integer skip, Integer top, String select)
Reads entities from an specified set and returns it as a list of pojos.
|
|
FormatType
|
getFormatType()
|
|
PropertyNamingFormat
|
getNamingFormat()
|
|
boolean
|
isConnected()
|
|
void
|
setConsumerFactory(ODataConsumerFactory consumerFactory)
|
|
void
|
setConsumerVersion(ODataVersion consumerVersion)
|
|
void
|
setFormatType(FormatType formatType)
|
|
void
|
setNamingFormat(PropertyNamingFormat namingFormat)
|
|
void
|
updateEntity(MuleMessage message, Object entity, String entitySetName, String keyAttribute)
Updates an entity represented by a pojo on the OData service
To specify the entitie's id, your pojo can rather have an attribute of type
Guid or to have a string attribute annotated with Guid
|
|
From class
java.lang.Object
|
Object
|
clone()
|
|
boolean
|
equals(Object arg0)
|
|
void
|
finalize()
|
|
final
Class<?>
|
getClass()
|
|
int
|
hashCode()
|
|
final
void
|
notify()
|
|
final
void
|
notifyAll()
|
|
String
|
toString()
|
|
final
void
|
wait()
|
|
final
void
|
wait(long arg0, int arg1)
|
|
final
void
|
wait(long arg0)
|
|
From interface
org.mule.modules.odata.basic.Capabilities
|
abstract
boolean
|
isCapableOf(Capability capability)
Returns true if this module implements such
capability
|
|
Public Constructors
public
ODataConnectorCapabilitiesAdapter
()
Public Methods
public
boolean
isCapableOf
(Capability capability)
Returns true if this module implements such capability
Parameters
| capability
| The capability to test for |
Returns
- True if it does, false otherwise