You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by GitBox <gi...@apache.org> on 2021/11/10 14:03:24 UTC

[GitHub] [camel-kafka-connector] ruchirvaninasdaq edited a comment on issue #1285: Custom kafkaconnetor class as CamelAws2s3SourceConnector

ruchirvaninasdaq edited a comment on issue #1285:
URL: https://github.com/apache/camel-kafka-connector/issues/1285#issuecomment-965215343


   So I have updated the Camel sourceconnector here to my custom class which is as follows.
   
   ```
   public class NcdsCamelAws2s3SourceConnector extends CamelSourceConnector {
   
       private static final Logger LOG = LoggerFactory.getLogger(NcdsCamelAws2s3SourceConnector.class);
       @Override
       public ConfigDef config() {
           return CamelAws2s3SourceConnectorConfig.conf();
       }
       @Override
       public Class<? extends Task> taskClass() {
           return CamelAws2s3SourceTask.class;
       }
       // Some customcode 
   }```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org