On 28. Mar 2020, at 08:49, Mario Juric <[email protected]> wrote:
>
> I think I figured it out. I need to use createSharedResourceDescription
> instead, correct?
If you used
public static ExternalResourceDescription
createExternalResourceDescription(final String aName,
Class<? extends SharedResourceObject> aInterface, String aUrl,
Object... aParams) {
in uimaFIT v2, then the replacement in uimaFIT v3 should be
public static ExternalResourceDescription createSharedResourceDescription(
String aUrl, Class<? extends SharedResourceObject> aInterface,
Object... aParams) {
> The URI parameter has moved to the front instead. That method seems to have
> been there previously, but I never used it.
The second signature is only present in uimaFIT v3, not in v2. The signatures
and naming were changed from v2 to v3 to avoid ambiguities.
Cf. https://issues.apache.org/jira/browse/UIMA-3928
Cheers,
-- Richard