Skip to content

Commit

Permalink
Merge pull request #3406 from arunans23/removecdc
Browse files Browse the repository at this point in the history
Remove inbuilt CDC implementation
  • Loading branch information
arunans23 authored Jul 11, 2024
2 parents 822ea28 + 75cf0e4 commit 9015ea5
Show file tree
Hide file tree
Showing 11 changed files with 2 additions and 830 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -170,10 +170,6 @@
<groupId>org.apache.axis2.transport</groupId>
<artifactId>axis2-transport-rabbitmq-amqp</artifactId>
</dependency>
<dependency>
<groupId>org.wso2.orbit.debezium</groupId>
<artifactId>debezium</artifactId>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
Expand All @@ -184,14 +180,6 @@
<artifactId>log4j-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
</dependency>
<dependency>
<groupId>org.wso2.carbon</groupId>
<artifactId>org.wso2.carbon.securevault</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
Expand Down Expand Up @@ -224,8 +212,7 @@
</Private-Package>
<Import-Package>
org.wso2.carbon.inbound.endpoint.persistence,
org.wso2.carbon.inbound.endpoint.osgi.service,
*;resolution:=optional
org.wso2.carbon.inbound.endpoint.osgi.service;
</Import-Package>
<DynamicImport-Package>*</DynamicImport-Package>
<Fragment-Host>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
import org.apache.synapse.inbound.InboundProcessorParams;
import org.apache.synapse.inbound.InboundRequestProcessor;
import org.apache.synapse.inbound.InboundRequestProcessorFactory;
import org.wso2.carbon.inbound.endpoint.protocol.cdc.CDCProcessor;
import org.wso2.carbon.inbound.endpoint.protocol.generic.GenericEventBasedConsumer;
import org.wso2.carbon.inbound.endpoint.protocol.generic.GenericEventBasedListener;
import org.wso2.carbon.inbound.endpoint.protocol.generic.GenericInboundListener;
Expand All @@ -45,7 +44,7 @@
*/
public class InboundRequestProcessorFactoryImpl implements InboundRequestProcessorFactory {

public static enum Protocols {jms, file, http, https, hl7, kafka, mqtt, rabbitmq, ws, wss, grpc, httpws, httpswss, cdc}
public static enum Protocols {jms, file, http, https, hl7, kafka, mqtt, rabbitmq, ws, wss, grpc, httpws, httpswss}

/**
* return underlying Request Processor Implementation according to protocol
Expand Down Expand Up @@ -98,8 +97,6 @@ public InboundRequestProcessor createInboundProcessor(InboundProcessorParams par
case grpc:
inboundRequestProcessor = new InboundGRPCListener(params);
break;
case cdc:
inboundRequestProcessor = new CDCProcessor(params);
}
} else if (params.getClassImpl() != null) {
if (GenericInboundListener.isListeningInboundEndpoint(params)) {
Expand Down

This file was deleted.

This file was deleted.

Loading

0 comments on commit 9015ea5

Please sign in to comment.