cn.lnkdoc.sdk.uia.common.interceptor.IUiaClientInterceptor.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of awesome-uia-sdk Show documentation
Show all versions of awesome-uia-sdk Show documentation
Awesome Uia SDK for Java
Copyright © 2023 lnkdoc All rights reserved.
The newest version!
package cn.lnkdoc.sdk.uia.common.interceptor
import okhttp3.Request
import okhttp3.Response
/**
* UIA客户端拦截器
*
* @author langkye
* @since 1.0.0.RELEASE
*/
interface IUiaClientInterceptor {
/**
* 拦截请求
*/
fun interceptRequest(request: Request)
/**
* 拦截响应
*/
fun interceptResponse(response: Response)
}