Class BaseSpringBootClient
- java.lang.Object
-
- io.tech1.framework.utilities.feigns.clients.BaseSpringBootClient
-
- All Implemented Interfaces:
AbstractSpringBootClient
public abstract class BaseSpringBootClient extends Object implements AbstractSpringBootClient
-
-
Field Summary
Fields Modifier and Type Field Description protected SpringBootClientFeignspringBootClientFeign
-
Constructor Summary
Constructors Constructor Description BaseSpringBootClient(SpringBootClientFeign springBootClientFeign)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SpringBootActuatorHealthhealth()Tuple2<String,SpringBootActuatorHealth>healthMappedByServerName()SpringBootActuatorInfoinfo()Tuple2<String,SpringBootActuatorInfo>infoMappedByServerName()booleanisAlive()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.tech1.framework.utilities.feigns.clients.AbstractSpringBootClient
getServerName
-
-
-
-
Field Detail
-
springBootClientFeign
protected final SpringBootClientFeign springBootClientFeign
-
-
Constructor Detail
-
BaseSpringBootClient
@ConstructorProperties("springBootClientFeign") public BaseSpringBootClient(SpringBootClientFeign springBootClientFeign)
-
-
Method Detail
-
isAlive
public boolean isAlive()
- Specified by:
isAlivein interfaceAbstractSpringBootClient
-
info
public SpringBootActuatorInfo info()
- Specified by:
infoin interfaceAbstractSpringBootClient
-
infoMappedByServerName
public Tuple2<String,SpringBootActuatorInfo> infoMappedByServerName()
- Specified by:
infoMappedByServerNamein interfaceAbstractSpringBootClient
-
health
public SpringBootActuatorHealth health()
- Specified by:
healthin interfaceAbstractSpringBootClient
-
healthMappedByServerName
public Tuple2<String,SpringBootActuatorHealth> healthMappedByServerName()
- Specified by:
healthMappedByServerNamein interfaceAbstractSpringBootClient
-
-