Package org.apereo.cas.consent
Class RestConsentRepository
- java.lang.Object
-
- org.apereo.cas.consent.RestConsentRepository
-
- All Implemented Interfaces:
java.io.Serializable,org.apereo.cas.consent.ConsentRepository
public class RestConsentRepository extends java.lang.Object implements org.apereo.cas.consent.ConsentRepositoryThis isRestConsentRepository.- Since:
- 5.1.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RestConsentRepository()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleandeleteConsentDecision(long decisionId, java.lang.String principal)org.apereo.cas.consent.ConsentDecisionfindConsentDecision(org.apereo.cas.authentication.principal.Service service, org.apereo.cas.services.RegisteredService registeredService, org.apereo.cas.authentication.Authentication authentication)java.util.Collection<? extends org.apereo.cas.consent.ConsentDecision>findConsentDecisions()java.util.Collection<? extends org.apereo.cas.consent.ConsentDecision>findConsentDecisions(java.lang.String principal)booleanstoreConsentDecision(org.apereo.cas.consent.ConsentDecision decision)
-
-
-
Method Detail
-
findConsentDecisions
public java.util.Collection<? extends org.apereo.cas.consent.ConsentDecision> findConsentDecisions(java.lang.String principal)
- Specified by:
findConsentDecisionsin interfaceorg.apereo.cas.consent.ConsentRepository
-
findConsentDecisions
public java.util.Collection<? extends org.apereo.cas.consent.ConsentDecision> findConsentDecisions()
- Specified by:
findConsentDecisionsin interfaceorg.apereo.cas.consent.ConsentRepository
-
findConsentDecision
public org.apereo.cas.consent.ConsentDecision findConsentDecision(org.apereo.cas.authentication.principal.Service service, org.apereo.cas.services.RegisteredService registeredService, org.apereo.cas.authentication.Authentication authentication)- Specified by:
findConsentDecisionin interfaceorg.apereo.cas.consent.ConsentRepository
-
storeConsentDecision
public boolean storeConsentDecision(org.apereo.cas.consent.ConsentDecision decision)
- Specified by:
storeConsentDecisionin interfaceorg.apereo.cas.consent.ConsentRepository
-
deleteConsentDecision
public boolean deleteConsentDecision(long decisionId, java.lang.String principal)- Specified by:
deleteConsentDecisionin interfaceorg.apereo.cas.consent.ConsentRepository
-
-