Package com.smeup.kokos.sdk.registry
Class RpgProgramsRegistryYaml
java.lang.Object
com.smeup.kokos.sdk.registry.RpgProgramsRegistryYaml
Represents a registry for RPG programs that can be populated from YAML.
This class facilitates the mapping of program aliases to their corresponding RPG program names.
The registry uses a Map data structure to store these aliases, allowing for easy retrieval and modification.
- Author:
- Davide Palladino (davide.palladino@apuliasoft.com)
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the map of RPG program aliases.voidsetAliases(Map<String, String> aliases) Sets the map of RPG program aliases.
-
Constructor Details
-
RpgProgramsRegistryYaml
public RpgProgramsRegistryYaml()
-
-
Method Details
-
getAliases
Returns the map of RPG program aliases.- Returns:
- a map where the keys are aliases and values are the corresponding RPG program names.
-
setAliases
Sets the map of RPG program aliases.- Parameters:
aliases- a map where the keys are aliases and values are the corresponding RPG program names to set.
-