Class CoreExtension
- java.lang.Object
-
- software.amazon.smithy.rulesengine.language.CoreExtension
-
- All Implemented Interfaces:
EndpointRuleSetExtension
public class CoreExtension extends java.lang.Object implements EndpointRuleSetExtension
Core extensions to smithy-rules-engine.
-
-
Constructor Summary
Constructors Constructor Description CoreExtension()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<Parameter>
getBuiltIns()
Provides built-in parameters to the rules engine.java.util.List<FunctionDefinition>
getLibraryFunctions()
Provides library functions to the rules engine.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface software.amazon.smithy.rulesengine.language.EndpointRuleSetExtension
getAuthSchemeValidators
-
-
-
-
Method Detail
-
getBuiltIns
public java.util.List<Parameter> getBuiltIns()
Description copied from interface:EndpointRuleSetExtension
Provides built-in parameters to the rules engine.- Specified by:
getBuiltIns
in interfaceEndpointRuleSetExtension
- Returns:
- A list of built-in parameters this extension provides.
-
getLibraryFunctions
public java.util.List<FunctionDefinition> getLibraryFunctions()
Description copied from interface:EndpointRuleSetExtension
Provides library functions to the rules engine.- Specified by:
getLibraryFunctions
in interfaceEndpointRuleSetExtension
- Returns:
- A list of library functions this extension provides.
-
-