com.github.df.restypass.http.converter.VoidResponseConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of resty-pass Show documentation
Show all versions of resty-pass Show documentation
High-Performance Restful Client Library
The newest version!
package com.github.df.restypass.http.converter;
import java.lang.reflect.Type;
/**
* Void Response
* Created by darrenfu on 17-7-29.
*/
public class VoidResponseConverter implements ResponseConverter {
@Override
public boolean support(Type type, String contentType) {
return "void".equals(type.getTypeName()) || "java.lang.Void".equals(type.getTypeName());
}
@Override
public Void convert(byte[] body, Type type, String contentType) {
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy