com.chargebee.RequestInterceptor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chargebee-java Show documentation
Show all versions of chargebee-java Show documentation
Java client library for ChargeBee API
/*
* Copyright (c) 2017 ChargeBee Inc
* All Rights Reserved.
*/
package com.chargebee;
import com.chargebee.internal.RequestBase;
/**
*
* @author cb-ajit
*/
public interface RequestInterceptor {
public ApiResponse handleRequest(RequestWrap extends RequestBase> requestWrap) throws Exception;
}