<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Class Overview</title><link>https://sourceforge.net/p/openerpjavaapi/wiki/Class%2520Overview/</link><description>Recent changes to Class Overview</description><atom:link href="https://sourceforge.net/p/openerpjavaapi/wiki/Class%20Overview/feed" rel="self"/><language>en</language><lastBuildDate>Thu, 23 May 2013 12:31:43 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/openerpjavaapi/wiki/Class%20Overview/feed" rel="self" type="application/rss+xml"/><item><title>Class Overview modified by Pieter van der Merwe</title><link>https://sourceforge.net/p/openerpjavaapi/wiki/Class%2520Overview/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v4
+++ v5
@@ -17,7 +17,7 @@

 OpenERPCommand
 ---
-The OpenERPCommand class wraps around the basic OpenERP commands.  It does no validation, error checking or conversions.  If you find the ObjectAdapter too restrictive in its validation, you can go back to the OpenERPCommand object (but please also start a [discussion](https://sourceforge.net/p/openerpjavaapi/discussion/) or raise a [ticket](https://sourceforge.net/p/openerpjavaapi/tickets/) to get it fixed).  See the [Conversion Considerations] section for a couple of type conversion hints.
+The OpenERPCommand class wraps around the basic OpenERP commands.  It does no validation, error checking or conversions.  If you find the ObjectAdapter too restrictive in its validation, you can go back to the OpenERPCommand object (but please also raise a [ticket](https://github.com/DeBortoliWines/openerp-java-api/issues) to get it fixed).  See the Conversion Considerations section on this page for a couple of type conversion hints.

 Unsupported functions
 ---
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Pieter van der Merwe</dc:creator><pubDate>Thu, 23 May 2013 12:31:43 -0000</pubDate><guid>https://sourceforge.net680d0afed9af1b24ae420cab043cc7e710a845df</guid></item><item><title>WikiPage Class Overview modified by Pieter van der Merwe</title><link>https://sourceforge.net/p/openerpjavaapi/wiki/Class%2520Overview/</link><description>&lt;pre&gt;--- v3 
+++ v4 
@@ -25,6 +25,6 @@
 
 Conversion Considerations
 ---
-If you do make use of the OpenERPCommand or Session object to communicate with the server, the following needs to be taken into account.  Python dictionaries map to Java HashMap objects and Python lists map to Object\[\].  OpenERP does not support [extended XMLRPC types](http://ws.apache.org/xmlrpc/types.html) (ie floats etc, you have to use doubles) and null values map to the boolean 'false' (sending and receiving).  Each function may also have different requirements, for example the import_data function requires that many2many values are a comma separated list of field names (yes, names not ids).  See the OpenERP website for how many2many fields are handled when using the create/write functions (remembering that lists are Object\[\]).
+If you do make use of the OpenERPCommand or Session object to communicate with the server, the following needs to be taken into account.  Python dictionaries map to Java HashMap objects and Python lists map to Object\[\].  OpenERP does not support [extended XMLRPC types](http://ws.apache.org/xmlrpc/types.html) (ie floats etc, you have to use doubles) and null values map to the boolean 'false' (sending and receiving).  Each function may also have different requirements, for example the import_data function requires that many2many values are a comma separated list of object names (yes, names not ids).  See the OpenERP website for how many2many fields are handled when using the create/write functions (remembering that lists are Object\[\]).
 
 Unless the call is very simple or you are forced to use the other classes, the ObjectAdapter is the suggested method of communicating with the server.  It takes all conversion considerations into account.
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Pieter van der Merwe</dc:creator><pubDate>Wed, 21 Sep 2011 00:33:37 -0000</pubDate><guid>https://sourceforge.net9921c5503874e0ef192425e729634973a7249047</guid></item><item><title>WikiPage Class Overview modified by Pieter van der Merwe</title><link>https://sourceforge.net/p/openerpjavaapi/wiki/Class%2520Overview/</link><description>&lt;pre&gt;--- v2 
+++ v3 
@@ -6,7 +6,7 @@
 
 Wrapper Classes
 ---
-The two main classes used to communicate to the OpenERP server are:
+The two main classes used to communicate with the OpenERP server are:
 1. ObjectAdapter
 2. OpenERPCommand
 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Pieter van der Merwe</dc:creator><pubDate>Wed, 21 Sep 2011 00:31:34 -0000</pubDate><guid>https://sourceforge.net0cdae41ad8523b4d58dd895c7450c09bb026a301</guid></item><item><title>WikiPage Class Overview modified by Pieter van der Merwe</title><link>https://sourceforge.net/p/openerpjavaapi/wiki/Class%2520Overview/</link><description>&lt;pre&gt;&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Pieter van der Merwe</dc:creator><pubDate>Tue, 20 Sep 2011 13:40:31 -0000</pubDate><guid>https://sourceforge.net70d3269fe54f96ff7cd2fdd20e3bff8e4d5d1e6c</guid></item><item><title>WikiPage Overview modified by Pieter van der Merwe</title><link>https://sourceforge.net/p/openerpjavaapi/wiki/Overview/</link><description>This section provides a brief overview of the main objects the API provides.

Session Class
---
The starting point for communicating with the OpenERP server is the Session class.  The session class holds session credentials and the context object.  It provides the 'executeCommand' method used by other classes to communicate with the server.

Wrapper Classes
---
The two main classes used to communicate to the OpenERP server are:
1. ObjectAdapter
2. OpenERPCommand


ObjectAdapter
---
The Object Adapter class is the preferred way of communicating with the OpenERP server.  It does error checking on filters and data, converts data types, formats values and wraps OpenERP responses into RowCollection objects.

OpenERPCommand
---
The OpenERPCommand class wraps around the basic OpenERP commands.  It does no validation, error checking or conversions.  If you find the ObjectAdapter too restrictive in its validation, you can go back to the OpenERPCommand object (but please also start a [discussion](https://sourceforge.net/p/openerpjavaapi/discussion/) or raise a [ticket](https://sourceforge.net/p/openerpjavaapi/tickets/) to get it fixed).  See the [Conversion Considerations] section for a couple of type conversion hints.

Unsupported functions
---
If you find that the ObjectAdapter and OpenERPCommand classes don't wrap around the function you want to use, you can call the 'executeCommand' function on the Session object.  

Conversion Considerations
---
If you do make use of the OpenERPCommand or Session object to communicate with the server, the following needs to be taken into account.  Python dictionaries map to Java HashMap objects and Python lists map to Object\[\].  OpenERP does not support [extended XMLRPC types](http://ws.apache.org/xmlrpc/types.html) (ie floats etc, you have to use doubles) and null values map to the boolean 'false' (sending and receiving).  Each function may also have different requirements, for example the import_data function requires that many2many values are a comma separated list of field names (yes, names not ids).  See the OpenERP website for how many2many fields are handled when using the create/write functions (remembering that lists are Object\[\]).

Unless the call is very simple or you are forced to use the other classes, the ObjectAdapter is the suggested method of communicating with the server.  It takes all conversion considerations into account.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Pieter van der Merwe</dc:creator><pubDate>Tue, 20 Sep 2011 13:40:01 -0000</pubDate><guid>https://sourceforge.net3afcb2f4b761e3f399d21ac67c0fa5b56afa9e40</guid></item></channel></rss>