Interface AuthStreamEnrollmentService
-
- All Implemented Interfaces:
public interface AuthStreamEnrollmentService
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceAuthStreamEnrollmentService.WithRawResponseA view of AuthStreamEnrollmentService that provides access to raw HTTP responses for each method.
-
Method Summary
Modifier and Type Method Description abstract AuthStreamEnrollmentService.WithRawResponsewithRawResponse()Returns a view of this service that provides access to raw HTTP responses for each method. abstract AuthStreamEnrollmentServicewithOptions(Consumer<ClientOptions.Builder> modifier)Returns a view of this service with the given option modifications applied. AuthStreamSecretretrieveSecret()Retrieve the ASA HMAC secret key. abstract AuthStreamSecretretrieveSecret(AuthStreamEnrollmentRetrieveSecretParams params, RequestOptions requestOptions)AuthStreamSecretretrieveSecret(AuthStreamEnrollmentRetrieveSecretParams params)AuthStreamSecretretrieveSecret(RequestOptions requestOptions)UnitrotateSecret()Generate a new ASA HMAC secret key. abstract UnitrotateSecret(AuthStreamEnrollmentRotateSecretParams params, RequestOptions requestOptions)UnitrotateSecret(AuthStreamEnrollmentRotateSecretParams params)UnitrotateSecret(RequestOptions requestOptions)-
-
Method Detail
-
withRawResponse
abstract AuthStreamEnrollmentService.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
withOptions
abstract AuthStreamEnrollmentService withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
retrieveSecret
AuthStreamSecret retrieveSecret()
Retrieve the ASA HMAC secret key. If one does not exist for your program yet, calling this endpoint will create one for you. The headers (which you can use to verify webhooks) will begin appearing shortly after calling this endpoint for the first time. See this page for more detail about verifying ASA webhooks.
-
retrieveSecret
abstract AuthStreamSecret retrieveSecret(AuthStreamEnrollmentRetrieveSecretParams params, RequestOptions requestOptions)
-
retrieveSecret
AuthStreamSecret retrieveSecret(AuthStreamEnrollmentRetrieveSecretParams params)
-
retrieveSecret
AuthStreamSecret retrieveSecret(RequestOptions requestOptions)
-
rotateSecret
Unit rotateSecret()
Generate a new ASA HMAC secret key. The old ASA HMAC secret key will be deactivated 24 hours after a successful request to this endpoint. Make a
GET /auth_stream/secretrequest to retrieve the new secret key.
-
rotateSecret
abstract Unit rotateSecret(AuthStreamEnrollmentRotateSecretParams params, RequestOptions requestOptions)
-
rotateSecret
Unit rotateSecret(AuthStreamEnrollmentRotateSecretParams params)
-
rotateSecret
Unit rotateSecret(RequestOptions requestOptions)
-
-
-
-