Interface SAML2SPClientAppDAO
-
- All Superinterfaces:
ClientAppDAO<SAML2SPClientApp>
,DAO<SAML2SPClientApp>
- All Known Implementing Classes:
JPASAML2SPClientAppDAO
public interface SAML2SPClientAppDAO extends ClientAppDAO<SAML2SPClientApp>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
delete(String key)
void
delete(SAML2SPClientApp clientApp)
void
deleteByEntityId(String entityId)
SAML2SPClientApp
find(String key)
List<SAML2SPClientApp>
findAll()
SAML2SPClientApp
findByClientAppId(Long clientAppId)
SAML2SPClientApp
findByEntityId(String clientId)
SAML2SPClientApp
findByName(String name)
SAML2SPClientApp
save(SAML2SPClientApp clientApp)
-
Methods inherited from interface org.apache.syncope.core.persistence.api.dao.ClientAppDAO
findByPolicy, findByRealm
-
-
-
-
Method Detail
-
find
SAML2SPClientApp find(String key)
-
findByClientAppId
SAML2SPClientApp findByClientAppId(Long clientAppId)
-
findByName
SAML2SPClientApp findByName(String name)
-
findByEntityId
SAML2SPClientApp findByEntityId(String clientId)
-
findAll
List<SAML2SPClientApp> findAll()
-
save
SAML2SPClientApp save(SAML2SPClientApp clientApp)
-
delete
void delete(String key)
-
deleteByEntityId
void deleteByEntityId(String entityId)
-
delete
void delete(SAML2SPClientApp clientApp)
-
-