|
||||||||||
| 上一个类 下一个类 | 框架 无框架 | |||||||||
| 摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 | |||||||||
java.lang.Objectorg.springframework.security.oauth2.provider.endpoint.DefaultRedirectResolver
public class DefaultRedirectResolver
Default implementation for a redirect resolver.
| 构造方法摘要 | |
|---|---|
DefaultRedirectResolver()
|
|
| 方法摘要 | |
|---|---|
protected boolean |
hostMatches(String registered,
String requested)
Check if host matches the registered value. |
protected boolean |
redirectMatches(String requestedRedirect,
String redirectUri)
Whether the requested redirect URI "matches" the specified redirect URI. |
String |
resolveRedirect(String requestedRedirect,
ClientDetails client)
Resolve the redirect for the specified client. |
void |
setMatchSubdomains(boolean matchSubdomains)
Flag to indicate that requested URIs will match if they are a subdomain of the registered value. |
void |
setRedirectGrantTypes(Collection<String> redirectGrantTypes)
Grant types that are permitted to have a redirect uri. |
| 从类 java.lang.Object 继承的方法 |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| 构造方法详细信息 |
|---|
public DefaultRedirectResolver()
| 方法详细信息 |
|---|
public void setMatchSubdomains(boolean matchSubdomains)
matchSubdomains - the flag value to set (deafult true)public void setRedirectGrantTypes(Collection<String> redirectGrantTypes)
redirectGrantTypes - the redirect grant types to set
public String resolveRedirect(String requestedRedirect,
ClientDetails client)
throws OAuth2Exception
RedirectResolver 复制的描述
RedirectResolver 中的 resolveRedirectrequestedRedirect - The redirect that was requested (may not be null).client - The client for which we're resolving the redirect.
OAuth2Exception - If the requested redirect is invalid for the specified client.
protected boolean redirectMatches(String requestedRedirect,
String redirectUri)
For other (non-URL) cases, such as for some implicit clients, the redirect_uri must be an exact match.
requestedRedirect - The requested redirect URI.redirectUri - The registered redirect URI.
protected boolean hostMatches(String registered,
String requested)
registered - the registered hostrequested - the requested host
|
||||||||||
| 上一个类 下一个类 | 框架 无框架 | |||||||||
| 摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 | |||||||||