edu.internet2.middleware.grouper.app.gsh.template.GshValidationLine Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grouper Show documentation
Show all versions of grouper Show documentation
Internet2 Groups Management Toolkit
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