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

Authentication Materials

Revision as of 11:48, 10 March 2009 by Unnamed Poltroon (Talk) (Proposal for Goal #1)

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

Higgins logo 76Wx100H.jpg

About

This page describes the concept of Authentication Materials used in the Context Data Model 1.1. Authentication Materials are needed to open a Context.

Current Situation

Currently, IdAS authentication materials in the IContext.open() call are defined to be just a java.lang.Object. This gives maximal flexibility to Context Provider implementations.

Goals

We would like to be able to do the following:

  1. Have identifiers for common types of Authentication Materials
    • This is needed in scenarios when you do not know a priori what type(s) of Authentication Materials a Context accepts.
    • For example, for R-Cards we use UDIs to point to Higgins Contexts and Entities. When a UDI is resolved, we need to know what type of Authentication Materials is needed for opening the Context it points to.
  2. (De-)serialize a concrete instance of Authentication Materials (e.g. to/from XML, String, etc.)

Proposal for Goal #1

urn:higgins:authmethod:1.0:m-infocard?policyhere
  • The special identifier urn:higgins:authmethod:1.0:implied means that the party trying to open the Context must somehow know by itself what Authentication Materials to use. E.g. in SSO scenarios, that party may already have a session established with the user, or in some other way know their credentials

Proposal for Goal #2

  • Introduce an interface "IAuthnMaterials" in org.eclipse.higgins.idas.api.
    • Make this only a marker interface without methods
    • As a convention, implementations of this interface should provide a toString() method that can serialize the Authentication Materials to a String, and a constructor with the arguments (IContext, String), which can be used to reconstruct the Authentication Materials from the String.

Back to the top