Interface ProfileInterceptorResult
-
- All Superinterfaces:
net.shibboleth.utilities.java.support.component.Component,net.shibboleth.utilities.java.support.component.IdentifiedComponent
- All Known Implementing Classes:
AbstractProfileInterceptorResult
public interface ProfileInterceptorResult extends net.shibboleth.utilities.java.support.component.IdentifiedComponentRepresents the result of a profile interceptor flow intended for storage by aStorageService.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetStorageContext()Get the storage context.InstantgetStorageExpiration()Get the storage expiration.StringgetStorageKey()Get the storage key.StringgetStorageValue()Get the storage value.
-
-
-
Method Detail
-
getStorageContext
@Nonnull @NotEmpty String getStorageContext()
Get the storage context.- Returns:
- the storage context
-
getStorageKey
@Nonnull @NotEmpty String getStorageKey()
Get the storage key.- Returns:
- the storage key
-
getStorageValue
@Nonnull @NotEmpty String getStorageValue()
Get the storage value.- Returns:
- the storage value
-
getStorageExpiration
@Nullable Instant getStorageExpiration()
Get the storage expiration.- Returns:
- the storage expiration
-
-