edu.internet2.middleware.grouper.grouperUi.beans.ui.ServiceActionArgument Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grouper-ui Show documentation
Show all versions of grouper-ui Show documentation
Internet2 Groups Management User Interface
The newest version!
package edu.internet2.middleware.grouper.grouperUi.beans.ui;
public class ServiceActionArgument {
/**
* name of the service action argument
*/
private String name;
/**
* value of the service action argument
*/
private String value;
public ServiceActionArgument(String name, String value) {
this.name = name;
this.value = value;
}
/**
* name of the service action argument
* @return
*/
public String getName() {
return name;
}
/**
* value of the service action argument
* @return
*/
public String getValue() {
return value;
}
}