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

org.apache.felix.resolver.reason.ReasonException Maven / Gradle / Ivy

There is a newer version: 7.0.0
Show newest version
/*
 * 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.resolver.reason;

import java.util.Collection;

import org.osgi.resource.Requirement;
import org.osgi.service.resolver.ResolutionException;

/**
 * An exception that holds the reason for a resolution failure.
 *
 * @see {@link ResolutionException}
 */
public class ReasonException extends ResolutionException {

    /**
     * The reasons for resolution failure.
     */
    public static enum Reason {
        /**
         * Represents an unresolved package referenced by {@code Dynamic-ImportPackage}.
         * 

* {@link ReasonException#getUnresolvedRequirements()} will return a * collection containing the single {@code osgi.wiring.package;resolution:=dynamic} * requirement which failed to resolve. *

* This reason has no a transitive cause. */ DynamicImport, /** * Represents the scenario where a fragment matches a host but is not * selected because another fragment with the same {@code Bundle-SymbolicName} * already matched, usually a fragment of a higher version. *

* {@link ReasonException#getUnresolvedRequirements()} will return * a collection containing the single {@code osgi.wiring.host} requirement of * the fragment. *

* This reason has no a transitive cause. */ FragmentNotSelected, /** * Represents the scenario where a requirement could not be resolved. *

* {@link ReasonException#getUnresolvedRequirements()} will return * a collection containing a single requirement that didn't resolve. *

* This reason may have a transitive cause. */ MissingRequirement, /** * Represents a failure in the use constraints of a bundle. *

* {@link ReasonException#getUnresolvedRequirements()} will return * a collection containing a single requirement to blame for the use constraint * violation. *

* This reason has no a transitive cause. */ UseConstraint } private static final long serialVersionUID = -5276675175114379539L; public ReasonException(Reason reason, String message, Throwable cause, Collection unresolvedRequirements) { super(message, cause, unresolvedRequirements); this.reason = reason; } public Reason getReason() { return reason; } private final Reason reason; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy