blob: bb734f77cda603137b949e4d6c05b9f17c8db60d [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.SDSet;
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 SDSetAnt extends SDSet
{
/** Default serialVersionUID */
private static final long serialVersionUID = 1L;
private String type;
private String members;
/**
* Return the members as a String.
*
* @return String contain comma delimited list of members.
*/
public String getSetMembers()
{
return members;
}
/**
* Accept a comma delimited list of members, iterate of each and call the setter on the parent class.
*
* @param members contains comma delimited set of members.
*/
public void setSetMembers( String members )
{
this.members = members;
if ( members != null )
{
StringTokenizer tkn = new StringTokenizer( members, "," );
if ( tkn.countTokens() > 0 )
{
while ( tkn.hasMoreTokens() )
{
String member = tkn.nextToken();
addMember( member );
}
}
}
}
/**
* Return the type of SD set in string format.
*
* @return String that represents static or dynamic relations.
*/
public String getSetType()
{
return type;
}
/**
* Method accepts a String variable that maps to its parent's set type.
*
* @param type String value represents static or dynamic set relations.
*/
public void setSetType( String type )
{
this.type = type;
if ( type != null && type.equals( "DYNAMIC" ) )
{
setType( SDSet.SDType.DYNAMIC );
}
else
{
setType( SDSet.SDType.STATIC );
}
}
}