use of org.apereo.cas.support.oauth.OAuth20ClientIdAwareProfileManager in project cas by apereo.
the class OAuth20ClientIdAwareProfileManagerTests method init.
@BeforeEach
public void init() {
val request = new MockHttpServletRequest();
request.addParameter(OAuth20Constants.CLIENT_ID, CLIENT_ID);
val response = new MockHttpServletResponse();
context = new JEEContext(request, response);
profileManager = new OAuth20ClientIdAwareProfileManager(context, oauthDistributedSessionStore, servicesManager);
}
Aggregations