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

Org.eclipse.higgins.icard

// Return the human friendly name of the card
String getCardName()

// Return the human friendly name of the card issuer (creator)
String getIssuerName()

// Return the EPR of the card issuer
// For CardSpace cards this is either the local STS endpoint (for
// self-asserted cards) or a remote STS (for managed cards)
// For some other kinds of cards this is might be an IdAS service endpoint
EndpointReference getICardIssuerEndpoint()

// Return a background image of the card
Image getCardImage()

// Return the mime type of the background image (JPEG or GIF)
String getImageMimeType()

// Return when the card was first issued
Datetime getTimeIssued()

// Return the date and time after which the card should be 
// treated as expired and invalid. If there is no expiration 
// date/time then return null? throw exception?
Datetime getTimeExpires()

// Return true if this card handles only simple claim types
boolean hasSimpleClaims()

// If card handles only simple claim types then 
// return a list of all possible types of claims that are supported
// throw exception otherwise
Iterable<String> getSupportedSimpleClaimTypes()

// If card handles complex claim types then
// return an OWL-DL schema describing types of complex claim 
// objects that are supported
String getSupportedComplexClaimTypes()

// Given a relying party policy Policy, return true
// if this card can provide the claims required/desired by the relying party
// else return false
boolean isMatch(Policy)


DigitalIdentity requestDigitalIdentity(Policy, DigitalIdentity credential)

  • Credential used to authenticate to the Token Issuer–-may be null if Token Issuer policy doesn’t require it

Iterable<TokenService> getTokenServices()

  • endpoint references, credential hint, credential selector

Misc

  • String getUUID()
  • String getVersion()

getPolicy() – list of supported token types, supported claims

boolean getRequireAppliesTo()

  • Is the RP identity required in the token request message?

ReleasePolicy getReleasePolicy()

See Also

Back to the top