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

org.jboss.arquillian.drone.spi.DroneInstanceEnhancer Maven / Gradle / Ivy

/*
 * JBoss, Home of Professional Open Source
 * Copyright 2011, Red Hat Middleware LLC, and individual contributors
 * by the @authors tag. See the copyright.txt in the distribution for a
 * full listing of individual contributors.
 *
 * 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.jboss.arquillian.drone.spi;

import java.lang.annotation.Annotation;

/**
 * Enhances Drone instance in order to give it additional capabilities.
 *
 * @author Karel Piwko
 * @author Lukas Fryc
 * @deprecated
 */
@Deprecated
public interface DroneInstanceEnhancer extends Sortable {

    /**
     * Returns {@code true} when this {@link DroneInstanceEnhancer} is able to enhance or deenhance given type.
     *
     * @param instance
     *     instance of Drone to be enhanced / deenhanced
     * @param droneType
     *     the field or parameter type defined in test
     * @param qualifier
     *     the qualifier associated with the injected type
     *
     * @return {@code true} when this {@link DroneInstanceEnhancer} is able to enhance or deenhance given type, {@code
     * false}
     * otherwise
     */
    boolean canEnhance(InstanceOrCallableInstance instance, Class droneType, Class qualifier);

    /**
     * 

* Takes the instance instantiated by Drone and returns its enhanced version. *

* * @param instance * the instance to be enhanced * @param qualifier * the qualifier associated with an instance * * @return the enhanced instance */ T enhance(T instance, Class qualifier); /** *

* Takes the instance which was previously enhanced by {@link #enhance(Object, Class)} method and cancels the * enhancement. *

* * @param enhancedInstance * the instance which was previously enhanced by {@link #enhance(Object)}. * @param qualifier * the qualifier associated with an instance * * @return the deenhanced instance */ T deenhance(T enhancedInstance, Class qualifier); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy