— PEDRO DELGADO YARZA 2014/03/11 13:01
En Fundeweb 2.0, los acceso a objetos de memoria se harán mediante un servicio genérico de acceso conocido como DAS (Data Access Service). Esta infraestructura permitirá el acceso homogéneo a la información siguiendo los estándares de programación establecidos al respecto.
Los elementos de los que se compone serán: POJO, DataAccesService y AccessService, cumpliendo el siguiente esquema:
A continuación mostramos el diagrama de clases:
public interface DataAccessService<T> { T newInstance(); void persist(T entity); void persist(T entity, boolean flush); T persist(T entity, boolean flush, boolean refresh); void refresh(T entity); T find(Object id); void deleteById(Object id); void deleteById(Object id, boolean flush); void delete(T entity); void delete(T entity, boolean flush); void deleteEntities(T[] entities); void deleteEntities(T[] entities, boolean flush); T update(T entity); T update(T entity, boolean flush); boolean isManagedEntity(T entity); T merge(T entity); T merge(T entity, boolean flush); void flush(); }
@Local(AnuncioDataAccessService.class) @Stateless public class AnuncioDataAccessServiceImpl extends DataAccessServiceImpl<Anuncio> implements AnuncioDataAccessService { private static final String[] RESTRICTIONS_ANUNCIO = { UtilString.cmpNumberTextFilterEjbql("entity.id", ":anuncioId"), UtilString.cmpTextFilterEjbql("entity.nombre", ":anuncioNombre"), UtilString.cmpTextFilterEjbql("entity.descripcion", ":anuncioDescripcion"), UtilString.cmpDateTextFilterEjbql("entity.fechaPublicacion", ":anuncioFechaPublicacion"), }; public ResultQuery<Anuncio> obtenerAnuncios(Map<String, Object> parameters, int firstResult, int resultLimit, String sortField, String sortOrder) { return super.resultsByEntityQueryWithDinamicFilter(Arrays.asList(RESTRICTIONS_ANUNCIO), parameters, firstResult, resultLimit, sortField, sortOrder, null, null); } }