|
|
|
@ -71,12 +71,14 @@ import org.thingsboard.server.common.msg.TbMsgMetaData; |
|
|
|
import org.thingsboard.server.common.msg.TbMsgProcessingStackItem; |
|
|
|
import org.thingsboard.server.common.msg.queue.ServiceType; |
|
|
|
import org.thingsboard.server.common.msg.queue.TopicPartitionInfo; |
|
|
|
import org.thingsboard.server.dao.asset.AssetProfileService; |
|
|
|
import org.thingsboard.server.dao.asset.AssetService; |
|
|
|
import org.thingsboard.server.dao.attributes.AttributesService; |
|
|
|
import org.thingsboard.server.dao.cassandra.CassandraCluster; |
|
|
|
import org.thingsboard.server.dao.customer.CustomerService; |
|
|
|
import org.thingsboard.server.dao.dashboard.DashboardService; |
|
|
|
import org.thingsboard.server.dao.device.DeviceCredentialsService; |
|
|
|
import org.thingsboard.server.dao.device.DeviceProfileService; |
|
|
|
import org.thingsboard.server.dao.device.DeviceService; |
|
|
|
import org.thingsboard.server.dao.edge.EdgeEventService; |
|
|
|
import org.thingsboard.server.dao.edge.EdgeService; |
|
|
|
@ -559,6 +561,16 @@ class DefaultTbContext implements TbContext { |
|
|
|
return mainCtx.getDeviceService(); |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public DeviceProfileService getDeviceProfileService() { |
|
|
|
return mainCtx.getDeviceProfileService(); |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public AssetProfileService getAssetProfileService() { |
|
|
|
return mainCtx.getAssetProfileService(); |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public DeviceCredentialsService getDeviceCredentialsService() { |
|
|
|
return mainCtx.getDeviceCredentialsService(); |
|
|
|
|