Export a Customization Resource Bundle

Exports a customization resource bundle from an application to a JAR file.

Syntax

void exportCustomizationResourceBundle(java.io.File file,
  java.lang.String applicationId,
  java.lang.String customizationResourceBundleId)
  throws SUPAdminException;

Returns

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

Examples

  • Export
    File file = new File("C:\\ExportedCRB.jar");
    app.exportCustomizationResourceBundle(file, "<application ID>", "<customization resource bundle ID>");