org.springframework.security.oauth2.provider.approval
Interface ApprovalStore
- All Known Implementing Classes:
- InMemoryApprovalStore, JdbcApprovalStore, TokenApprovalStore
public interface ApprovalStore
Interface for saving, retrieving and revoking user approvals (per client, per scope).
- Author:
- Dave Syer
addApprovals
boolean addApprovals(Collection<Approval> approvals)
revokeApprovals
boolean revokeApprovals(Collection<Approval> approvals)
getApprovals
Collection<Approval> getApprovals(String userId,
String clientId)
Copyright © 2013. All rights reserved.