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

io.apicurio.registry.utils.impexp.EntityInputStreamImpl Maven / Gradle / Ivy

package io.apicurio.registry.utils.impexp;

import lombok.AllArgsConstructor;

import java.io.IOException;

@AllArgsConstructor
public class EntityInputStreamImpl implements EntityInputStream {

    private EntityReader reader;

    @Override
    public Entity nextEntity() throws IOException {
        return reader.readNextEntity();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy