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

com.arjuna.mwlabs.wscf.utils.ContextProvider Maven / Gradle / Ivy

Go to download

JBossTS - JBoss Transaction Service. JTA, JTS and XTS (WS-AT, WS-BA)

The newest version!
package com.arjuna.mwlabs.wscf.utils;

import java.lang.annotation.*;

/**
 * Annotation used to identify a ContextFactory and specify the protocol it supports and the type of high
 * level service it expects to be able to use it
 */
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface ContextProvider
{
    public String coordinationType();
    public String serviceType();
    public Class contextImplementation();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy