补上类注释

This commit is contained in:
bryan31 2021-12-08 13:39:47 +08:00
parent 23c459c539
commit b6eebd4e57
5 changed files with 25 additions and 0 deletions

View File

@ -11,6 +11,11 @@ import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Forest的拦截器
* @author Bryan.Zhang
* @since 1.3.5
*/
public class TLogForestInterceptor implements Interceptor<Object> {
private final Logger log = LoggerFactory.getLogger(this.getClass());

View File

@ -16,6 +16,11 @@ import org.slf4j.LoggerFactory;
import java.io.IOException;
/**
* HttpClient5的拦截器
* @author Bryan.Zhang
* @since 1.3.3
*/
public class TLogHttpClient5Interceptor implements HttpRequestInterceptor {
private static final Logger log = LoggerFactory.getLogger(TLogHttpClient5Interceptor.class);

View File

@ -15,6 +15,11 @@ import org.slf4j.LoggerFactory;
import java.io.IOException;
/**
* HttpClient的拦截器
* @author Bryan.Zhang
* @since 1.3.0
*/
public class TLogHttpClientInterceptor implements HttpRequestInterceptor {
private static final Logger log = LoggerFactory.getLogger(TLogHttpClientInterceptor.class);

View File

@ -11,6 +11,11 @@ import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Hutool http组件的拦截器
* @author Bryan.Zhang
* @since 1.3.5
*/
public class TLogHutoolhttpInterceptor implements HttpInterceptor {
private final Logger log = LoggerFactory.getLogger(this.getClass());

View File

@ -14,6 +14,11 @@ import org.slf4j.LoggerFactory;
import java.io.IOException;
/**
* OkHttp的拦截器
* @author Bryan.Zhang
* @since 1.3.0
*/
public class TLogOkHttpInterceptor implements Interceptor {
private final Logger log = LoggerFactory.getLogger(TLogOkHttpInterceptor.class);