![JAR search and dependency download from the Maven repository](/logo.png)
edu.internet2.middleware.grouper.grouperUi.beans.api.GuiSubjectResolutionSubject 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
package edu.internet2.middleware.grouper.grouperUi.beans.api;
import edu.internet2.middleware.grouper.app.usdu.SubjectResolutionAttributeValue;
public class GuiSubjectResolutionSubject {
/**
* gui subject
*/
private GuiSubject guiSubject;
/**
* subject resolution attribute value for gui subject
*/
private SubjectResolutionAttributeValue subjectResolutionAttributeValue;
/**
*
* @return gui subject
*/
public GuiSubject getGuiSubject() {
return guiSubject;
}
/**
* gui subject
* @param guiSubject
*/
public void setGuiSubject(GuiSubject guiSubject) {
this.guiSubject = guiSubject;
}
/**
*
* @return subject resolution attribute value for gui subject
*/
public SubjectResolutionAttributeValue getSubjectResolutionAttributeValue() {
return subjectResolutionAttributeValue;
}
/**
* subject resolution attribute value for gui subject
* @param subjectResolutionAttributeValue
*/
public void setSubjectResolutionAttributeValue(SubjectResolutionAttributeValue subjectResolutionAttributeValue) {
this.subjectResolutionAttributeValue = subjectResolutionAttributeValue;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy