@JMSDestinationDefinition(name = Resources.TOPIC, resourceAdapter = "jmsra", interfaceName = "javax.jms.Topic", destinationName = "batch.topic", description = "Batch processing topic")
@JMSConnectionFactoryDefinition(name = Resources.CONNECTION_FACTORY, resourceAdapter = "jmsra", clientId = "batchJob", description = "Connection factory with clientId of the durable subscription")
public class Resources {
public Resources();
public static final String SUBSCRIPTION = "BatchJob";
public static final String TOPIC = "java:app/batch/topic";
public static final String CONNECTION_FACTORY = "java:app/batch/factory";
}