-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a614d67
commit 73a09ad
Showing
53 changed files
with
62 additions
and
5,993 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
package org.gluu.casa.core; | ||
|
||
import java.util.List; | ||
import java.util.Map; | ||
import javax.enterprise.context.ApplicationScoped; | ||
import javax.inject.Named; | ||
|
||
import org.zkoss.util.Pair; | ||
|
||
@Named | ||
@ApplicationScoped | ||
public class OIDCFlowService { | ||
|
||
public String getAuthzUrl(String acrValues) { | ||
return null; | ||
} | ||
|
||
public String getAuthzUrl(List<String> acrValues, String prompt) { | ||
return null; | ||
} | ||
|
||
public String getLogoutUrl(String idTokenHint) { | ||
return null; | ||
} | ||
|
||
public Pair<String, String> getTokens(String code, String state) { | ||
return null; | ||
} | ||
|
||
public Map getUserClaims(String accessToken) { | ||
return null; | ||
} | ||
|
||
} |
Oops, something went wrong.