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

com.tablebird.serviceproviderbuilder.ServiceProvider Maven / Gradle / Ivy

package com.tablebird.serviceproviderbuilder;

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

/**
 * An service provider interface.
 * 

 *     {@literal @}ServiceProvider
 *     interface iService{}
 * 
* * @author tablebird * @date 2019/7/28 */ @Target({ElementType.TYPE}) @Retention(RetentionPolicy.RUNTIME) public @interface ServiceProvider { ServiceProviderPolicy value() default ServiceProviderPolicy.MULTIPLE; }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy