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

com.braintreepayments.http.serializer.Serializer Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
package com.braintreepayments.http.serializer;

import com.braintreepayments.http.HttpRequest;

import java.io.IOException;

public interface Serializer {
	String contentType();
	byte[] encode(HttpRequest request) throws IOException;
	 T decode(String source, Class cls) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy