/* * 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.aries.subsystem.obr.internal; import org.osgi.resource.Requirement; public abstract class AbstractRequirement implements Requirement { @Override public boolean equals(Object o) { if (o == this) return true; if (!(o instanceof Requirement)) return false; Requirement c = (Requirement)o; return c.getNamespace().equals(getNamespace()) && c.getAttributes().equals(getAttributes()) && c.getDirectives().equals(getDirectives()) && c.getResource() != null ? c.getResource().equals( getResource()) : getResource() == null; } @Override public int hashCode() { int result = 17; result = 31 * result + getNamespace().hashCode(); result = 31 * result + getAttributes().hashCode(); result = 31 * result + getDirectives().hashCode(); result = 31 * result + (getResource() == null ? 0 : getResource().hashCode()); return result; } @Override public String toString() { return new StringBuffer().append(getClass().getName()).append(": ") .append("namespace=").append(getNamespace()) .append(", attributes=").append(getAttributes()) .append(", directives=").append(getDirectives()) .append(", resource=").append(getResource()).toString(); } }