com.stanfy.helium.entities.EntityReader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of helium Show documentation
Show all versions of helium Show documentation
DSL and Java API for REST API specification
package com.stanfy.helium.entities;
import com.stanfy.helium.model.Type;
import java.io.IOException;
/**
* Can read entity from somewhere.
*/
public interface EntityReader {
TypedEntity> read(final Type type) throws IOException;
}