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

com.arextest.diff.model.key.KeyComputeResponse Maven / Gradle / Ivy

The newest version!
package com.arextest.diff.model.key;

import com.arextest.diff.model.log.NodeEntity;
import java.util.HashMap;
import java.util.List;

public class KeyComputeResponse {

  private List allReferenceEntities;
  private List listSortEntities;
  private HashMap, HashMap> listIndexKeysLeft;
  private HashMap, HashMap> listIndexKeysRight;

  public List getAllReferenceEntities() {
    return allReferenceEntities;
  }

  public void setAllReferenceEntities(List allReferenceEntities) {
    this.allReferenceEntities = allReferenceEntities;
  }

  public List getListSortEntities() {
    return listSortEntities;
  }

  public void setListSortEntities(List listSortEntities) {
    this.listSortEntities = listSortEntities;
  }

  public HashMap, HashMap> getListIndexKeysLeft() {
    return listIndexKeysLeft;
  }

  public void setListIndexKeysLeft(
      HashMap, HashMap> listIndexKeysLeft) {
    this.listIndexKeysLeft = listIndexKeysLeft;
  }

  public HashMap, HashMap> getListIndexKeysRight() {
    return listIndexKeysRight;
  }

  public void setListIndexKeysRight(
      HashMap, HashMap> listIndexKeysRight) {
    this.listIndexKeysRight = listIndexKeysRight;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy