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

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

There is a newer version: 4.17.43.Final
Show 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 - 2024 Weber Informatics LLC | Privacy Policy