All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.felix.framework.resolver.WrappedCapability Maven / Gradle / Ivy

There is a newer version: 8.1.2
Show newest version
/*
 * Copyright (c) OSGi Alliance (2012). All Rights Reserved.
 *
 * Licensed 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.felix.framework.resolver;

import java.util.List;
import java.util.Map;
import org.apache.felix.framework.wiring.BundleCapabilityImpl;
import org.osgi.framework.wiring.BundleCapability;
import org.osgi.framework.wiring.BundleRevision;
import org.osgi.resource.Resource;

public class WrappedCapability extends BundleCapabilityImpl implements HostedCapability
{
    private final BundleRevision m_host;
    private final BundleCapabilityImpl m_cap;

    public WrappedCapability(BundleRevision host, BundleCapabilityImpl cap)
    {
        super(host, cap.getNamespace(), cap.getDirectives(), cap.getAttributes());
        m_host = host;
        m_cap = cap;
    }

    @Override
    public boolean equals(Object obj)
    {
        if (obj == null)
        {
            return false;
        }
        if (getClass() != obj.getClass())
        {
            return false;
        }
        final WrappedCapability other = (WrappedCapability) obj;
        if (m_host != other.m_host && (m_host == null || !m_host.equals(other.m_host)))
        {
            return false;
        }
        if (m_cap != other.m_cap && (m_cap == null || !m_cap.equals(other.m_cap)))
        {
            return false;
        }
        return true;
    }

    @Override
    public int hashCode()
    {
        int hash = 7;
        hash = 37 * hash + (m_host != null ? m_host.hashCode() : 0);
        hash = 37 * hash + (m_cap != null ? m_cap.hashCode() : 0);
        return hash;
    }

    public BundleCapability getDeclaredCapability()
    {
        return m_cap;
    }

    @Override
    public BundleRevision getResource()
    {
        return m_host;
    }

    @Override
    public BundleRevision getRevision()
    {
        return m_host;
    }

    @Override
    public String getNamespace()
    {
        return m_cap.getNamespace();
    }

    @Override
    public Map getDirectives()
    {
        return m_cap.getDirectives();
    }

    @Override
    public Map getAttributes()
    {
        return m_cap.getAttributes();
    }

    @Override
    public List getUses()
    {
        return m_cap.getUses();
    }

    @Override
    public String toString()
    {
        if (m_host == null)
        {
            return getAttributes().toString();
        }
        if (getNamespace().equals(BundleRevision.PACKAGE_NAMESPACE))
        {
            return "[" + m_host + "] "
                + getNamespace()
                + "; "
                + getAttributes().get(BundleRevision.PACKAGE_NAMESPACE);
        }
        return "[" + m_host + "] " + getNamespace() + "; " + getAttributes();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy