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

jakarta.jms.JMSDestinationDefinition Maven / Gradle / Ivy

Go to download

This artifact provides a single jar that contains all classes required to use remote EJB and JMS, including all dependencies. It is intended for use by those not using maven, maven users should just import the EJB and JMS BOM's instead (shaded JAR's cause lots of problems with maven, as it is very easy to inadvertently end up with different versions on classes on the class path).

The newest version!
/*
 * Copyright (c) 2012, 2020 Oracle and/or its affiliates. All rights reserved.
 * Copyright (c) 2021 Contributors to the Eclipse Foundation
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v. 2.0, which is available at
 * http://www.eclipse.org/legal/epl-2.0.
 *
 * This Source Code may also be made available under the following Secondary
 * Licenses when the conditions for such availability set forth in the
 * Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
 * version 2 with the GNU Classpath Exception, which is available at
 * https://www.gnu.org/software/classpath/license.html.
 *
 * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
 */

package jakarta.jms;

import java.lang.annotation.ElementType;
import java.lang.annotation.Repeatable;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * An application may use this annotation to specify a Jakarta Messaging {@code
 * Destination} resource that it requires in its operational environment. This provides information that can be used at
 * the application's deployment to provision the required resource and allows an application to be deployed into a Java
 * EE environment with more minimal administrative configuration.
 *
 * 

* The {@code Destination} resource may be configured by setting the annotation elements for commonly used properties. * Additional properties may be specified using the {@code properties} element. Once defined, a {@code Destination} * resource may be referenced by a component in the same way as any other {@code Destination} resource, for example by * using the {@code lookup} element of the {@code Resource} annotation. * * @see jakarta.annotation.Resource * * @version Jakarta Messaging 2.0 * @since JMS 2.0 * */ @Target({ ElementType.TYPE }) @Retention(RetentionPolicy.RUNTIME) @Repeatable(JMSDestinationDefinitions.class) public @interface JMSDestinationDefinition { /** * Description of this Jakarta Messaging destination. * * @return The description of this Jakarta Messaging destination. */ String description() default ""; /** * JNDI name of the destination resource being defined. * * @return The JNDI name of the destination resource being defined. */ String name(); /** * Fully qualified name of the Jakarta Messaging destination interface. Permitted values are {@code jakarta.jms.Queue} or * {@code jakarta.jms.Topic}. * * @return The fully qualified name of the Jakarta Messaging destination interface. */ String interfaceName(); /** * Fully-qualified name of the Jakarta Messaging destination implementation class. Ignored if a resource adapter is used unless the * resource adapter defines more than one Jakarta Messaging destination implementation class for the specified interface. * * @return The fully-qualified name of the Jakarta Messaging destination implementation class. */ String className() default ""; /** * Resource adapter name. If not specified then the application server will define the default behaviour, which may or * may not involve the use of a resource adapter. * * @return The resource adapter name. */ String resourceAdapter() default ""; /** * Name of the queue or topic. * * @return The name of the queue or topic. */ String destinationName() default ""; /** * Jakarta Messaging destination property. This may be a vendor-specific property or a less commonly used destination * property. * *

* Properties are specified using the format: propertyName=propertyValue with one property per array element. * * @return The Jakarta Messaging destination properties. */ String[] properties() default {}; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy