Package com.ecyrd.jspwiki.tags

Source Code of com.ecyrd.jspwiki.tags.AdminBeanIteratorTag

/*
    JSPWiki - a JSP-based WikiWiki clone.

    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 com.ecyrd.jspwiki.tags;

import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;

import com.ecyrd.jspwiki.ui.admin.AdminBean;
import com.ecyrd.jspwiki.ui.admin.AdminBeanManager;

/**
*  Provides an iterator for all AdminBeans of a given type.
*
*/
public class AdminBeanIteratorTag extends IteratorTag
{
    private static final long serialVersionUID = 1L;

    private int m_type;

    /**
     *  Set the type of the bean.
     * 
     *  @param type Type to set
     */
    public void setType(String type)
    {
        m_type = AdminBeanManager.getTypeFromString( type );
    }

    /**
     *  {@inheritDoc}
     */
    @Override
    public void resetIterator()
    {
        AdminBeanManager mgr = m_wikiContext.getEngine().getAdminBeanManager();

        Collection beans = mgr.getAllBeans();

        ArrayList<AdminBean> typedBeans = new ArrayList<AdminBean>();

        for( Iterator i = beans.iterator(); i.hasNext(); )
        {
            AdminBean ab = (AdminBean)i.next();

            if( ab.getType() == m_type )
            {
                typedBeans.add( ab );
            }
        }

        setList( typedBeans );
    }
}
TOP

Related Classes of com.ecyrd.jspwiki.tags.AdminBeanIteratorTag

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.