Package com.twilio.rest.oauth.v1
Class OpenidDiscovery
- java.lang.Object
-
- com.twilio.base.Resource
-
- com.twilio.rest.oauth.v1.OpenidDiscovery
-
- All Implemented Interfaces:
Serializable
public class OpenidDiscovery extends Resource
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)static OpenidDiscoveryFetcherfetcher()static OpenidDiscoveryfromJson(InputStream json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)Converts a JSON InputStream into a OpenidDiscovery object using the provided ObjectMapper.static OpenidDiscoveryfromJson(String json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)Converts a JSON String into a OpenidDiscovery object using the provided ObjectMapper.URIgetAuthorizationEndpoint()List<String>getClaimsSupported()URIgetDeviceAuthorizationEndpoint()List<String>getIdTokenSigningAlgValuesSupported()URIgetIssuer()URIgetJwkUri()List<String>getResponseTypeSupported()URIgetRevocationEndpoint()List<String>getScopesSupported()List<String>getSubjectTypeSupported()URIgetTokenEndpoint()URIgetUrl()URIgetUserinfoEndpoint()inthashCode()
-
-
-
Method Detail
-
fetcher
public static OpenidDiscoveryFetcher fetcher()
-
fromJson
public static OpenidDiscovery fromJson(String json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON String into a OpenidDiscovery object using the provided ObjectMapper.- Parameters:
json- Raw JSON StringobjectMapper- Jackson ObjectMapper- Returns:
- OpenidDiscovery object represented by the provided JSON
-
fromJson
public static OpenidDiscovery fromJson(InputStream json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON InputStream into a OpenidDiscovery object using the provided ObjectMapper.- Parameters:
json- Raw JSON InputStreamobjectMapper- Jackson ObjectMapper- Returns:
- OpenidDiscovery object represented by the provided JSON
-
getIssuer
public final URI getIssuer()
-
getAuthorizationEndpoint
public final URI getAuthorizationEndpoint()
-
getDeviceAuthorizationEndpoint
public final URI getDeviceAuthorizationEndpoint()
-
getTokenEndpoint
public final URI getTokenEndpoint()
-
getUserinfoEndpoint
public final URI getUserinfoEndpoint()
-
getRevocationEndpoint
public final URI getRevocationEndpoint()
-
getJwkUri
public final URI getJwkUri()
-
getUrl
public final URI getUrl()
-
-