Package com.soffid.iam.service.ejb
Interface SamlService
-
public interface SamlService
EJB SamlService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String[]
authenticate(String hostName, String app, String protocol, Map<String,String> response)
String
checkAuthenticationToken(String[] token)
List<String>
findIdentityProviders()
List<String>
findIdentityProviders(String url)
String
generateMetadata(String hostName)
SamlRequest
generateSamlRequest(String hostName, String app)
-
-
-
Method Detail
-
generateSamlRequest
SamlRequest generateSamlRequest(String hostName, String app) throws InternalErrorException
- Throws:
InternalErrorException
-
checkAuthenticationToken
String checkAuthenticationToken(String[] token) throws InternalErrorException
- Throws:
InternalErrorException
-
generateMetadata
String generateMetadata(String hostName) throws InternalErrorException
- Throws:
InternalErrorException
-
authenticate
String[] authenticate(String hostName, String app, String protocol, Map<String,String> response) throws InternalErrorException
- Throws:
InternalErrorException
-
findIdentityProviders
List<String> findIdentityProviders() throws InternalErrorException
- Throws:
InternalErrorException
-
findIdentityProviders
List<String> findIdentityProviders(String url) throws InternalErrorException
- Throws:
InternalErrorException
-
-