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

com.aventstack.chaintest.http.BaseResponse Maven / Gradle / Ivy

The newest version!
package com.aventstack.chaintest.http;

import com.aventstack.chaintest.domain.ChainTestEntity;
import lombok.Data;

@Data
public abstract class BaseResponse {

    private T entity;
    private ErrorResponse error;

    public BaseResponse(final T entity) {
        this.entity = entity;
    }

    public BaseResponse(final ErrorResponse error) {
        this.error = error;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy