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 "IdAS API Open Issues"

Line 5: Line 5:
  
 
== IContext ==
 
== IContext ==
=== IContext.addEntity(URI entityType, String entityID) ===
+
=== addEntity(URI entityType, String entityID) ===
 
#To create a blank Entity just set the ''entityId'' param to null. Do we agree on this?
 
#To create a blank Entity just set the ''entityId'' param to null. Do we agree on this?
 
#Should we define IContext.addEntity(URI entityType) as a convenience method to create blank Entities?  
 
#Should we define IContext.addEntity(URI entityType) as a convenience method to create blank Entities?  
  
 
== IEntity ==
 
== IEntity ==
=== IEntity.getEntityId() ===
+
=== getEntityId() ===
 
#If called on a blank Entity does this return null?
 
#If called on a blank Entity does this return null?
 +
 +
=== remove() ===
 +
#Calling remove() removes the Entity and all of its associated attribute instances (although the javadoc doesn't say this) and the simple values of these attributes --complex values are not removed. Do we all agree with this?
  
 
== IFilter ==
 
== IFilter ==

Revision as of 13:37, 14 September 2008

{{#eclipseproject:technology.higgins}}

Higgins logo 76Wx100H.jpg

About

Catch-all page for misc issues related to the IdAS API

IContext

addEntity(URI entityType, String entityID)

  1. To create a blank Entity just set the entityId param to null. Do we agree on this?
  2. Should we define IContext.addEntity(URI entityType) as a convenience method to create blank Entities?

IEntity

getEntityId()

  1. If called on a blank Entity does this return null?

remove()

  1. Calling remove() removes the Entity and all of its associated attribute instances (although the javadoc doesn't say this) and the simple values of these attributes --complex values are not removed. Do we all agree with this?

IFilter

  1. General question: are blank Entities discoverable using the IFiler interfaces?

Back to the top