Package com.stripe

Class StripeEventNotificationHandlerWithoutVerification

java.lang.Object
com.stripe.StripeEventNotificationHandlerWithoutVerification

public class StripeEventNotificationHandlerWithoutVerification extends Object
A variant of StripeEventNotificationHandler that parses events without verifying webhook signatures. Intended for pre-authenticated channels like AWS EventBridge or Azure Event Grid.

Because this is a sibling of StripeEventNotificationHandler rather than a subclass, it does not expose that class's two-argument handle at all — passing a signature header here is a compile error rather than a runtime one.

Do not instantiate directly. Use StripeEventNotificationHandler.withoutVerification(StripeClient, EventNotificationFallbackCallback) or StripeClient.notificationHandlerWithoutVerification(EventNotificationFallbackCallback) instead.