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

nl.renarj.jasdb.rest.model.streaming.StreamedEntity Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
package nl.renarj.jasdb.rest.model.streaming;

import nl.renarj.jasdb.api.SimpleEntity;
import nl.renarj.jasdb.rest.model.RestEntity;

/**
 * @author Renze de Vries
 */
public class StreamedEntity implements RestEntity {
    private SimpleEntity entity;

    public StreamedEntity(SimpleEntity entity) {
        this.entity = entity;
    }

    public SimpleEntity getEntity() {
        return entity;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy