com.arjuna.mwlabs.wscf.utils.HLSProvider Maven / Gradle / Ivy
The newest version!
/*
* Copyright The Narayana Authors
* SPDX-License-Identifier: Apache-2.0
*/
package com.arjuna.mwlabs.wscf.utils;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Annotation used to tag HLS providers and identify the type of service they implement
*/
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface HLSProvider
{
String serviceType();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy