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 void
delete(String key)
void
delete(OIDCRPClientApp clientApp)
void
deleteByClientId(String clientId)
OIDCRPClientApp
find(String key)
List<OIDCRPClientApp>
findAll()
OIDCRPClientApp
findByClientAppId(Long clientAppId)
OIDCRPClientApp
findByClientId(String clientId)
OIDCRPClientApp
findByName(String name)
List<OIDCRPClientApp>
findByPolicy(Policy policy)
List<OIDCRPClientApp>
findByRealm(Realm realm)
OIDCRPClientApp
save(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:
find
in interfaceOIDCRPClientAppDAO
-
findByClientAppId
public OIDCRPClientApp findByClientAppId(Long clientAppId)
- Specified by:
findByClientAppId
in interfaceOIDCRPClientAppDAO
-
findByName
public OIDCRPClientApp findByName(String name)
- Specified by:
findByName
in interfaceOIDCRPClientAppDAO
-
findByClientId
public OIDCRPClientApp findByClientId(String clientId)
- Specified by:
findByClientId
in interfaceOIDCRPClientAppDAO
-
findByPolicy
public List<OIDCRPClientApp> findByPolicy(Policy policy)
- Specified by:
findByPolicy
in interfaceClientAppDAO<OIDCRPClientApp>
-
findByRealm
public List<OIDCRPClientApp> findByRealm(Realm realm)
- Specified by:
findByRealm
in interfaceClientAppDAO<OIDCRPClientApp>
-
findAll
@Transactional(readOnly=true) public List<OIDCRPClientApp> findAll()
- Specified by:
findAll
in interfaceOIDCRPClientAppDAO
-
save
public OIDCRPClientApp save(OIDCRPClientApp clientApp)
- Specified by:
save
in interfaceOIDCRPClientAppDAO
-
delete
public void delete(String key)
- Specified by:
delete
in interfaceOIDCRPClientAppDAO
-
deleteByClientId
public void deleteByClientId(String clientId)
- Specified by:
deleteByClientId
in interfaceOIDCRPClientAppDAO
-
delete
public void delete(OIDCRPClientApp clientApp)
- Specified by:
delete
in interfaceOIDCRPClientAppDAO
-
-