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

io.github.saoxuequ.http.request.core.Entity Maven / Gradle / Ivy

package io.github.saoxuequ.http.request.core;

import io.github.saoxuequ.http.request.common.Writeable;

public abstract class Entity implements Writeable {

    private T entity;

    protected T getEntity() {
        return entity;
    }

    public void setEntity(T entity) {
        this.entity = entity;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy