Java Code Examples for com.github.jcustenborder.kafka.connect.utils.VersionUtil#version()

The following examples show how to use com.github.jcustenborder.kafka.connect.utils.VersionUtil#version() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: SolrSinkConnector.java    From kafka-connect-solr with Apache License 2.0 4 votes vote down vote up
@Override
public String version() {
  return VersionUtil.version(this.getClass());
}
 
Example 2
Source File: MySinkConnector.java    From kafka-connect-archtype with Apache License 2.0 4 votes vote down vote up
@Override
public String version() {
  return VersionUtil.version(this.getClass());
}
 
Example 3
Source File: MySinkTask.java    From kafka-connect-archtype with Apache License 2.0 4 votes vote down vote up
@Override
public String version() {
  return VersionUtil.version(this.getClass());
}
 
Example 4
Source File: MySourceTask.java    From kafka-connect-archtype with Apache License 2.0 4 votes vote down vote up
@Override
public String version() {
  return VersionUtil.version(this.getClass());
}
 
Example 5
Source File: MySourceConnector.java    From kafka-connect-archtype with Apache License 2.0 4 votes vote down vote up
@Override
public String version() {
  return VersionUtil.version(this.getClass());
}
 
Example 6
Source File: SplunkHttpSinkConnector.java    From kafka-connect-splunk with Apache License 2.0 4 votes vote down vote up
@Override
public String version() {
  return VersionUtil.version(this.getClass());
}
 
Example 7
Source File: SplunkHttpSourceTask.java    From kafka-connect-splunk with Apache License 2.0 4 votes vote down vote up
@Override
public String version() {
  return VersionUtil.version(this.getClass());
}
 
Example 8
Source File: SplunkHttpSourceConnector.java    From kafka-connect-splunk with Apache License 2.0 4 votes vote down vote up
@Override
public String version() {
  return VersionUtil.version(this.getClass());
}
 
Example 9
Source File: SplunkHttpSinkTask.java    From kafka-connect-splunk with Apache License 2.0 4 votes vote down vote up
@Override
public String version() {
  return VersionUtil.version(this.getClass());
}
 
Example 10
Source File: SolrSinkTask.java    From kafka-connect-solr with Apache License 2.0 4 votes vote down vote up
@Override
public String version() {
  return VersionUtil.version(this.getClass());
}
 
Example 11
Source File: RedisSinkTask.java    From kafka-connect-redis with Apache License 2.0 4 votes vote down vote up
@Override
public String version() {
  return VersionUtil.version(this.getClass());
}
 
Example 12
Source File: AbstractSourceTask.java    From kafka-connect-spooldir with Apache License 2.0 4 votes vote down vote up
@Override
public String version() {
  return VersionUtil.version(this.getClass());
}
 
Example 13
Source File: SpoolDirLineDelimitedSourceConnector.java    From kafka-connect-spooldir with Apache License 2.0 4 votes vote down vote up
@Override
public String version() {
  return VersionUtil.version(this.getClass());
}
 
Example 14
Source File: SpoolDirELFSourceConnector.java    From kafka-connect-spooldir with Apache License 2.0 4 votes vote down vote up
@Override
public String version() {
  return VersionUtil.version(this.getClass());
}
 
Example 15
Source File: AbstractSpoolDirSourceConnector.java    From kafka-connect-spooldir with Apache License 2.0 4 votes vote down vote up
@Override
public String version() {
  return VersionUtil.version(this.getClass());
}
 
Example 16
Source File: SpoolDirSchemaLessJsonSourceConnector.java    From kafka-connect-spooldir with Apache License 2.0 4 votes vote down vote up
@Override
public String version() {
  return VersionUtil.version(this.getClass());
}
 
Example 17
Source File: TwitterSourceConnector.java    From kafka-connect-twitter with Apache License 2.0 4 votes vote down vote up
@Override
public String version() {
  return VersionUtil.version(this.getClass());
}
 
Example 18
Source File: TwitterSourceTask.java    From kafka-connect-twitter with Apache License 2.0 4 votes vote down vote up
@Override
public String version() {
  return VersionUtil.version(this.getClass());
}
 
Example 19
Source File: RedisSinkConnector.java    From kafka-connect-redis with Apache License 2.0 4 votes vote down vote up
@Override
public String version() {
  return VersionUtil.version(this.getClass());
}