ServiceCallData.java [src/java/crp/utils] Revision:   Date:
/*
 * $Id$
 *
 * This file is part of the Cloud Services Integration Platform (CSIP),
 * a Model-as-a-Service framework, API, and application suite.
 *
 * 2012-2019, OMSLab, Colorado State University.
 *
 * OMSLab licenses this file to you under the MIT license.
 * See the LICENSE file in the project root for more information.
 */
package crp.utils;

/**
 *
 * @author <a href="mailto:shaun.case@colostate.edu">Shaun Case</a>
 */
public class ServiceCallData {

  private Object data;
  private ServiceCall serviceCall;

  public ServiceCallData(Object data, ServiceCall serviceCall) {
    this.data = data;
    this.serviceCall = serviceCall;
  }

  public Object data() {
    return data;
  }

  public ServiceCall serviceCall() {
    return serviceCall;
  }
}