argos/dmp-backend/core/src/main/java/eu/eudat/service/responseutils/ResponseUtilsService.java

8 lines
216 B
Java

package eu.eudat.service.responseutils;
import org.springframework.http.ResponseEntity;
public interface ResponseUtilsService {
ResponseEntity<byte[]> buildResponseFileFromText(String text, String fileName);
}