blob: 04c68b76e8152e1e44f2633ce6af2e2a9c7e78a7 [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.felix.framework.resolver;
import java.util.List;
import org.apache.felix.framework.capabilityset.Attribute;
import org.apache.felix.framework.capabilityset.Capability;
import org.apache.felix.framework.capabilityset.Directive;
public class HostedCapability implements Capability
{
private final Module m_host;
private final Capability m_cap;
public HostedCapability(Module module, Capability cap)
{
m_host = module;
m_cap = cap;
}
@Override
public boolean equals(Object obj)
{
if (obj == null)
{
return false;
}
if (getClass() != obj.getClass())
{
return false;
}
final HostedCapability other = (HostedCapability) 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 Capability getDeclaredCapability()
{
return m_cap;
}
public Module getModule()
{
return m_host;
}
public String getNamespace()
{
return m_cap.getNamespace();
}
public Directive getDirective(String name)
{
return m_cap.getDirective(name);
}
public List<Directive> getDirectives()
{
return m_cap.getDirectives();
}
public Attribute getAttribute(String name)
{
return m_cap.getAttribute(name);
}
public List<Attribute> getAttributes()
{
return m_cap.getAttributes();
}
public List<String> getUses()
{
return m_cap.getUses();
}
@Override
public String toString()
{
if (m_host == null)
{
return getAttributes().toString();
}
if (getNamespace().equals(Capability.PACKAGE_NAMESPACE))
{
return "[" + m_host + "] "
+ getNamespace() + "; " + getAttribute(Capability.PACKAGE_ATTR);
}
return "[" + m_host + "] " + getNamespace() + "; " + getAttributes();
}
}