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

com.washingtonpost.wordpress.rest.api.transformers.Transformer Maven / Gradle / Ivy

The newest version!
package com.washingtonpost.wordpress.rest.api.transformers;

import com.washingtonpost.wordpress.rest.api.model.Post;
import java.io.IOException;
import java.util.List;

/**
 * 

An interface describing how to transform JSON into a Model object

* @param

The type of post this Transformer produces. */ public interface Transformer

{ List

transform(String json) throws IOException; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy