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

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

package com.paypal.http.serializer;

import com.paypal.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 - 2025 Weber Informatics LLC | Privacy Policy