Interface PropertyInterceptorAware
-
public interface PropertyInterceptorAware
Proxies created viaConfigurationPropertiesProxyFactory
implement this interface to provide additional utility functions that aid proxy call processing.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getKey()
The key provided by the proxiedConfigurationProperties.prefix()
, or by a further derived key of a nested pojo inside of the originalConfigurationProperties
bean.DiscriminatedConfigurationPropertiesMethodCallProcessor
getProcessor()
The spring bean representing the processor to pass handling of calls to the proxied configuration bean's accessor API.
-
-
-
Method Detail
-
getKey
String getKey()
The key provided by the proxiedConfigurationProperties.prefix()
, or by a further derived key of a nested pojo inside of the originalConfigurationProperties
bean.- Returns:
- The spring environment property key for the proxied configuration bean
-
getProcessor
DiscriminatedConfigurationPropertiesMethodCallProcessor getProcessor()
The spring bean representing the processor to pass handling of calls to the proxied configuration bean's accessor API.- Returns:
- The spring bean representing the accessor API call processor
-
-