Skip to content

Commit

Permalink
Removed credential_identifiers_supported from issuer metadata (#343)
Browse files Browse the repository at this point in the history
  • Loading branch information
babisRoutis authored Nov 19, 2024
1 parent 828d402 commit 678eeae
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ data class CredentialIssuerMetadata(
val notificationEndpoint: CredentialIssuerEndpoint? = null,
val credentialResponseEncryption: CredentialResponseEncryption = CredentialResponseEncryption.NotSupported,
val batchCredentialIssuance: BatchCredentialIssuance = BatchCredentialIssuance.NotSupported,
val credentialIdentifiersSupported: Boolean = false,
val credentialConfigurationsSupported: Map<CredentialConfigurationIdentifier, CredentialConfiguration>,
val display: List<Display> = emptyList(),
) : Serializable {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,6 @@ private data class CredentialIssuerMetadataTO(
@SerialName("notification_endpoint") val notificationEndpoint: String? = null,
@SerialName("credential_response_encryption") val credentialResponseEncryption: CredentialResponseEncryptionTO? = null,
@SerialName("batch_credential_issuance") val batchCredentialIssuance: BatchCredentialIssuanceTO? = null,
@SerialName("credential_identifiers_supported") val credentialIdentifiersSupported: Boolean = false,
@SerialName("signed_metadata") val signedMetadata: String? = null,
@SerialName("credential_configurations_supported") val credentialConfigurationsSupported: Map<String, CredentialSupportedTO> =
emptyMap(),
Expand Down Expand Up @@ -435,7 +434,6 @@ private data class CredentialIssuerMetadataTO(
notificationEndpoint,
credentialResponseEncryption(),
batchIssuance,
credentialIdentifiersSupported,
credentialsSupported,
display,
)
Expand Down
1 change: 0 additions & 1 deletion src/test/kotlin/eu/europa/ec/eudi/openid4vci/MockData.kt
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,6 @@ internal fun credentialIssuerMetadata() = CredentialIssuerMetadata(
),
),
BatchCredentialIssuance.Supported(batchSize = 2),
true,
mapOf(
CredentialConfigurationIdentifier("UniversityDegree_JWT") to universityDegreeJwt(),
CredentialConfigurationIdentifier("MobileDrivingLicense_msoMdoc") to mobileDrivingLicense(),
Expand Down

0 comments on commit 678eeae

Please sign in to comment.