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

org.iris_events.asyncapi.parsers.PersistentParser Maven / Gradle / Ivy

There is a newer version: 6.1.8
Show newest version
package org.iris_events.asyncapi.parsers;

import org.iris_events.annotations.Message;
import org.jboss.jandex.AnnotationInstance;
import org.jboss.jandex.IndexView;

public class PersistentParser {

    private static final String MESSAGE_PERSISTENT_PARAM = "persistent";

    public static boolean getFromAnnotationClass(Message messageAnnotation) {
        return messageAnnotation.persistent();
    }

    public static boolean getFromAnnotationInstance(AnnotationInstance messageAnnotation, IndexView index) {
        return messageAnnotation.valueWithDefault(index, MESSAGE_PERSISTENT_PARAM).asBoolean();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy