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

com.github.adminfaces.persistence.service.Service Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
package com.github.adminfaces.persistence.service;

import javax.inject.Qualifier;
import java.lang.annotation.*;

/**
 * Marker interface to allow generic CrudServive injection: 
 * 
     {@literal @}Inject 
     {@literal @}Service 
     CrudService<Entity,PK> genericService; 
 * 
 */
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD,ElementType.PARAMETER,ElementType.TYPE})
@Qualifier
@Documented
public @interface Service {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy