Class ShortcutConfigurable.GatewayEvaluationContext
- java.lang.Object
-
- org.springframework.cloud.gateway.support.ShortcutConfigurable.GatewayEvaluationContext
-
- All Implemented Interfaces:
org.springframework.expression.EvaluationContext
- Enclosing interface:
- ShortcutConfigurable
public static class ShortcutConfigurable.GatewayEvaluationContext extends Object implements org.springframework.expression.EvaluationContext
-
-
Constructor Summary
Constructors Constructor Description GatewayEvaluationContext(org.springframework.beans.factory.BeanFactory beanFactory)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.springframework.expression.BeanResolvergetBeanResolver()List<org.springframework.expression.ConstructorResolver>getConstructorResolvers()List<org.springframework.expression.MethodResolver>getMethodResolvers()org.springframework.expression.OperatorOverloadergetOperatorOverloader()List<org.springframework.expression.PropertyAccessor>getPropertyAccessors()org.springframework.expression.TypedValuegetRootObject()org.springframework.expression.TypeComparatorgetTypeComparator()org.springframework.expression.TypeConvertergetTypeConverter()org.springframework.expression.TypeLocatorgetTypeLocator()ObjectlookupVariable(String name)voidsetVariable(String name, Object value)
-
-
-
Method Detail
-
getRootObject
public org.springframework.expression.TypedValue getRootObject()
- Specified by:
getRootObjectin interfaceorg.springframework.expression.EvaluationContext
-
getPropertyAccessors
public List<org.springframework.expression.PropertyAccessor> getPropertyAccessors()
- Specified by:
getPropertyAccessorsin interfaceorg.springframework.expression.EvaluationContext
-
getConstructorResolvers
public List<org.springframework.expression.ConstructorResolver> getConstructorResolvers()
- Specified by:
getConstructorResolversin interfaceorg.springframework.expression.EvaluationContext
-
getMethodResolvers
public List<org.springframework.expression.MethodResolver> getMethodResolvers()
- Specified by:
getMethodResolversin interfaceorg.springframework.expression.EvaluationContext
-
getBeanResolver
@Nullable public org.springframework.expression.BeanResolver getBeanResolver()
- Specified by:
getBeanResolverin interfaceorg.springframework.expression.EvaluationContext
-
getTypeLocator
public org.springframework.expression.TypeLocator getTypeLocator()
- Specified by:
getTypeLocatorin interfaceorg.springframework.expression.EvaluationContext
-
getTypeConverter
public org.springframework.expression.TypeConverter getTypeConverter()
- Specified by:
getTypeConverterin interfaceorg.springframework.expression.EvaluationContext
-
getTypeComparator
public org.springframework.expression.TypeComparator getTypeComparator()
- Specified by:
getTypeComparatorin interfaceorg.springframework.expression.EvaluationContext
-
getOperatorOverloader
public org.springframework.expression.OperatorOverloader getOperatorOverloader()
- Specified by:
getOperatorOverloaderin interfaceorg.springframework.expression.EvaluationContext
-
setVariable
public void setVariable(String name, Object value)
- Specified by:
setVariablein interfaceorg.springframework.expression.EvaluationContext
-
-