HttpRestClientService.java 175 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 package com.ui.service; import java.util.Map; public interface HttpRestClientService { public <T> T postForObject(String url, Object request, Class<T> responseType); }