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

org.rdlinux.ezsecurity.ResponseRetConvert Maven / Gradle / Ivy

There is a newer version: 0.1.6
Show newest version
package org.rdlinux.ezsecurity;

import org.rdlinux.Ret;

import javax.servlet.http.HttpServletRequest;

/**
 * 返回body转换
 */
public interface ResponseRetConvert {
    /**
     * 转换
     *
     * @param ret     将返回的对象
     * @param request 请求对象
     * @return 返回转换后对象
     */
    default Object convert(Ret ret, HttpServletRequest request) {
        return ret;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy