Don`t ignore "nullable" for dynamic types
-----------------------------------------

                 Key: TUSCANY-2747
                 URL: https://issues.apache.org/jira/browse/TUSCANY-2747
             Project: Tuscany
          Issue Type: Improvement
          Components: Java SDO Implementation
            Reporter: Andrey Utkin


Currently the "nullable" property`s property ignored for dynamic type 
definition.

For example, the following code snip don`t work:
=====
DataObject dType = factory.create("commonj.sdo",  "Type");
....
DataObject dProp = dType.createDataObject("property");
....
dProp.set("name", "XXXX");
dProp.set("nullable", Boolean.TRUE);
....
Type definedType = types.define(dType);
....
assertTrue(definedType.getProperty("XXXX").isNullable());

=====


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to