Class ConnectorDescriptorValidator
- java.lang.Object
-
- org.apache.flink.table.descriptors.ConnectorDescriptorValidator
-
- All Implemented Interfaces:
DescriptorValidator
- Direct Known Subclasses:
FileSystemValidator
@Internal @Deprecated public abstract class ConnectorDescriptorValidator extends Object implements DescriptorValidator
Deprecated.Base validator for options of a connector.
-
-
Field Summary
Fields Modifier and Type Field Description static StringCONNECTORDeprecated.Prefix for connector-related properties.static StringCONNECTOR_PROPERTY_VERSIONDeprecated.Key for describing the property version.static StringCONNECTOR_TYPEDeprecated.Key for describing the type of the connector.static StringCONNECTOR_VERSIONDeprecated.Key for describing the version of the connector.
-
Constructor Summary
Constructors Constructor Description ConnectorDescriptorValidator()Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidvalidate(DescriptorProperties properties)Deprecated.Performs basic validation such as completeness tests.
-
-
-
Field Detail
-
CONNECTOR
public static final String CONNECTOR
Deprecated.Prefix for connector-related properties.- See Also:
- Constant Field Values
-
CONNECTOR_TYPE
public static final String CONNECTOR_TYPE
Deprecated.Key for describing the type of the connector. Usually used for factory discovery.- See Also:
- Constant Field Values
-
CONNECTOR_PROPERTY_VERSION
public static final String CONNECTOR_PROPERTY_VERSION
Deprecated.Key for describing the property version. This property can be used for backwards compatibility in case the property format changes.- See Also:
- Constant Field Values
-
CONNECTOR_VERSION
public static final String CONNECTOR_VERSION
Deprecated.Key for describing the version of the connector. This property can be used for different connector versions (e.g. Kafka 0.10 or Kafka 0.11).- See Also:
- Constant Field Values
-
-
Method Detail
-
validate
public void validate(DescriptorProperties properties)
Deprecated.Description copied from interface:DescriptorValidatorPerforms basic validation such as completeness tests.- Specified by:
validatein interfaceDescriptorValidator
-
-