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 "Org.eclipse.higgins.iss"

(Service)
(Overview)
Line 6: Line 6:
 
  // if 'hbx' is true, else the [[ISS Client UI]] to display all cards
 
  // if 'hbx' is true, else the [[ISS Client UI]] to display all cards
 
  // highlighting matching card(s). After user selects card(s),  
 
  // highlighting matching card(s). After user selects card(s),  
  // getDigitalIdentity from the card(s) (if it/they are TokenCards).
+
  // getDigitalIdentity from the card(s) (combining DIs if needed?)
 
  IDigitalIdentity getDigitalIdentity(RPSPolicy policy, boolean hbx)
 
  IDigitalIdentity getDigitalIdentity(RPSPolicy policy, boolean hbx)
 
   
 
   
Line 17: Line 17:
 
  // RP will interact with directly --Higgins steps out of the flow
 
  // RP will interact with directly --Higgins steps out of the flow
 
  URI getURI(RPSPolicy policy)
 
  URI getURI(RPSPolicy policy)
 
 
  
 
==See Also==
 
==See Also==

Revision as of 01:43, 14 December 2006

Overview

// Iterate through cards in the I-Card Registry, use Policy engine
// to examine the supported claim of each to find one or more cards that 
// singly or together satisfy the policy. Invoke the ISS Web UI 
// if 'hbx' is true, else the ISS Client UI to display all cards
// highlighting matching card(s). After user selects card(s), 
// getDigitalIdentity from the card(s) (combining DIs if needed?)
IDigitalIdentity getDigitalIdentity(RPSPolicy policy, boolean hbx)

// (Presuming that only one card matched, and of course that the
// card was a URICard for which IdAS can connect and open a Context)
// Return the Context of the selected card.
IContext getContext(RPSPolicy policy)

// Return a URI to a network endpoint (e.g. an OpenID IdP) that the
// RP will interact with directly --Higgins steps out of the flow
URI getURI(RPSPolicy policy)

See Also

Back to the top