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

com.github.df.restypass.http.converter.VoidResponseConverter Maven / Gradle / Ivy

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