Class JPAAttrRepoDAO
- java.lang.Object
-
- org.apache.syncope.core.persistence.jpa.dao.AbstractDAO<AttrRepo>
-
- org.apache.syncope.core.persistence.jpa.dao.JPAAttrRepoDAO
-
- All Implemented Interfaces:
AttrRepoDAO
,DAO<AttrRepo>
public class JPAAttrRepoDAO extends AbstractDAO<AttrRepo> implements AttrRepoDAO
-
-
Field Summary
-
Fields inherited from class org.apache.syncope.core.persistence.jpa.dao.AbstractDAO
LOG
-
-
Constructor Summary
Constructors Constructor Description JPAAttrRepoDAO()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
delete(String key)
void
delete(AttrRepo attrRepo)
AttrRepo
find(String key)
List<AttrRepo>
findAll()
AttrRepo
save(AttrRepo attrRepo)
-
Methods inherited from class org.apache.syncope.core.persistence.jpa.dao.AbstractDAO
detach, entityManager, entityManagerFactory, isOracle, refresh
-
-
-
-
Method Detail
-
find
@Transactional(readOnly=true) public AttrRepo find(String key)
- Specified by:
find
in interfaceAttrRepoDAO
-
findAll
@Transactional(readOnly=true) public List<AttrRepo> findAll()
- Specified by:
findAll
in interfaceAttrRepoDAO
-
save
public AttrRepo save(AttrRepo attrRepo)
- Specified by:
save
in interfaceAttrRepoDAO
-
delete
public void delete(String key)
- Specified by:
delete
in interfaceAttrRepoDAO
-
delete
public void delete(AttrRepo attrRepo)
- Specified by:
delete
in interfaceAttrRepoDAO
-
-