javamanager/javainstaller/installer/javasrc/com/nokia/mj/impl/installer/midp2/install/steps/AuthenticateJar.java
branchRCL_3
changeset 83 26b2b12093af
parent 71 d5e927d5853b
equal deleted inserted replaced
77:7cee158cb8cd 83:26b2b12093af
    33         {
    33         {
    34             return;
    34             return;
    35         }
    35         }
    36 
    36 
    37         ball.log("Authenticating Jar...");
    37         ball.log("Authenticating Jar...");
    38         ball.iAuthenticationCredentials =
    38         AuthenticationModule.getInstance().authenticateJar
    39             AuthenticationModule.getInstance().authenticateJar
    39         (ball.iStorageHandler.getSession(),
    40             (ball.iSuite.getUid(),
    40          ball.iSuite.getUid(),
    41              (ball.iOldSuite != null? ball.iOldSuite.getUid(): null),
    41          (ball.iOldSuite != null? ball.iOldSuite.getUid(): null),
    42              ball.iJarFilename,
    42          ball.iJarFilename,
    43              (ball.iSuite.getContentInfo() == SuiteInfo.CONTENT_INFO_DRM? true: false));
    43          (ball.iSuite.getContentInfo() == SuiteInfo.CONTENT_INFO_DRM? true: false));
    44         ball.iJarAuthenticated = true;
    44         ball.iJarAuthenticated = true;
    45         // Unregister OCSP listener after Jar authentication.
    45         // Unregister OCSP listener after Jar authentication.
    46         AuthenticationModule.getInstance().unregisterOcspEventListener(
    46         AuthenticationModule.getInstance().unregisterOcspEventListener(
    47             ball.iSuite.getUid());
    47             ball.iSuite.getUid());
    48     }
    48     }