< prev index next >

src/jdk.incubator.jpackage/macosx/classes/jdk/incubator/jpackage/internal/MacAppStoreBundler.java

Print this page

        

@@ -38,14 +38,10 @@
 
     private static final ResourceBundle I18N = ResourceBundle.getBundle(
             "jdk.incubator.jpackage.internal.resources.MacResources");
 
     private static final String TEMPLATE_BUNDLE_ICON_HIDPI = "java.icns";
-    private final static String DEFAULT_ENTITLEMENTS =
-            "MacAppStore.entitlements";
-    private final static String DEFAULT_INHERIT_ENTITLEMENTS =
-            "MacAppStore_Inherit.entitlements";
 
     public static final BundlerParamInfo<String> MAC_APP_STORE_APP_SIGNING_KEY =
             new StandardBundlerParam<>(
             "mac.signing-key-app",
             String.class,

@@ -92,17 +88,10 @@
 
                 return result;
             },
             (s, p) -> s);
 
-    public static final StandardBundlerParam<File> MAC_APP_STORE_ENTITLEMENTS  =
-            new StandardBundlerParam<>(
-            Arguments.CLIOptions.MAC_APP_STORE_ENTITLEMENTS.getId(),
-            File.class,
-            params -> null,
-            (s, p) -> new File(s));
-
     public static final BundlerParamInfo<String> INSTALLER_SUFFIX =
             new StandardBundlerParam<> (
             "mac.app-store.installerName.suffix",
             String.class,
             params -> "-MacAppStore",

@@ -199,20 +188,18 @@
                 APP_NAME.fetchFrom(params) + "_Inherit.entitlements");
     }
 
     private void prepareEntitlements(Map<String, ? super Object> params)
             throws IOException {
-        createResource(DEFAULT_ENTITLEMENTS, params)
-                .setCategory(
-                        I18N.getString("resource.mac-app-store-entitlements"))
-                .setExternal(MAC_APP_STORE_ENTITLEMENTS.fetchFrom(params))
+        createResource("Mac.entitlements", params)
+                .setCategory( I18N.getString("resource.mac-entitlements"))
                 .saveToFile(getConfig_Entitlements(params));
 
-        createResource(DEFAULT_INHERIT_ENTITLEMENTS, params)
+        createResource("Mac_Inherit.entitlements", params)
                 .setCategory(I18N.getString(
-                        "resource.mac-app-store-inherit-entitlements"))
-                .saveToFile(getConfig_Entitlements(params));
+                        "resource.mac-inherit-entitlements"))
+                .saveToFile(getConfig_Inherit_Entitlements(params));
     }
 
     ///////////////////////////////////////////////////////////////////////
     // Implement Bundler
     ///////////////////////////////////////////////////////////////////////
< prev index next >