Skip to content

Commit dc84b03

Browse files
committed
Fixed dependencies on backend (the Proxy profile should no longer depend on the RPC profile)
1 parent ccc25b2 commit dc84b03

File tree

10 files changed

+13
-6
lines changed

10 files changed

+13
-6
lines changed

devicehive-backend/src/main/java/com/devicehive/application/BackendProxyClientConfig.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
* #L%
2121
*/
2222

23+
import com.devicehive.model.ServerEvent;
2324
import com.devicehive.proxy.ProxyMessageDispatcher;
2425
import com.devicehive.proxy.ProxyRequestHandler;
2526
import com.devicehive.proxy.ProxyServerEventHandler;
@@ -31,7 +32,6 @@
3132
import com.devicehive.proxy.client.WebSocketKafkaProxyClient;
3233
import com.devicehive.proxy.config.WebSocketKafkaProxyConfig;
3334
import com.devicehive.shim.api.server.MessageDispatcher;
34-
import com.devicehive.shim.kafka.server.ServerEvent;
3535
import com.google.gson.Gson;
3636
import com.lmax.disruptor.*;
3737
import org.springframework.beans.factory.annotation.Autowired;

devicehive-backend/src/main/java/com/devicehive/proxy/ProxyRequestHandler.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020
* #L%
2121
*/
2222

23+
import com.devicehive.model.ServerEvent;
2324
import com.devicehive.proxy.api.NotificationHandler;
2425
import com.devicehive.proxy.api.ProxyClient;
2526
import com.devicehive.shim.api.Request;
26-
import com.devicehive.shim.kafka.server.ServerEvent;
2727
import com.google.gson.Gson;
2828
import com.lmax.disruptor.RingBuffer;
2929
import org.slf4j.Logger;

devicehive-backend/src/main/java/com/devicehive/proxy/ProxyServerEventHandler.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
*/
2222

2323
import com.devicehive.application.RequestHandlersMapper;
24+
import com.devicehive.model.ServerEvent;
2425
import com.devicehive.proxy.api.ProxyClient;
2526
import com.devicehive.proxy.api.ProxyMessage;
2627
import com.devicehive.proxy.api.ProxyMessageBuilder;
@@ -31,7 +32,6 @@
3132
import com.devicehive.shim.api.Request;
3233
import com.devicehive.shim.api.Response;
3334
import com.devicehive.shim.api.server.RequestHandler;
34-
import com.devicehive.shim.kafka.server.ServerEvent;
3535
import com.google.gson.Gson;
3636
import com.lmax.disruptor.WorkHandler;
3737
import org.slf4j.Logger;

devicehive-shim-kafka-impl/src/main/java/com/devicehive/shim/kafka/server/ServerEvent.java devicehive-common/src/main/java/com/devicehive/model/ServerEvent.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.devicehive.shim.kafka.server;
1+
package com.devicehive.model;
22

33
/*
44
* #%L

devicehive-proxy-ws-kafka-impl/pom.xml

+4
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,9 @@
2828
<artifactId>javax.websocket-client-api</artifactId>
2929
<version>${javax.websocket.version}</version>
3030
</dependency>
31+
<dependency>
32+
<groupId>com.lmax</groupId>
33+
<artifactId>disruptor</artifactId>
34+
</dependency>
3135
</dependencies>
3236
</project>

devicehive-shim-kafka-impl/src/main/java/com/devicehive/shim/config/server/KafkaRpcServerConfig.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
import com.devicehive.shim.kafka.server.KafkaRpcServer;
2929
import com.devicehive.shim.config.KafkaRpcConfig;
3030
import com.devicehive.shim.kafka.server.RequestConsumer;
31-
import com.devicehive.shim.kafka.server.ServerEvent;
31+
import com.devicehive.model.ServerEvent;
3232
import com.devicehive.shim.kafka.server.ServerEventHandler;
3333
import com.devicehive.shim.kafka.topic.KafkaTopicService;
3434
import com.google.gson.Gson;

devicehive-shim-kafka-impl/src/main/java/com/devicehive/shim/kafka/builder/ServerBuilder.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
import com.devicehive.shim.api.server.RpcServer;
2727
import com.devicehive.shim.kafka.server.KafkaRpcServer;
2828
import com.devicehive.shim.kafka.server.RequestConsumer;
29-
import com.devicehive.shim.kafka.server.ServerEvent;
29+
import com.devicehive.model.ServerEvent;
3030
import com.devicehive.shim.kafka.server.ServerEventHandler;
3131
import com.lmax.disruptor.FatalExceptionHandler;
3232
import com.lmax.disruptor.WorkerPool;

devicehive-shim-kafka-impl/src/main/java/com/devicehive/shim/kafka/server/KafkaRpcServer.java

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
* #L%
2121
*/
2222

23+
import com.devicehive.model.ServerEvent;
2324
import com.devicehive.shim.api.server.MessageDispatcher;
2425
import com.devicehive.shim.api.server.RpcServer;
2526
import com.lmax.disruptor.RingBuffer;

devicehive-shim-kafka-impl/src/main/java/com/devicehive/shim/kafka/server/RequestConsumer.java

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
* #L%
2121
*/
2222

23+
import com.devicehive.model.ServerEvent;
2324
import com.devicehive.shim.api.Request;
2425
import com.lmax.disruptor.RingBuffer;
2526
import org.apache.kafka.clients.consumer.ConsumerRecords;

devicehive-shim-kafka-impl/src/main/java/com/devicehive/shim/kafka/server/ServerEventHandler.java

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
* #L%
2121
*/
2222

23+
import com.devicehive.model.ServerEvent;
2324
import com.devicehive.shim.api.Request;
2425
import com.devicehive.shim.api.Response;
2526
import com.devicehive.shim.api.server.MessageDispatcher;

0 commit comments

Comments
 (0)