io.odpf.depot.bigquery.error.ErrorDescriptor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of depot Show documentation
Show all versions of depot Show documentation
A sink connector library containing multiple sink implementations
package io.odpf.depot.bigquery.error;
/**
* Descriptor interface that defines the various error descriptors and the corresponding error types.
*/
public interface ErrorDescriptor {
/**
* If the implementing descriptor matches the condition as prescribed in the concrete implementation.
*
* @return - true if the condition matches, false otherwise.
*/
boolean matches();
}