Class ClientId (1.4.0)
Stay organized with collections
Save and categorize content based on your preferences.
publicclass ClientIdAn OAuth2 user authorization Client ID and associated information.
Corresponds to the information in the json file downloadable for a Client ID.
Inherited Members
Static Methods
fromJson(Map<String,Object> json)
publicstaticClientIdfromJson(Map<String,Object>json)Constructs a Client ID from JSON from a downloaded file.
the ClientId instance based on the JSON
the JSON could not be parsed
fromResource(Class<?> relativeClass, String resourceName)
publicstaticClientIdfromResource(Class<?>relativeClass,StringresourceName)Constructs a Client ID from JSON file stored as a resource.
the constructed ClientID instance based on the JSON in the resource
The JSON could not be loaded or parsed.
fromStream(InputStream stream)
publicstaticClientIdfromStream(InputStreamstream)Constructs a Client ID from JSON file stream.
the constructed ClientID instance based on the JSON in the stream
the JSON could not be read or parsed
newBuilder()
publicstaticClientId.BuildernewBuilder()of(String clientId, String clientSecret)
publicstaticClientIdof(StringclientId,StringclientSecret)Constructs a client ID from an explicit ID and secret.
Note: Direct use of this factory method in application code is not recommended to avoid having secrets or values that need to be updated in source code.
The ClientId instance.
Methods
getClientId()
publicfinalStringgetClientId()Returns the text identifier of the Client ID.
The text identifier of the Client ID.
getClientSecret()
publicfinalStringgetClientSecret()Returns the secret associated with the Client ID.
The secret associated with the Client ID.
toBuilder()
publicClientId.BuildertoBuilder()