Class AbstractCredentialRetrievalFactory<T extends CredentialRetrieval>
- java.lang.Object
-
- pl.edu.icm.unity.engine.api.authn.AbstractCredentialRetrievalFactory<T>
-
- All Implemented Interfaces:
CredentialRetrievalFactory
,DescribedObject
,NamedObject
public abstract class AbstractCredentialRetrievalFactory<T extends CredentialRetrieval> extends Object implements CredentialRetrievalFactory
Common boilerplate forCredentialRetrievalFactory
implementations.- Author:
- K. Benedyczak
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDescription()
String
getName()
String
getSupportedBinding()
boolean
isCredentialExchangeSupported(String credentialExchangeId)
CredentialRetrieval
newInstance()
-
-
-
Method Detail
-
getDescription
public String getDescription()
- Specified by:
getDescription
in interfaceDescribedObject
- Returns:
- human readable description of the object.
-
getName
public String getName()
- Specified by:
getName
in interfaceNamedObject
- Returns:
- human readable name of the object. Must be unique for the object class.
-
newInstance
public CredentialRetrieval newInstance()
- Specified by:
newInstance
in interfaceCredentialRetrievalFactory
-
getSupportedBinding
public String getSupportedBinding()
- Specified by:
getSupportedBinding
in interfaceCredentialRetrievalFactory
-
isCredentialExchangeSupported
public boolean isCredentialExchangeSupported(String credentialExchangeId)
- Specified by:
isCredentialExchangeSupported
in interfaceCredentialRetrievalFactory
-
-