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

org.jboss.as.arquillian.api.ContainerResource Maven / Gradle / Ivy

There is a newer version: 5.1.0.Beta6
Show newest version
/*
 * Copyright The WildFly Authors
 * SPDX-License-Identifier: Apache-2.0
 */

package org.jboss.as.arquillian.api;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

/**
 * Annotation that can be used to inject a container specific resource.
 *
 * @author Stuart Douglas
 */
@Retention(RetentionPolicy.RUNTIME)
public @interface ContainerResource {

    /**
     * The container to connect to. This may be left empty if only 1 server is available
     */
    String value() default "";

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy