Retrieves a customization resource bundle identifier from its binaries.
String getCustomizationResourceBundleId(byte[] customizationResourceBundleBytes) throws SUPAdminException;
If successful, returns the ID of the supplied customization resource bundle binaries. If unsuccessful, returns SUPAdminException.
File file = new File("C:\\CustomizationResourceBundle.jar");
InputStream is = new FileInputStream(file);
byte[] bytes = new byte[is.available()];
is.read(bytes);
app.getCustomizationResourceBundleId(bytes);