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

io.xlate.edi.internal.stream.tokenization.ValidationEventHandler Maven / Gradle / Ivy

There is a newer version: 1.25.2
Show newest version
package io.xlate.edi.internal.stream.tokenization;

import io.xlate.edi.schema.EDIReference;
import io.xlate.edi.stream.EDIStreamEvent;
import io.xlate.edi.stream.EDIStreamValidationError;

public interface ValidationEventHandler {

    void loopBegin(EDIReference typeReference);

    void loopEnd(EDIReference typeReference);

    void segmentError(CharSequence token, EDIReference typeReference, EDIStreamValidationError error);

    void elementError(EDIStreamEvent event,
                      EDIStreamValidationError error,
                      EDIReference typeReference,
                      CharSequence text,
                      int element,
                      int component,
                      int repetition);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy