Assign a Customization Resource Bundle

Assigns a customization resource bundle to all qualified application connections or application connection templates for the application ID.

Syntax

void assignCustomizationResourceBundle(java.lang.String applicationId,
  java.lang.String customizationResourceBundleId,
  CUSTOMIZATION_RESOURCE_BUNDLE_REFERRAL referral)
  throws SUPAdminException;

Returns

If successful, returns silently. If unsuccessful, returns SUPAdminException.

Examples

  • Assign to all application connections with the defined application ID
    app.assignCustomizationResourceBundle("<application ID>", "<customization resource bundle ID>",
    CUSTOMIZATION_RESOURCE_BUNDLE_REFERRAL.APPCONNECTION);
  • Assign to all application connection templates with the defined application ID
    app.assignCustomizationResourceBundle("<application ID>", "<customization resource bundle ID>",
    CUSTOMIZATION_RESOURCE_BUNDLE_REFERRAL.APPCONNECTION_TEMPLATE);