blob: 80d1c4d3c449b085b5046dabc070f00d1c3798e5 [file] [log] [blame]
/*
* 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
*
* http://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.
*
*/
package org.apache.directory.fortress.core.ant;
import org.apache.directory.fortress.core.model.Permission;
import java.util.StringTokenizer;
/**
* Entity is used by custom Apache Ant task for special handling of collections. This is necessary because the
* Ant parser cannot deal with complex data attribute types. The class extends a base entity.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
public class PermAnt extends Permission
{
/** Default serialVersionUID */
private static final long serialVersionUID = 1L;
private String antRoles;
/**
* Return the roles as a String.
*
* @return String contains a comma delimited set of role names assigned to permission.
*/
public String getAntRoles()
{
return antRoles;
}
/**
* Accept a comma delimited String containing a list of Roles to be granted to a permission. This function
* will parse the String and call the setter on its parent.
*
* @param antRoles contains a comma delimited set of role names.
*/
public void setAntRoles( String antRoles )
{
this.antRoles = antRoles;
// allow the setter to process comma delimited strings:
StringTokenizer tkn = new StringTokenizer( antRoles, "," );
if ( tkn.countTokens() > 0 )
{
while ( tkn.hasMoreTokens() )
{
String rTkn = tkn.nextToken();
setRole( rTkn );
}
}
}
}