Unassign a Customization Resource Bundle

Unassigns a customization resource bundle from all applicable application connections or application connection templates for the application ID.

Syntax

void unassignCustomizationResourceBundle(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

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