Class RpgProgramsRegistryYaml

java.lang.Object
com.smeup.kokos.sdk.registry.RpgProgramsRegistryYaml

public class RpgProgramsRegistryYaml extends Object
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 Details

    • RpgProgramsRegistryYaml

      public RpgProgramsRegistryYaml()
  • Method Details

    • getAliases

      public Map<String,String> 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

      public void setAliases(Map<String,String> aliases)
      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.