Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Dereferencing Complex Values Backlog"

(Proposal)
(Proposal)
Line 12: Line 12:
 
     IEntity IAttribute.addComplexValue(IEntity)
 
     IEntity IAttribute.addComplexValue(IEntity)
 
   or maybe:
 
   or maybe:
     IEntity IAttribute.addEntitiyValue(IEntity)
+
     IEntity IAttribute.addEntityValue(IEntity)
  
 
   IComplexAttrValue <-- goes away
 
   IComplexAttrValue <-- goes away

Revision as of 16:55, 12 March 2008

About

This page describes a proposed change to the IdAP API and the IContext SPI. This page was created to support a discussion.

Proposal

  • We change the IdAS API and the IContext SPI to return IEntity implementations
  • In other words, eliminate IComplexValue and replace it with IEntity

Examples...

 this:
   IComplexAttrValue IAttribute.addComplexValue(URI dataType)
 becomes:
   IEntity IAttribute.addComplexValue(IEntity)
 or maybe:
   IEntity IAttribute.addEntityValue(IEntity)
 IComplexAttrValue <-- goes away

See Also

Back to the top