
com.webauthn4j.converter.AuthenticationExtensionsClientOutputsConverter Maven / Gradle / Ivy
/*
* Copyright 2018 the original author or authors.
*
* 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
*
* https://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.webauthn4j.converter;
import com.fasterxml.jackson.core.type.TypeReference;
import com.webauthn4j.converter.exception.DataConversionException;
import com.webauthn4j.converter.util.JsonConverter;
import com.webauthn4j.converter.util.ObjectConverter;
import com.webauthn4j.data.extension.client.AuthenticationExtensionsClientOutputs;
import com.webauthn4j.data.extension.client.ExtensionClientOutput;
import com.webauthn4j.util.AssertUtil;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
/**
* Converter for {@link AuthenticationExtensionsClientOutputs}
*/
public class AuthenticationExtensionsClientOutputsConverter {
// ~ Instance fields
// ================================================================================================
private final JsonConverter jsonConverter;
// ~ Constructors
// ================================================================================================
public AuthenticationExtensionsClientOutputsConverter(@NotNull ObjectConverter objectConverter) {
AssertUtil.notNull(objectConverter, "objectConverter must not be null");
this.jsonConverter = objectConverter.getJsonConverter();
}
// ~ Methods
// ================================================================================================
public @Nullable AuthenticationExtensionsClientOutputs convert(@NotNull String value) {
try {
AssertUtil.notNull(value, "value must not be null");
return jsonConverter.readValue(value, new TypeReference>() {
});
} catch (IllegalArgumentException e) {
throw new DataConversionException(e);
}
}
public @NotNull String convertToString(@NotNull AuthenticationExtensionsClientOutputs value) {
try {
AssertUtil.notNull(value, "value must not be null");
return jsonConverter.writeValueAsString(value);
} catch (IllegalArgumentException e) {
throw new DataConversionException(e);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy