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