Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,57 @@ public void setClientAuthAttributes(Map<String, String> clientAuthAttributes) {
this.clientAuthAttributes = clientAuthAttributes;
}

public ClientModel getClient() {
return client;
}

public Map<String, String> getClientAuthAttributes() {
return clientAuthAttributes;
}

public Object getClientConfig() {
return clientConfig;
}

public ClientConnection getClientConnection() {
return clientConnection;
}

public Cors getCors() {
return cors;
}

public EventBuilder getEvent() {
return event;
}

public MultivaluedMap<String, String> getFormParams() {
return formParams;
}

public HttpHeaders getHeaders() {
return headers;
}

public RealmModel getRealm() {
return realm;
}

public HttpRequest getRequest() {
return request;
}

public HttpResponse getResponse() {
return response;
}

public KeycloakSession getSession() {
return session;
}

public Object getTokenManager() {
return tokenManager;
}
}

}