You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@uima.apache.org by "ASF GitHub Bot (JIRA)" <de...@uima.apache.org> on 2018/05/29 18:45:00 UTC

[jira] [Commented] (UIMA-3928) createExternalResourceDescription() signatures shadowing each other

    [ https://issues.apache.org/jira/browse/UIMA-3928?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16494044#comment-16494044 ] 

ASF GitHub Bot commented on UIMA-3928:
--------------------------------------

reckart opened a new pull request #3: [UIMA-3928] createExternalResourceDescription() signatures shadowing each other
URL: https://github.com/apache/uima-uimafit/pull/3
 
 
   See: https://issues.apache.org/jira/browse/UIMA-3928

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


> createExternalResourceDescription() signatures shadowing each other
> -------------------------------------------------------------------
>
>                 Key: UIMA-3928
>                 URL: https://issues.apache.org/jira/browse/UIMA-3928
>             Project: UIMA
>          Issue Type: Bug
>          Components: uimaFIT
>    Affects Versions: 2.0.0uimaFIT
>            Reporter: Richard Eckart de Castilho
>            Priority: Major
>             Fix For: 3.0.0uimaFIT
>
>
> The method 
> {noformat}
> ExternalResourceDescription createExternalResourceDescription(
>   Class<? extends SharedResourceObject> aInterface, 
>   String aUrl, 
>   Object... aParams)
> {noformat}
> can be invoked if the user actually wanted to call the method
> {noformat}
> ExternalResourceDescription createExternalResourceDescription(
>   Class<? extends Resource> aInterface, 
>   Object... aParams)
> {noformat}
> E.g.
> {noformat}
> createExternalResourceDescription(
>         MyResource,
>         MyResource.PARAM_VALUE, 
>         "myvalue"))
> {noformat}
> Java seems to be smart enough to invoke the correct method, but when calling this from Groovy, it fails:
> {noformat}
> Caught: java.lang.IllegalArgumentException: Parameter arguments have to come in key/value pairs, but found odd number of arguments [3]
> java.lang.IllegalArgumentException: Parameter arguments have to come in key/value pairs, but found odd number of arguments [3]
> 	at org.apache.uima.fit.factory.ConfigurationParameterFactory.ensureParametersComeInPairs(ConfigurationParameterFactory.java:531)
> 	at org.apache.uima.fit.factory.ConfigurationParameterFactory.createConfigurationData(ConfigurationParameterFactory.java:374)
> 	at org.apache.uima.fit.factory.ExternalResourceFactory.createExternalResourceDescription(ExternalResourceFactory.java:277)
> 	at org.apache.uima.fit.factory.ExternalResourceFactory.createExternalResourceDescription(ExternalResourceFactory.java:213)
> {noformat}
> A workaround is currently to cast the first parameter name to Object:
> {noformat}
> createExternalResourceDescription(
>         MyResource,
>         (Object) MyResource.PARAM_VALUE, 
>         "myvalue"))
> {noformat}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)