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

com.profesorfalken.jwopr.mapper.WOPRResponseMapper Maven / Gradle / Ivy

The newest version!
package com.profesorfalken.jwopr.mapper;

import com.profesorfalken.jwopr.response.WOPRResponse;

import javax.net.ssl.HttpsURLConnection;
import java.io.IOException;

/**
 * Component that perform the mapping needed to build a {{@link WOPRResponse}} object from different sources
 *
 * @author Javier Garcia Alonso
 */
public interface WOPRResponseMapper {
    WOPRResponse map(HttpsURLConnection connection) throws IOException;

    WOPRResponse map(IOException ioException);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy