All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.logspace.jvm.agent.api.json.BooleanEventPropertyJsonHandler Maven / Gradle / Ivy

The newest version!
/**
 * Logspace
 * Copyright (c) 2015 Indoqa Software Design und Beratung GmbH. All rights reserved.
 * This program and the accompanying materials are made available under the terms of
 * the Eclipse Public License Version 1.0, which accompanies this distribution and
 * is available at http://www.eclipse.org/legal/epl-v10.html.
 */
package io.logspace.jvm.agent.api.json;

import java.io.IOException;

import io.logspace.jvm.agent.shaded.jackson.core.JsonGenerator;
import io.logspace.jvm.agent.shaded.jackson.core.JsonParser;

import io.logspace.jvm.agent.api.event.BooleanEventProperty;
import io.logspace.jvm.agent.api.event.EventProperties;

public class BooleanEventPropertyJsonHandler extends AbstractEventPropertyJsonHandler {

    public static final String FIELD_NAME = "boolean-properties";

    @Override
    public String getFieldName() {
        return FIELD_NAME;
    }

    @Override
    protected void readPropertyValue(EventProperties eventProperties, String propertyName, JsonParser jsonParser) throws IOException {
        boolean booleanValue = jsonParser.getBooleanValue();
        eventProperties.add(new BooleanEventProperty(propertyName, booleanValue));
    }

    // @Override
    // public void readEventProperty(EventProperties eventProperties, JsonParser jsonParser) throws IOException {
    // String propertyKey = jsonParser.getCurrentName();
    // jsonParser.nextToken();
    //
    // boolean propertyValue = jsonParser.nextBooleanValue();
    //
    // eventProperties.add(new BooleanEventProperty(propertyKey, propertyValue));
    // }

    @Override
    protected void writePropertyValue(JsonGenerator jsonGenerator, Boolean propertyValue) throws IOException {
        jsonGenerator.writeBoolean(propertyValue);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy