Interface TenantDetailsService
public interface TenantDetailsService
Core interface which loads tenant-specific data.
This service is used in multi-tenant applications for loading a tenant by a given issuer.
- See Also:
TenantDetails
-
Method Summary
Modifier and Type Method Description java.util.Optional<? extends TenantDetails>getByIssuer(java.lang.String issuer)Get a tenant by issuer url.
-
Method Details
-
getByIssuer
Get a tenant by issuer url.- Parameters:
issuer- the issuer url- Returns:
- the tenant wrapped in an
OptionalorOptional.empty()if there is no tenant with the given issuer url
-