Index
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form
A
- ATTRIBUTES_FOR_FETCHED_FIELDS - Static variable in class ch.helvethink.odoo.xmlrpc.OdooConstants
-
Odoo XML-RPC API attributes we want to fetch when fetching fields of a model
C
- ch.helvethink.odoo.models - package ch.helvethink.odoo.models
- ch.helvethink.odoo.xmlrpc - package ch.helvethink.odoo.xmlrpc
D
- DEFAULT_DATE_FORMAT - Static variable in class ch.helvethink.odoo.xmlrpc.OdooDateDeserializer
-
Default DateFormat used By Odoo
- description - Variable in class ch.helvethink.odoo.models.OdooId
-
Description of the identifier Not really useful except when debugging
- deserialize(JsonParser, DeserializationContext) - Method in class ch.helvethink.odoo.xmlrpc.OdooDateDeserializer
- deserialize(JsonParser, DeserializationContext) - Method in class ch.helvethink.odoo.xmlrpc.OdooIdDeserializer
E
- exists - Variable in class ch.helvethink.odoo.models.OdooId
-
Does the Id really exists In some cases null values are handled like a Boolean equals to false
F
- fetchListByIds(String, List<OdooId>, Class<T>) - Method in class ch.helvethink.odoo.xmlrpc.OdooClient
-
Same as above but with Odoo Ids, and no catch of the exception
- fetchListByIdsInt(String, List<Integer>, Class<T>) - Method in class ch.helvethink.odoo.xmlrpc.OdooClient
-
Same as
OdooClient.fetchObjectById(String, OdooId, Class)but with a List - fetchObjectById(String, OdooId, Class<T>) - Method in class ch.helvethink.odoo.xmlrpc.OdooClient
-
Fetch an object by its id
- fetchRecursivelyRelationShips(Object, int, List<Class<? extends OdooObj>>) - Method in class ch.helvethink.odoo.xmlrpc.OdooClient
-
The same as
OdooClient.fetchRelationShips(Object, List)but recursively Warn! - fetchRelationShips(Object, List<Class<? extends OdooObj>>) - Method in class ch.helvethink.odoo.xmlrpc.OdooClient
-
Fetch relationships from an Odoo object, without recursion
- FieldRelation - Annotation Interface in ch.helvethink.odoo.models
-
Describe an Odoo relation
- findByCriteria(int, Class<T>, String...) - Method in class ch.helvethink.odoo.xmlrpc.OdooClient
-
Find an Odoo object using criteria.
G
- getAllModels(String) - Method in class ch.helvethink.odoo.xmlrpc.OdooClient
-
Retrieve all Odoo models of the Odoo instance we're connected to
- getFields(String) - Method in class ch.helvethink.odoo.xmlrpc.OdooClient
-
Get fields From Odoo, for a given model
- getVersion() - Method in class ch.helvethink.odoo.xmlrpc.OdooClient
-
Retrieve Version from the Odoo Server
I
L
- LOG - Static variable in class ch.helvethink.odoo.xmlrpc.OdooClient
-
Simple logger
M
- MANDATORY_FIELD_FOR_ACCESSING_MODEL - Static variable in class ch.helvethink.odoo.xmlrpc.OdooConstants
-
Odoo XML-RPC API specific field.
O
- ODOO_FETCH_FIELDS_API - Static variable in class ch.helvethink.odoo.xmlrpc.OdooConstants
-
Odoo XML-RPC API fetch fields method
- ODOO_INSTROSPECTION_MODEL - Static variable in class ch.helvethink.odoo.xmlrpc.OdooConstants
-
Odoo XML-RPC API Introspection for models
- ODOO_SEARCH_READ_API - Static variable in class ch.helvethink.odoo.xmlrpc.OdooConstants
-
Odoo XML-RPC API search method
- OdooClient - Class in ch.helvethink.odoo.xmlrpc
-
Abstraction of Odoo's XML-RPC API
- OdooClient(String, String, String, String) - Constructor for class ch.helvethink.odoo.xmlrpc.OdooClient
-
Constructor with direct connection
- OdooClient(String, String, String, String, boolean) - Constructor for class ch.helvethink.odoo.xmlrpc.OdooClient
-
Constructor that initializes the Common API XML-RPC client
- OdooClient(XmlRpcClient, String, String, String, String, boolean) - Constructor for class ch.helvethink.odoo.xmlrpc.OdooClient
- OdooConstants - Class in ch.helvethink.odoo.xmlrpc
-
Simple constants class
- OdooDateDeserializer - Class in ch.helvethink.odoo.xmlrpc
-
Custom deserializer for date (when null a Boolean is returned by Odoo)
- OdooDateDeserializer() - Constructor for class ch.helvethink.odoo.xmlrpc.OdooDateDeserializer
-
Default constructor
- OdooId - Class in ch.helvethink.odoo.models
-
Encapsulate an Odoo Id Can be an object "false" due to xmlrpc implementation from Odoo
- OdooId() - Constructor for class ch.helvethink.odoo.models.OdooId
-
Default constructor
- OdooId(int, String) - Constructor for class ch.helvethink.odoo.models.OdooId
-
Constructor with id and description
- OdooId(Boolean) - Constructor for class ch.helvethink.odoo.models.OdooId
-
Constructor with boolean - useful for null values
- OdooId(Object[]) - Constructor for class ch.helvethink.odoo.models.OdooId
-
Constructor with array of objects For some reason sometimes Odoo sent ids under this format
- OdooIdDeserializer - Class in ch.helvethink.odoo.xmlrpc
-
Custom deserializer for ids (when null a Boolean is returned by Odoo)
- OdooIdDeserializer() - Constructor for class ch.helvethink.odoo.xmlrpc.OdooIdDeserializer
-
Default Constructor
- OdooModel - Annotation Interface in ch.helvethink.odoo.models
-
Annotation which describes which Odoo model corresponds to a field Used only on generated fields, not class For the equivalent for classes see
OdooObject - OdooObj - Interface in ch.helvethink.odoo.models
-
Interface which will be extended by all the generated class
- OdooObject - Annotation Interface in ch.helvethink.odoo.models
-
Annotation which describes which Odoo model corresponds to the class Used only on generated classes, not fields For the equivalent for classes see
OdooModel - OdooObjectMapper - Class in ch.helvethink.odoo.xmlrpc
-
Our object mapper with custom deserializers
- OdooObjectMapper() - Constructor for class ch.helvethink.odoo.xmlrpc.OdooObjectMapper
-
Simple constructor
V
- value() - Element in annotation interface ch.helvethink.odoo.models.FieldRelation
-
Type targeted by the field
- value() - Element in annotation interface ch.helvethink.odoo.models.OdooModel
-
Model name
- value() - Element in annotation interface ch.helvethink.odoo.models.OdooObject
-
Model name
X
- XML_RPC_EXECUTE_METHOD_NAME - Static variable in class ch.helvethink.odoo.xmlrpc.OdooConstants
-
Odoo XML-RPC API main method
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form