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

com.sap.cloud.sdk.odatav2.connectivity.impl.BatchResultImpl Maven / Gradle / Ivy

There is a newer version: 1.40.11
Show newest version
package com.sap.cloud.sdk.odatav2.connectivity.impl;

import java.util.List;

import com.sap.cloud.sdk.odatav2.connectivity.batch.BatchResult;
import com.sap.cloud.sdk.odatav2.connectivity.batch.BatchResultPart;

public class BatchResultImpl implements BatchResult{
  
  List batchResultPart;

  BatchResultImpl(List batchResponsePart){
    this.batchResultPart = batchResponsePart;
  }
  
  @Override
  public List get() {
    return batchResultPart;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy