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

com.arextest.diff.model.DecompressConfig Maven / Gradle / Ivy

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

import java.util.List;

/**
 * Created by rchen9 on 2023/4/26.
 */
public class DecompressConfig {

  /**
   * The bean name of the decompression method which is implement the DecompressService interface,
   * you can use an alias
   */
  private String name;

  /**
   * the collection of the node path need to decompress
   */
  private List> nodePath;

  /**
   * variable parameter
   */
  private String args;

  public DecompressConfig() {
  }

  public DecompressConfig(String name, List> nodePath) {
    this.name = name;
    this.nodePath = nodePath;
  }

  public DecompressConfig(String name, List> nodePath, String args) {
    this.name = name;
    this.nodePath = nodePath;
    this.args = args;
  }

  public String getName() {
    return name;
  }

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

  public List> getNodePath() {
    return nodePath;
  }

  public void setNodePath(List> nodePath) {
    this.nodePath = nodePath;
  }

  public String getArgs() {
    return args;
  }

  public void setArgs(String args) {
    this.args = args;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy