Advertisement
Guest User

performSSVValidation

a guest
Apr 24th, 2013
7,248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.55 KB | None | 0 0
  1. public static boolean performSSVValidation(Plugin2Manager paramPlugin2Manager)
  2.         throws ExitException {
  3.  
  4.     boolean bool = Boolean.valueOf(paramPlugin2Manager.
  5.                                     getParameter("__applet_ssv_validated")).
  6.                                                                       booleanValue();
  7.     if (bool)
  8.         return false;
  9.     LaunchDesc localLaunchDesc = null;
  10.  
  11.     AppInfo localAppInfo = null;
  12.  
  13.       [...]
  14.       // ... more code that calls com.sun.javaws.ui.SecureStaticVersioning to perform more checks    
  15.       [...]
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement