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

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

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

import java.util.List;

public class LogProcessRequest {

  private List logs;
  private List> ignoreNodePaths;

  public LogProcessRequest() {
  }

  public LogProcessRequest(List logs, List> ignoreNodePaths) {
    this.logs = logs;
    this.ignoreNodePaths = ignoreNodePaths;
  }

  public List getLogs() {
    return logs;
  }

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

  public List> getIgnoreNodePaths() {
    return ignoreNodePaths;
  }

  public void setIgnoreNodePaths(List> ignoreNodePaths) {
    this.ignoreNodePaths = ignoreNodePaths;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy