Class NativeConfigurationRegistry.ProxyConfiguration
- java.lang.Object
-
- org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.NativeConfigurationRegistry.ProxyConfiguration
-
- Enclosing class:
- NativeConfigurationRegistry
public static final class NativeConfigurationRegistry.ProxyConfiguration extends java.lang.Object
Configure the needs for runtime proxies.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description NativeConfigurationRegistry.ProxyConfiguration
add(NativeProxyEntry proxy)
Register the specifiedproxy
.java.util.Set<NativeProxyEntry>
getEntries()
Return theentries
of this registry.org.springframework.nativex.domain.proxies.ProxiesDescriptor
toProxiesDescriptor()
Return theProxiesDescriptor
of this registry.
-
-
-
Method Detail
-
add
public NativeConfigurationRegistry.ProxyConfiguration add(NativeProxyEntry proxy)
Register the specifiedproxy
.- Parameters:
proxy
- the proxy that should be available- Returns:
- this for method chaining
-
toProxiesDescriptor
public org.springframework.nativex.domain.proxies.ProxiesDescriptor toProxiesDescriptor()
Return theProxiesDescriptor
of this registry.- Returns:
- the proxy entries in the registry, as a
ProxiesDescriptor
instance
-
getEntries
public java.util.Set<NativeProxyEntry> getEntries()
Return theentries
of this registry.- Returns:
- the entries in the registry
-
-