
com.sap.cloud.sdk.s4hana.connectivity.SerializedQueryResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of connectivity Show documentation
Show all versions of connectivity Show documentation
Connectivity to SAP S/4HANA.
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