Package org.apache.jetspeed.om.portlet.impl

Source Code of org.apache.jetspeed.om.portlet.impl.PublicRenderParameterImpl

/*
* 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.jetspeed.om.portlet.impl;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import java.util.Locale;

import javax.xml.namespace.QName;

import org.apache.jetspeed.om.portlet.Description;
import org.apache.jetspeed.om.portlet.PortletQName;
import org.apache.jetspeed.om.portlet.PublicRenderParameter;
import org.apache.jetspeed.util.JetspeedLocale;
import org.apache.jetspeed.util.ojb.CollectionUtils;

/**
* @version $Id: PublicRenderParameterImpl.java 785910 2009-06-18 05:11:11Z rwatler $
*
*/
public class PublicRenderParameterImpl implements PublicRenderParameter, Serializable
{
    private static final long serialVersionUID = 1L;
    private String localPart;
    private String prefix;
    private String namespace;
    protected String identifier;

    protected List<ParameterAliasImpl> aliases;
    protected List<Description> descriptions;

    public PublicRenderParameterImpl()
    {}
   
    public PublicRenderParameterImpl(String name, String identifier)   
    {
        this.localPart = name;
        this.identifier = identifier;
    }
   
    public PublicRenderParameterImpl(QName qname)
    {
        this.namespace = qname.getNamespaceURI();
        if (this.namespace != null && this.namespace.equals(""))
            this.namespace = null;
        this.prefix = qname.getPrefix();
        if (this.prefix != null && this.prefix.equals(""))
            this.prefix = null;
        this.localPart = qname.getLocalPart();               
    }
   
    public String getIdentifier()
    {
        return identifier;
    }

    public void setIdentifier(String value)
    {
        identifier = value;
    }

    public String getLocalPart()
    {
        return this.localPart;
    }

    public String getNamespace()
    {
        return this.namespace;
    }

    public String getPrefix()
    {
        return this.prefix;
    }

    public QName getQName()
    {
        if (namespace == null)
        {
            return new QName(localPart);
        }
        else if (prefix == null)
        {
            return new QName(namespace, localPart);
        }
        else
        {
            return new QName(namespace, localPart, prefix);
        }
    }
   
    public void setQName(QName qname)
    {
        this.namespace = qname.getNamespaceURI();
        if (this.namespace != null && this.namespace.equals(""))
            this.namespace = null;
        this.prefix = qname.getPrefix();
        if (this.prefix != null && this.prefix.equals(""))
            this.prefix = null;
        this.localPart = qname.getLocalPart();
    }   
   
    public boolean equals(Object o)
    {
        if (!(o instanceof PublicRenderParameter))
            return false;
        PublicRenderParameter param = (PublicRenderParameter)o;
        String i1 = (param.getIdentifier() == null ? "" : param.getIdentifier());
        String i2 = (this.identifier == null ? "" : this.identifier);
        if (i1.equals(i2))
            return true;
        return (this.toString().equals(param.toString()));
    }
   
    public String toString()
    {
        return ((this.getNamespace() == null) ? "" : this.getNamespace() + "//:") +
               ((this.getPrefix() == null) ? "" : this.getPrefix() + ":") +
               ((this.getLocalPart() == null) ? "" : this.getLocalPart());
    }

    public String getName()
    {
        return this.localPart;
    }

    public void setName(String name)
    {
        this.localPart = name;
        this.prefix = null;
        this.namespace = null;
    }
   
    public List<QName> getAliases()
    {
        List<QName> result = new ArrayList<QName>();
        if (aliases != null)
        {
            for (PortletQName qname : aliases)
            {
                result.add(qname.getQName());
            }
        }
        return result;
    }
   
    @SuppressWarnings("unchecked")
    public void addAlias(QName alias)
    {      
        if (aliases == null)
        {
            aliases = CollectionUtils.createList();
        }
        if (!containsAlias(alias))
        {
            aliases.add(new ParameterAliasImpl(alias));
        }
    }
   
    protected boolean containsAlias(QName qname)
    {
        PortletQName alias = new ParameterAliasImpl(qname);
        for (PortletQName p : aliases)
        {
            if (p.equals(alias))
                return true;
        }
        return false;
    }
   
    public Description getDescription(Locale locale)
    {
        return (Description)JetspeedLocale.getBestLocalizedObject(getDescriptions(), locale);
    }
   
    @SuppressWarnings("unchecked")
    public List<Description> getDescriptions()
    {
        if (descriptions == null)
        {
            descriptions = CollectionUtils.createList();
        }
        return descriptions;
    }
   
    public Description addDescription(String lang)
    {
        DescriptionImpl d = new DescriptionImpl(this, lang);
        for (Description desc : getDescriptions())
        {
            if (desc.getLocale().equals(d.getLocale()))
            {
                throw new IllegalArgumentException("Description for language: "+d.getLocale()+" already defined");
            }
        }
        descriptions.add(d);
        return d;
    }
}
TOP

Related Classes of org.apache.jetspeed.om.portlet.impl.PublicRenderParameterImpl

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.