OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

sdo message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: New Issue: Handling of Namespace in SDO Path



Proposed Categories:
Description:
 
There is currently no means of using namespace URI information in get(String path) and get*(String path) calls.  This makes it impossible to accurately retrieve open content properties.
 
Example:
 
Property property1 = TypeHelper.INSTANCE.getOpenContentProperty("http://www.example.org/namespace1", "my-property");
Property property2 = TypeHelper.INSTANCE.getOpenContentProperty("http://www.example.org/namespace2", "my-property");
 
myDataObject.set(property1, "foo");
myDataObject.set(property2, "bar");
 
myDataObject.get("my-property");  // Unclear what is returned as namespace URI information was not used in get method.
 
 


[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]