Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "I-Card Provider"

m
 
(70 intermediate revisions by the same user not shown)
Line 1: Line 1:
==Overview==
+
{{#eclipseproject:technology.higgins|eclipse_custom_style.css}}
Some implementation aspects, especially claim mapping, of I-Cards being matched in ISS and presented in the ISS UI components are implemented by ''[[I-Card Provider]]s''. Some [[I-Card Provider]]s consume attributes from [[Digital Subject|Digital Subjects]] in [[Context|Contexts]] managed by IdAS, and maps them to the normalized claim "namespace" used by ISS. Other I-Card Providers are facades over remote Identity Providers. I-Card Providers are responsible for importing and exporting I-Cards to Higgins-defined formats as well as formats used by Microsoft CardSpace and other identity systems.
+
__NOTOC__
 +
Higgins supports multiple kinds of i-cards with differing characteristics. It does so by using multiple kinds of i-card providers, each of which implements one specific class of i-card. Although all i-cards implement the base "ICard" interface, some may implement one or more of the optional interfaces, and thus provide more or different characteristics.  
  
==API==
+
==Service/API==  
Iterable<ICardRef> getICards()
+
An [[I-Card Provider]] is responsible for:
 +
* Instantiating [[I-Card]]s that implement the [[I-Card Interfaces]]
 +
* Managing the persistence of i-cards (e.g. to/from working storage)
 +
* Supporting the [[I-Card Registry]] in importing I-Cards from one of the supported card data formats.
 +
** [[I-Card Provider]]s implements a ''canImportICard'' method that declares what formats it can support
 +
* Supporting the [[I-Card Registry]] in exporting I-Cards to one of the supported card data formats.
  
createICard()
+
[[Category:Higgins Components]]
 
+
importICard()
+
 
+
exportICard()
+
 
+
==See Also==
+
* [[Core Components]]
+

Latest revision as of 09:37, 15 December 2008

{{#eclipseproject:technology.higgins|eclipse_custom_style.css}}

Higgins supports multiple kinds of i-cards with differing characteristics. It does so by using multiple kinds of i-card providers, each of which implements one specific class of i-card. Although all i-cards implement the base "ICard" interface, some may implement one or more of the optional interfaces, and thus provide more or different characteristics.

Service/API

An I-Card Provider is responsible for:

  • Instantiating I-Cards that implement the I-Card Interfaces
  • Managing the persistence of i-cards (e.g. to/from working storage)
  • Supporting the I-Card Registry in importing I-Cards from one of the supported card data formats.
    • I-Card Providers implements a canImportICard method that declares what formats it can support
  • Supporting the I-Card Registry in exporting I-Cards to one of the supported card data formats.

Back to the top