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

com.arangodb.entity.EdgeDefinitionEntity Maven / Gradle / Ivy

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

import java.util.List;

import com.google.gson.annotations.SerializedName;

public class EdgeDefinitionEntity extends BaseEntity implements DocumentHolder {

  @SerializedName("_rev")
  long documentRevision;
  @SerializedName("_id")
  String documentHandle;
  @SerializedName("_key")
  String documentKey;
  
  String collection;
  List from;
  List to;
  

  public long getDocumentRevision() {
    return documentRevision;  }

  public String getDocumentHandle() {
    return documentHandle;  
  }

  public String getDocumentKey() {
    return documentKey;  
  }

  public void setDocumentRevision(long documentRevision) {
    this.documentRevision = documentRevision;
  }

  public void setDocumentHandle(String documentHandle) {
    this.documentHandle = documentHandle;
  }

  public void setDocumentKey(String documentKey) {
    this.documentKey = documentKey;
  }

  public String getCollection() {
    return collection;
  }

  public void setCollection(String collection) {
    this.collection = collection;
  }

  public List getFrom() {
    return from;
  }

  public void setFrom(List from) {
    this.from = from;
  }

  public List getTo() {
    return to;
  }

  public void setTo(List to) {
    this.to = to;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy