javamanager/javainstaller/installer/javasrc/com/nokia/mj/impl/installer/midp2/install/steps/AuthenticateJar.java
changeset 64 0ea12c182930
parent 21 2a9601315dfc
child 66 2455ef1f5bbc
equal deleted inserted replaced
57:59b3b4473dc8 64:0ea12c182930
    33         {
    33         {
    34             return;
    34             return;
    35         }
    35         }
    36 
    36 
    37         ball.log("Authenticating Jar...");
    37         ball.log("Authenticating Jar...");
    38         AuthenticationModule.getInstance().authenticateJar
    38         ball.iAuthenticationCredentials =
    39         (ball.iStorageHandler.getSession(),
    39             AuthenticationModule.getInstance().authenticateJar
    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     }