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

fr.figarocms.flume.formatter.mapping.AttributeMapping Maven / Gradle / Ivy

package fr.figarocms.flume.formatter.mapping;

public class AttributeMapping {

  private String name;
  private String type;

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

  public void setType(String type) {
    this.type = type;
  }


  public String getName() {
    return name;
  }

  public String getType() {
    return type;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy