Skip to content
Snippets Groups Projects
Commit ad8f45ed authored by Mingyang Zhu's avatar Mingyang Zhu
Browse files

add annotations

parent 2cb07dfe
No related branches found
No related tags found
1 merge request!53customized readiness check to make sure cache layer is ready before serving traffic
package org.opengroup.osdu.partition.provider.aws.service;
import org.opengroup.osdu.partition.provider.interfaces.IHealthCheckService;
import org.springframework.stereotype.Service;
@Service
public class HealthCheckServiceImpl implements IHealthCheckService {
@Override
......
package org.opengroup.osdu.partition.provider.azure.service;
import lombok.RequiredArgsConstructor;
import org.opengroup.osdu.partition.model.PartitionInfo;
import org.opengroup.osdu.partition.provider.interfaces.IHealthCheckService;
import org.opengroup.osdu.partition.provider.interfaces.IPartitionServiceCache;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.stereotype.Service;
@Service
@RequiredArgsConstructor
public class HealthCheckServiceImpl implements IHealthCheckService {
@Autowired
......
package org.opengroup.osdu.partition.provider.gcp.service;
import org.opengroup.osdu.partition.provider.interfaces.IHealthCheckService;
import org.springframework.stereotype.Service;
@Service
public class HealthCheckServiceImpl implements IHealthCheckService {
@Override
......
package org.opengroup.osdu.partition.provider.ibm.service;
import org.opengroup.osdu.partition.provider.interfaces.IHealthCheckService;
import org.springframework.stereotype.Service;
@Service
public class HealthCheckServiceImpl implements IHealthCheckService {
@Override
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment