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

com.github.adminfaces.persistence.bean.BeanService Maven / Gradle / Ivy

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

import com.github.adminfaces.persistence.service.CrudService;

import javax.enterprise.util.Nonbinding;
import javax.inject.Qualifier;
import java.lang.annotation.*;

/**
 * Annotation used for providing crud services to a CrudMB:
 *  
    {@literal @}ViewScoped
    {@literal @}Named
    {@literal @}BeanService(CarService.class)
    public class CarMB<Entity>{}
 * 
 */
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE})
@Documented
public @interface BeanService {

    @Nonbinding
    Class value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy