ldap/setup/HierarchicalRoleExample.xml (32 lines of code) (raw):

<?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <project basedir="." default="all" name="Fortress Sample Data"> <taskdef classname="org.apache.directory.fortress.core.ant.FortressAntTask" name="FortressAdmin" > <classpath path="${java.class.path}"/> </taskdef> <target name="all"> <FortressAdmin> <addrole> <role name="r1" description="Test Role 1 for hierarchies"/> <role name="r2" description="Test Role 2 for hierarchies"/> <role name="r3" description="Test Role 3 for hierarchies"/> <role name="r4" description="Test Role 4 for hierarchies"/> </addrole> <addroleinheritance> <relationship child="r2" parent="r1"/> <relationship child="r3" parent="r1"/> <relationship child="r4" parent="r1"/> </addroleinheritance> <delrole> <role name="r1"/> <role name="r2"/> <role name="r3"/> <role name="r4"/> </delrole> <delroleinheritance> <relationship child="r2" parent="r1"/> <relationship child="r3" parent="r1"/> <relationship child="r4" parent="r1"/> </delroleinheritance> </FortressAdmin> </target> </project>