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

com.arextest.diff.model.log.LogProcessResponse Maven / Gradle / Ivy

There is a newer version: 0.2.15
Show newest version
package com.arextest.diff.model.log;

import java.util.ArrayList;
import java.util.List;

public class LogProcessResponse {

  private int existDiff;

  private List logs = new ArrayList<>();

  public LogProcessResponse() {
  }

  public LogProcessResponse(int existDiff, List logs) {
    this.existDiff = existDiff;
    this.logs = logs;
  }

  public int getExistDiff() {
    return existDiff;
  }

  public void setExistDiff(int existDiff) {
    this.existDiff = existDiff;
  }

  public List getLogs() {
    return logs;
  }

  public void setLogs(List logs) {
    this.logs = logs;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy