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

com.sap.cloud.sdk.s4hana.connectivity.SerializedQueryResult Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2020 SAP SE or an SAP affiliate company. All rights reserved.
 */

package com.sap.cloud.sdk.s4hana.connectivity;

import java.util.Collections;
import java.util.List;

import com.sap.cloud.sdk.cloudplatform.connectivity.Header;

import lombok.AllArgsConstructor;
import lombok.Data;

/**
 * Represents serialized query result with a query, result body, and headers.
 */
@AllArgsConstructor
@Data
public class SerializedQueryResult>
{
    private final QueryT query;

    private final String body;
    private final List
headers; public SerializedQueryResult( final QueryT query, final String body ) { this(query, body, Collections.emptyList()); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy