Class JPAOIDCRPClientAppDAO
- java.lang.Object
-
- org.apache.syncope.core.persistence.jpa.dao.AbstractDAO<C>
-
- org.apache.syncope.core.persistence.jpa.dao.AbstractClientAppDAO<OIDCRPClientApp>
-
- org.apache.syncope.core.persistence.jpa.dao.JPAOIDCRPClientAppDAO
-
- All Implemented Interfaces:
ClientAppDAO<OIDCRPClientApp>,DAO<OIDCRPClientApp>,OIDCRPClientAppDAO
public class JPAOIDCRPClientAppDAO extends AbstractClientAppDAO<OIDCRPClientApp> implements OIDCRPClientAppDAO
-
-
Field Summary
-
Fields inherited from class org.apache.syncope.core.persistence.jpa.dao.AbstractDAO
LOG
-
-
Constructor Summary
Constructors Constructor Description JPAOIDCRPClientAppDAO()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddelete(String key)voiddelete(OIDCRPClientApp clientApp)voiddeleteByClientId(String clientId)OIDCRPClientAppfind(String key)List<OIDCRPClientApp>findAll()OIDCRPClientAppfindByClientAppId(Long clientAppId)OIDCRPClientAppfindByClientId(String clientId)OIDCRPClientAppfindByName(String name)List<OIDCRPClientApp>findByPolicy(Policy policy)List<OIDCRPClientApp>findByRealm(Realm realm)OIDCRPClientAppsave(OIDCRPClientApp 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 OIDCRPClientApp find(String key)
- Specified by:
findin interfaceOIDCRPClientAppDAO
-
findByClientAppId
public OIDCRPClientApp findByClientAppId(Long clientAppId)
- Specified by:
findByClientAppIdin interfaceOIDCRPClientAppDAO
-
findByName
public OIDCRPClientApp findByName(String name)
- Specified by:
findByNamein interfaceOIDCRPClientAppDAO
-
findByClientId
public OIDCRPClientApp findByClientId(String clientId)
- Specified by:
findByClientIdin interfaceOIDCRPClientAppDAO
-
findByPolicy
public List<OIDCRPClientApp> findByPolicy(Policy policy)
- Specified by:
findByPolicyin interfaceClientAppDAO<OIDCRPClientApp>
-
findByRealm
public List<OIDCRPClientApp> findByRealm(Realm realm)
- Specified by:
findByRealmin interfaceClientAppDAO<OIDCRPClientApp>
-
findAll
@Transactional(readOnly=true) public List<OIDCRPClientApp> findAll()
- Specified by:
findAllin interfaceOIDCRPClientAppDAO
-
save
public OIDCRPClientApp save(OIDCRPClientApp clientApp)
- Specified by:
savein interfaceOIDCRPClientAppDAO
-
delete
public void delete(String key)
- Specified by:
deletein interfaceOIDCRPClientAppDAO
-
deleteByClientId
public void deleteByClientId(String clientId)
- Specified by:
deleteByClientIdin interfaceOIDCRPClientAppDAO
-
delete
public void delete(OIDCRPClientApp clientApp)
- Specified by:
deletein interfaceOIDCRPClientAppDAO
-
-