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

com.arangodb.http.InvocationObject Maven / Gradle / Ivy

There is a newer version: 7.15.0
Show newest version
package com.arangodb.http;

import java.lang.reflect.Method;
import java.lang.reflect.Type;

import com.arangodb.BaseArangoDriver;
import com.arangodb.entity.CursorEntity;
import com.arangodb.impl.BaseDriverInterface;

/**
 * Created by fbartels on 10/27/14.
 */
public class InvocationObject {

  private Method method;

  private Object[] args;

  private BaseDriverInterface arangoDriver;


  public InvocationObject(Method method, BaseDriverInterface arangoDriver, Object[] args) {
    this.method = method;
    this.args = args;
    this.arangoDriver = arangoDriver;
  }

  public Method getMethod() {
    return method;
  }

  public void setMethod(Method method) {
    this.method = method;
  }

  public Object[] getArgs() {
    return args;
  }

  public void setArgs(Object[] args) {
    this.args = args;
  }

  public BaseDriverInterface  getArangoDriver() {
    return arangoDriver;
  }

  public void setArangoDriver(BaseDriverInterface arangoDriver) {
    this.arangoDriver = arangoDriver;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy