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

ai.stapi.graphsystem.commandvalidation.model.CommandConstrainViolation Maven / Gradle / Ivy

package ai.stapi.graphsystem.commandvalidation.model;

import ai.stapi.graphsystem.commandvalidation.model.fieldPath.CommandViolationFieldPath;

public interface CommandConstrainViolation {

  String getCommandName();

  CommandViolationFieldPath getFieldPath();

  String getMessage();

  Level getLevel();

  enum Level {
    ERROR,
    WARNING
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy