use of org.apache.directory.fortress.core.ant.AddpermObj in project directory-fortress-core by apache.
the class FortressAntLoadTest method testReadPermissionObj.
@Test
public void testReadPermissionObj() {
// gather permission object input data:
List<AddpermObj> addpermObjs = fortressAntTask.getAddpermObjs();
for (AddpermObj addpermObj : addpermObjs) {
List<PermObj> permObjs = addpermObj.getPermObjs();
readPermissionObjs("RD-PRM-OBJS", permObjs);
}
}
Aggregations