com.github.adminfaces.persistence.service.Service Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of admin-persistence Show documentation
Show all versions of admin-persistence Show documentation
Provides CRUD utilities for CDI, JPA and JSF based applications.
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