All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.perimeterx.api.blockhandler.BlockHandler Maven / Gradle / Ivy

package com.perimeterx.api.blockhandler;

import com.perimeterx.models.PXContext;
import com.perimeterx.models.exceptions.PXException;

import javax.servlet.http.HttpServletResponseWrapper;

/**
 * BlockHandler is a common interface to be applied on block event
 * 

* Created by Shikloshi on 03/07/2016. */ @FunctionalInterface public interface BlockHandler { /** * Blocking handle will be called when pxVerify will return that user is not verified */ void handleBlocking(PXContext context, HttpServletResponseWrapper responseWrapper) throws PXException; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy