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

com.yahoo.elide.async.models.AsyncQueryResult Maven / Gradle / Ivy

There is a newer version: 7.1.2
Show newest version
/*
 * Copyright 2020, Yahoo Inc.
 * Licensed under the Apache License, Version 2.0
 * See LICENSE file in project root for terms.
 */
package com.yahoo.elide.async.models;

import jakarta.persistence.Embeddable;
import jakarta.persistence.Lob;
import lombok.Data;
import lombok.EqualsAndHashCode;

/**
 * Model for Async Query Result.
 */
@Embeddable
@Data
@EqualsAndHashCode(callSuper = true)
public class AsyncQueryResult extends AsyncApiResult {
    private Integer contentLength;

    @Lob
    private String responseBody;  //URL or Response body
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy