com.nimbusds.openid.connect.sdk.rp.OIDCClientInformationResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oauth2-oidc-sdk Show documentation
Show all versions of oauth2-oidc-sdk Show documentation
OAuth 2.0 SDK with OpenID Connection extensions for developing client
and server applications.
/*
* oauth2-oidc-sdk
*
* Copyright 2012-2016, Connect2id Ltd and contributors.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use
* this file except in compliance with the License. You may obtain a copy of the
* License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed
* under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*/
package com.nimbusds.openid.connect.sdk.rp;
import net.jcip.annotations.Immutable;
import com.nimbusds.oauth2.sdk.ParseException;
import com.nimbusds.oauth2.sdk.client.ClientInformationResponse;
import com.nimbusds.oauth2.sdk.http.HTTPResponse;
/**
* OpenID Connect client information response.
*
* Example HTTP response:
*
*
* HTTP/1.1 200 OK
* Content-Type: application/json
* Cache-Control: no-store
* Pragma: no-cache
*
* {
* "client_id" : "s6BhdRkqt3",
* "client_secret" :"ZJYCqe3GGRvdrudKyZS0XhGv_Z45DuKhCUk0gBR1vZk",
* "client_secret_expires_at" : 1577858400,
* "registration_access_token" : "this.is.an.access.token.value.ffx83",
* "registration_client_uri" : "https://server.example.com/connect/register?client_id=s6BhdRkqt3",
* "token_endpoint_auth_method" : "client_secret_basic",
* "application_type" : "web",
* "redirect_uris" : ["https://client.example.org/callback","https://client.example.org/callback2"],
* "client_name" : "My Example",
* "client_name#ja-Jpan-JP" : "クライアント名",
* "logo_uri" : "https://client.example.org/logo.png",
* "subject_type" : "pairwise",
* "sector_identifier_uri" : "https://other.example.net/file_of_redirect_uris.json",
* "jwks_uri" : "https://client.example.org/my_public_keys.jwks",
* "userinfo_encrypted_response_alg" : "RSA1_5",
* "userinfo_encrypted_response_enc" : "A128CBC-HS256",
* "contacts" : ["[email protected]", "[email protected]"],
* "request_uris" : ["https://client.example.org/rf.txt#qpXaRLh_n93TTR9F252ValdatUQvQiJi5BDub2BeznA"]
* }
*
*
* Related specifications:
*
*
* - OpenID Connect Dynamic Client Registration 1.0, section 3.2 and 4.3.
*
- OAuth 2.0 Dynamic Client Registration Management Protocol (RFC
* 7592), section 3.
*
- OAuth 2.0 Dynamic Client Registration Protocol (RFC 7591), section
* 3.2.1.
*
*/
@Immutable
public class OIDCClientInformationResponse extends ClientInformationResponse {
/**
* Creates a new OpenID Connect client information response.
*
* @param clientInfo The OpenID Connect client information. Must not be
* {@code null}.
*/
public OIDCClientInformationResponse(final OIDCClientInformation clientInfo) {
super(clientInfo);
}
/**
* Gets the OpenID Connect client information.
*
* @return The OpenID Connect client information.
*/
public OIDCClientInformation getOIDCClientInformation() {
return (OIDCClientInformation)getClientInformation();
}
/**
* Parses an OpenID Connect client information response from the
* specified HTTP response.
*
* @param httpResponse The HTTP response. Must not be {@code null}.
*
* @return The OpenID Connect client information response.
*
* @throws ParseException If the HTTP response couldn't be parsed to an
* OpenID Connect client information response.
*/
public static OIDCClientInformationResponse parse(final HTTPResponse httpResponse)
throws ParseException {
httpResponse.ensureStatusCode(HTTPResponse.SC_OK, HTTPResponse.SC_CREATED);
OIDCClientInformation clientInfo = OIDCClientInformation.parse(httpResponse.getContentAsJSONObject());
return new OIDCClientInformationResponse(clientInfo);
}
}