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

net.commuty.parking.http.Mapper Maven / Gradle / Ivy

Go to download

This package acts as a client to communicate with the Commuty Parking Access API. It avoids you to deal with HTTP directly and provides you proper data structures to work with the API.

The newest version!
package net.commuty.parking.http;

import java.io.IOException;
import java.io.InputStream;

public interface Mapper {
    String write(Object body) throws IOException;
     R read(InputStream stream, Class clazz) throws IOException;
    Error readError(InputStream stream) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy