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

io.keyko.monitoring.model.ContractData Maven / Gradle / Ivy

There is a newer version: 0.2.9
Show newest version
package io.keyko.monitoring.model;

import org.web3j.protocol.core.methods.response.AbiDefinition;

import java.io.Serializable;
import java.util.List;

public class ContractData implements Serializable {

  private String name;
  private List abiDefinitionList;

  public ContractData(String name, List abiDefinitionList) {
    this.name = name;
    this.abiDefinitionList = abiDefinitionList;
  }

  public String getName() {
    return name;
  }

  public void setName(String name) {
    this.name = name;
  }

  public List getAbiDefinitionList() {
    return abiDefinitionList;
  }

  public void setAbiDefinitionList(List abiDefinitionList) {
    this.abiDefinitionList = abiDefinitionList;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy