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

com.ververica.common.model.draft.PlanValidationResult Maven / Gradle / Ivy

package com.ververica.common.model.draft;

import lombok.Data;

@Data
public class PlanValidationResult {
  /** Validation result, true or false */
  Boolean success;

  /** Message to describe more details. */
  String message;

  /**
   * Resource Plan For better performance, we will retrieve the resoruce plan from the validation
   * stage.
   */
  String resourcePlan;

  /** Exec Plan Same reason with resource plan */
  String execPlan;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy