Class JPASAML2SPClientAppDAO
- java.lang.Object
-
- org.apache.syncope.core.persistence.jpa.dao.AbstractDAO<C>
-
- org.apache.syncope.core.persistence.jpa.dao.AbstractClientAppDAO<SAML2SPClientApp>
-
- org.apache.syncope.core.persistence.jpa.dao.JPASAML2SPClientAppDAO
-
- All Implemented Interfaces:
ClientAppDAO<SAML2SPClientApp>,DAO<SAML2SPClientApp>,SAML2SPClientAppDAO
public class JPASAML2SPClientAppDAO extends AbstractClientAppDAO<SAML2SPClientApp> implements SAML2SPClientAppDAO
-
-
Field Summary
-
Fields inherited from class org.apache.syncope.core.persistence.jpa.dao.AbstractDAO
LOG
-
-
Constructor Summary
Constructors Constructor Description JPASAML2SPClientAppDAO()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddelete(String key)voiddelete(SAML2SPClientApp clientApp)voiddeleteByEntityId(String entityId)SAML2SPClientAppfind(String key)List<SAML2SPClientApp>findAll()SAML2SPClientAppfindByClientAppId(Long clientAppId)SAML2SPClientAppfindByEntityId(String entityId)SAML2SPClientAppfindByName(String name)List<SAML2SPClientApp>findByPolicy(Policy policy)List<SAML2SPClientApp>findByRealm(Realm realm)SAML2SPClientAppsave(SAML2SPClientApp clientApp)-
Methods inherited from class org.apache.syncope.core.persistence.jpa.dao.AbstractClientAppDAO
findByPolicy, findByRealm, getByPolicyQuery
-
Methods inherited from class org.apache.syncope.core.persistence.jpa.dao.AbstractDAO
detach, entityManager, entityManagerFactory, isOracle, refresh
-
-
-
-
Method Detail
-
find
public SAML2SPClientApp find(String key)
- Specified by:
findin interfaceSAML2SPClientAppDAO
-
findByClientAppId
public SAML2SPClientApp findByClientAppId(Long clientAppId)
- Specified by:
findByClientAppIdin interfaceSAML2SPClientAppDAO
-
findByName
public SAML2SPClientApp findByName(String name)
- Specified by:
findByNamein interfaceSAML2SPClientAppDAO
-
findByEntityId
public SAML2SPClientApp findByEntityId(String entityId)
- Specified by:
findByEntityIdin interfaceSAML2SPClientAppDAO
-
findByPolicy
public List<SAML2SPClientApp> findByPolicy(Policy policy)
- Specified by:
findByPolicyin interfaceClientAppDAO<SAML2SPClientApp>
-
findByRealm
public List<SAML2SPClientApp> findByRealm(Realm realm)
- Specified by:
findByRealmin interfaceClientAppDAO<SAML2SPClientApp>
-
findAll
@Transactional(readOnly=true) public List<SAML2SPClientApp> findAll()
- Specified by:
findAllin interfaceSAML2SPClientAppDAO
-
save
public SAML2SPClientApp save(SAML2SPClientApp clientApp)
- Specified by:
savein interfaceSAML2SPClientAppDAO
-
delete
public void delete(String key)
- Specified by:
deletein interfaceSAML2SPClientAppDAO
-
deleteByEntityId
public void deleteByEntityId(String entityId)
- Specified by:
deleteByEntityIdin interfaceSAML2SPClientAppDAO
-
delete
public void delete(SAML2SPClientApp clientApp)
- Specified by:
deletein interfaceSAML2SPClientAppDAO
-
-