Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adopt changes in Core 2.0 #76

Merged
merged 6 commits into from
Nov 29, 2022
Merged
Changes from 1 commit
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
Prev Previous commit
Change callback timeout to 500ms to match API contract
prudrabhat committed Nov 22, 2022
commit 1c02c481d73a82b1469291289a0df5c0ed868e7c
Original file line number Diff line number Diff line change
@@ -27,15 +27,14 @@
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.TimeUnit;

/**
* Defines the public APIs for the AEP Edge Identity extension.
*/
public class Identity {

public static final Class<? extends Extension> EXTENSION = IdentityExtension.class;
private static final long CALLBACK_TIMEOUT_MILLIS = TimeUnit.SECONDS.toMillis(5);
private static final long CALLBACK_TIMEOUT_MILLIS = 500L;

private Identity() {}