Uses of Enum Class
de.iip_ecosphere.platform.ecsRuntime.kubernetes.proxy.ProxyType
Packages that use ProxyType
Package
Description
The basic implementation for the Kubernetes proxy.
-
Uses of ProxyType in de.iip_ecosphere.platform.ecsRuntime.kubernetes.proxy
Fields in de.iip_ecosphere.platform.ecsRuntime.kubernetes.proxy declared as ProxyTypeMethods in de.iip_ecosphere.platform.ecsRuntime.kubernetes.proxy that return ProxyTypeModifier and TypeMethodDescriptionAbstractK8SJavaProxy.getProxyType()Returns the proxyType of K8S java proxy.static ProxyTypeReturns the enum constant of this class with the specified name.static ProxyType[]ProxyType.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in de.iip_ecosphere.platform.ecsRuntime.kubernetes.proxy with parameters of type ProxyTypeModifier and TypeMethodDescriptionprotected static StringAbstractK8SJavaProxy.getServerAddress(ProxyType proxyType, String serverIP, String serverPort, boolean tlsCheck) Create the server address and port string which is either the MasterProxy or K8S apiserver.voidAbstractK8SJavaProxy.setProxyType(ProxyType proxyType) Set the proxyType of K8S java proxy.Constructors in de.iip_ecosphere.platform.ecsRuntime.kubernetes.proxy with parameters of type ProxyTypeModifierConstructorDescriptionAasK8SJavaProxy(ProxyType proxyType, int aasPort, String serverIP, String serverPort, boolean tlsCheck) Creates a K8S java proxy instance, it will be either MasterProxy or WorkerProxy.AbstractK8SJavaProxy(ProxyType proxyType, String serverAddress) Creates a K8S java proxy instance, it will be either MasterProxy or WorkerProxy.HttpK8SJavaProxy(ProxyType proxyType, String serverIP, String serverPort, boolean tlsCheck) Creates a K8S java proxy instance, it will be either MasterProxy or WorkerProxy.