You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@uima.apache.org by "Marshall Schor (JIRA)" <ui...@incubator.apache.org> on 2009/08/14 21:36:14 UTC

[jira] Updated: (UIMA-114) Configuration parameter groups overly complicated

     [ https://issues.apache.org/jira/browse/UIMA-114?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Marshall Schor updated UIMA-114:
--------------------------------

    Affects Version/s: 2.3

deferring

> Configuration parameter groups overly complicated
> -------------------------------------------------
>
>                 Key: UIMA-114
>                 URL: https://issues.apache.org/jira/browse/UIMA-114
>             Project: UIMA
>          Issue Type: Improvement
>          Components: Core Java Framework
>    Affects Versions: 2.3
>         Environment: Configuration parameter overrides
>            Reporter: Eddie Epstein
>
> The design of configuration parameter groups is overly complicated. The required capabilities could be achieved with the following design:
> Define a base configuration parameter name as those characters up to the first '.' character.
> Define a configuration parameter suffix as those characters after the first '.' character.
> Replace the API
>    getConfigParameterValue(String aGroupName, String aParamName)
> with
>    getConfigParameterValue(String aSuffixName, String aParamName)
> and implement the following behavior:
>   if aParameterName.aSuffixName does not exist, attempt to return the object for aParameterName
> The APIs getConfigParameterNames(String aSuffixName)  could easily be implemented. 
> and getConfigurationGroupNames() replaced with getConfigurationSuffixNames()
> This design will simplify the descriptor, the framework implementation and particularly the descriptor tools GUI

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.