Skip to content
Permalink
202109
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
3 contributors

Users who have contributed to this file

@dima767 @credman @wgthom
109 lines (73 sloc) 4.6 KB
gs = GrouperSession.startRootSession();
addRootStem("201.1.end", "201.1.end")
// ex201.1.1
// addStem("ref", "student", "student")
studentGroup = addGroup("ref:student", "students", "students");
studentGroup.setDescription($/This group contains contains all students for the purpose of access control. Members automatically get access to a broad selection of student services. You can view where this group is in use by selecting "This group's memberships in other groups" under the "More" tab/$);
studentGroup.store()
AttributeDefName typeMarker = AttributeDefNameFinder.findByName("etc:objectTypes:grouperObjectTypeMarker", true);
AttributeAssign attributeAssign = studentGroup.getAttributeDelegate().hasAttribute(typeMarker) ? studentGroup.getAttributeDelegate().retrieveAssignments(typeMarker).iterator().next() : studentGroup.getAttributeDelegate().addAttribute(typeMarker).getAttributeAssign()
attributeAssign.getAttributeValueDelegate().assignValue("etc:objectTypes:grouperObjectTypeDirectAssignment", "true")
attributeAssign.getAttributeValueDelegate().assignValue("etc:objectTypes:grouperObjectTypeName", "ref")
attributeAssign.getAttributeValueDelegate().assignValue("etc:objectTypes:grouperObjectTypeDataOwner", "Registrar")
attributeAssign.getAttributeValueDelegate().assignValue("etc:objectTypes:grouperObjectTypeMembersDescription", "All student subjects for the purpose of access control");
// added by loader job. these are not needed.
// addGroup("ref:student", "class2019", "class2019");
// addGroup("ref:student", "class2020", "class2020");
// addGroup("ref:student", "class2021", "class2021");
// addGroup("ref:student", "class2022", "class2022");
// addGroup("ref:student", "class2023", "class2023");
(2022..2025).each { term ->
addMember("ref:student:students","ref:student:class${term}");
}
//Set expiration out Dec 31, 2020 days
java.util.Calendar cal = Calendar.getInstance();
cal.set(2021, Calendar.DECEMBER, 31, 17, 0, 0)
addMember("ref:student:students","ref:student:class2021");
group = GroupFinder.findByName(gs, "ref:student:students", true);
subject = GroupFinder.findByName(gs, "ref:student:class2021", true).toSubject();
group.addOrEditMember(subject, true, true, null, cal.getTime(), false);
// ex 201.1.2
addMember("ref:student:students","basis:student:student_no_class_year");
// ex 201.1.3
addMember("ref:student:students","basis:student:exchange_students");
// ex 201.1.4
addGroup("basis:student", "transfer_student", "transfer_student");
addMember("basis:student:transfer_student","pmartinez921");
addMember("basis:student:transfer_student","cthompson287");
addMember("basis:student:transfer_student","agrady901");
java.util.Calendar cal2 = Calendar.getInstance();
cal2.add(Calendar.DATE, 60);
group = GroupFinder.findByName(gs, "ref:student:students", true);
subject = GroupFinder.findByName(gs, "basis:student:transfer_student", true).toSubject();
group.addOrEditMember(subject, true, true, null, cal2.getTime(), false);
// ex 201.1.5
java.util.Calendar cal3 = Calendar.getInstance();
cal3.add(Calendar.DATE, 32);
group = GroupFinder.findByName(gs, "ref:student:students", true);
subject = GroupFinder.findByName(gs, "basis:student:expelled_32_days", true).toSubject();
group.addOrEditMember(subject, true, true, null, cal3.getTime(), false);
java.util.Calendar cal4 = Calendar.getInstance();
cal4.add(Calendar.DATE, 32);
group = GroupFinder.findByName(gs, "ref:student:students", true);
subject = GroupFinder.findByName(gs, "basis:student:resigned_32_days", true).toSubject();
group.addOrEditMember(subject, true, true, null, cal4.getTime(), false);
java.util.Calendar cal5 = Calendar.getInstance();
cal5.add(Calendar.DATE, 32);
group = GroupFinder.findByName(gs, "ref:student:students", true);
subject = GroupFinder.findByName(gs, "basis:student:transfered_32_days", true).toSubject();
group.addOrEditMember(subject, true, true, null, cal5.getTime(), false);
// ex 201.1.6
java.util.Calendar cal6 = Calendar.getInstance();
cal6.add(Calendar.YEAR, 4);
group = GroupFinder.findByName(gs, "ref:student:students", true);
subject = GroupFinder.findByName(gs, "basis:student:loa_4_years", true).toSubject();
group.addOrEditMember(subject, true, true, null, cal6.getTime(), false);
// ex 201.1.7
//addGroup("ref:student", "on_track_grad", "on_track_grad");
//addMember("ref:student:on_track_grad","ref:student:class2020");
//java.util.Calendar cal7 = Calendar.getInstance();
//cal7.set(2019, 7, 1)
//group = GroupFinder.findByName(gs, "ref:student:on_track_grad", true);
//subject = GroupFinder.findByName(gs, "ref:student:class2019", true).toSubject();
//group.addOrEditMember(subject, true, true, null, cal7.getTime(), false);