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

edu.internet2.middleware.grouper.app.gsh.template.GshValidationLine Maven / Gradle / Ivy

There is a newer version: 5.13.5
Show newest version
package edu.internet2.middleware.grouper.app.gsh.template;


public class GshValidationLine {

  private String inputName;
  
  private String text;
  
  public GshValidationLine(String text) {
    this.text = text;
  }
  
  public GshValidationLine(String inputName, String text) {
    this.inputName = inputName;
    this.text = text;
  }
    
  public String getInputName() {
    return inputName;
  }

  public String getText() {
    return text;
  }

  
  @Override
  public String toString() {
    return this.inputName + ": " + this.text;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy