Package org.apache.syncope.core.logic.wa
Class WAClientAppLogic
- java.lang.Object
-
- org.apache.syncope.core.logic.wa.WAClientAppLogic
-
public class WAClientAppLogic extends Object
-
-
Field Summary
Fields Modifier and Type Field Description protected WAClientAppDataBinderbinderprotected CASSPClientAppDAOcasSPClientAppDAOprotected OIDCRPClientAppDAOoidcRPClientAppDAOprotected SAML2SPClientAppDAOsaml2SPClientAppDAO
-
Constructor Summary
Constructors Constructor Description WAClientAppLogic(WAClientAppDataBinder binder, CASSPClientAppDAO casSPClientAppDAO, OIDCRPClientAppDAO oidcRPClientAppDAO, SAML2SPClientAppDAO saml2SPClientAppDAO)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected WAClientAppdoRead(Long clientAppId, ClientAppType type)protected WAClientAppdoRead(String name, ClientAppType type)List<WAClientApp>list()WAClientAppread(Long clientAppId, ClientAppType type)WAClientAppread(String name, ClientAppType type)
-
-
-
Field Detail
-
binder
protected final WAClientAppDataBinder binder
-
casSPClientAppDAO
protected final CASSPClientAppDAO casSPClientAppDAO
-
oidcRPClientAppDAO
protected final OIDCRPClientAppDAO oidcRPClientAppDAO
-
saml2SPClientAppDAO
protected final SAML2SPClientAppDAO saml2SPClientAppDAO
-
-
Constructor Detail
-
WAClientAppLogic
public WAClientAppLogic(WAClientAppDataBinder binder, CASSPClientAppDAO casSPClientAppDAO, OIDCRPClientAppDAO oidcRPClientAppDAO, SAML2SPClientAppDAO saml2SPClientAppDAO)
-
-
Method Detail
-
list
@PreAuthorize("hasRole(\'ANONYMOUS\')") @Transactional(readOnly=true) public List<WAClientApp> list()
-
doRead
protected WAClientApp doRead(Long clientAppId, ClientAppType type)
-
read
@PreAuthorize("hasRole(\'ANONYMOUS\')") @Transactional(readOnly=true) public WAClientApp read(Long clientAppId, ClientAppType type)
-
doRead
protected WAClientApp doRead(String name, ClientAppType type)
-
read
@PreAuthorize("hasRole(\'ANONYMOUS\')") @Transactional(readOnly=true) public WAClientApp read(String name, ClientAppType type)
-
-