org.sentrysoftware.metricshub.extension.snmp.SnmpVersionDeserializer Maven / Gradle / Ivy
package org.sentrysoftware.metricshub.extension.snmp;
/*-
* ╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲
* MetricsHub SNMP Extension
* ჻჻჻჻჻჻
* Copyright 2023 - 2024 Sentry Software
* ჻჻჻჻჻჻
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see .
* ╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱
*/
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.databind.DeserializationContext;
import com.fasterxml.jackson.databind.JsonDeserializer;
import java.io.IOException;
import org.sentrysoftware.metricshub.extension.snmp.SnmpConfiguration.SnmpVersion;
/**
* Custom deserializer for converting SNMP version values from JSON during deserialization.
* It maps the JSON value to the corresponding {@link SnmpVersion} enum.
*/
public class SnmpVersionDeserializer extends JsonDeserializer {
/**
* Deserializes the SNMP version value from JSON and maps it to the {@link SnmpVersion} enum.
*
* @param parser JSON parser
* @param ctxt Deserialization context
* @return The deserialized {@link SnmpVersion} value
* @throws IOException If an I/O error occurs during deserialization
*/
@Override
public SnmpVersion deserialize(JsonParser parser, DeserializationContext ctxt) throws IOException {
if (parser == null) {
return null;
}
try {
return SnmpVersion.interpretValueOf(parser.getValueAsString());
} catch (IllegalArgumentException e) {
throw new IOException(e.getMessage());
}
}
}