Class OAuth2ConfigResponse
- java.lang.Object
-
- io.jans.ca.plugin.adminui.model.auth.OAuth2ConfigResponse
-
public class OAuth2ConfigResponse extends Object
-
-
Constructor Summary
Constructors Constructor Description OAuth2ConfigResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAcrValues()
String
getAuthzBaseUrl()
String
getClientId()
String
getEndSessionEndpoint()
String
getFrontChannelLogoutUrl()
String
getPostLogoutRedirectUri()
String
getRedirectUrl()
String
getResponseType()
String
getScope()
void
setAcrValues(String acrValues)
void
setAuthzBaseUrl(String authzBaseUrl)
void
setClientId(String clientId)
void
setEndSessionEndpoint(String endSessionEndpoint)
void
setFrontChannelLogoutUrl(String frontChannelLogoutUrl)
void
setPostLogoutRedirectUri(String postLogoutRedirectUri)
void
setRedirectUrl(String redirectUrl)
void
setResponseType(String responseType)
void
setScope(String scope)
-
-
-
Method Detail
-
getAuthzBaseUrl
public String getAuthzBaseUrl()
-
setAuthzBaseUrl
public void setAuthzBaseUrl(String authzBaseUrl)
-
getClientId
public String getClientId()
-
setClientId
public void setClientId(String clientId)
-
getResponseType
public String getResponseType()
-
setResponseType
public void setResponseType(String responseType)
-
getScope
public String getScope()
-
setScope
public void setScope(String scope)
-
getRedirectUrl
public String getRedirectUrl()
-
setRedirectUrl
public void setRedirectUrl(String redirectUrl)
-
getAcrValues
public String getAcrValues()
-
setAcrValues
public void setAcrValues(String acrValues)
-
getFrontChannelLogoutUrl
public String getFrontChannelLogoutUrl()
-
setFrontChannelLogoutUrl
public void setFrontChannelLogoutUrl(String frontChannelLogoutUrl)
-
getPostLogoutRedirectUri
public String getPostLogoutRedirectUri()
-
setPostLogoutRedirectUri
public void setPostLogoutRedirectUri(String postLogoutRedirectUri)
-
getEndSessionEndpoint
public String getEndSessionEndpoint()
-
setEndSessionEndpoint
public void setEndSessionEndpoint(String endSessionEndpoint)
-
-