< prev index next >

src/share/classes/sun/security/util/Debug.java

Print this page
rev 1518 : 7102686: Restructure timestamp code so that jars and modules can more easily share the same code
Reviewed-by: mchung


  63                 Help();
  64             }
  65         }
  66     }
  67 
  68     public static void Help()
  69     {
  70         System.err.println();
  71         System.err.println("all           turn on all debugging");
  72         System.err.println("access        print all checkPermission results");
  73         System.err.println("combiner      SubjectDomainCombiner debugging");
  74         System.err.println("gssloginconfig");
  75         System.err.println("configfile    JAAS ConfigFile loading");
  76         System.err.println("configparser  JAAS ConfigFile parsing");
  77         System.err.println("              GSS LoginConfigImpl debugging");
  78         System.err.println("jar           jar verification");
  79         System.err.println("logincontext  login context results");
  80         System.err.println("policy        loading and granting");
  81         System.err.println("provider      security provider debugging");
  82         System.err.println("scl           permissions SecureClassLoader assigns");

  83         System.err.println();
  84         System.err.println("The following can be used with access:");
  85         System.err.println();
  86         System.err.println("stack         include stack trace");
  87         System.err.println("domain        dump all domains in context");
  88         System.err.println("failure       before throwing exception, dump stack");
  89         System.err.println("              and domain that didn't have permission");
  90         System.err.println();
  91         System.err.println("The following can be used with stack and domain:");
  92         System.err.println();
  93         System.err.println("permission=<classname>");
  94         System.err.println("              only dump output if specified permission");
  95         System.err.println("              is being checked");
  96         System.err.println("codebase=<URL>");
  97         System.err.println("              only dump output if specified codebase");
  98         System.err.println("              is being checked");
  99 
 100         System.err.println();
 101         System.err.println("Note: Separate multiple options with a comma");
 102         System.exit(0);




  63                 Help();
  64             }
  65         }
  66     }
  67 
  68     public static void Help()
  69     {
  70         System.err.println();
  71         System.err.println("all           turn on all debugging");
  72         System.err.println("access        print all checkPermission results");
  73         System.err.println("combiner      SubjectDomainCombiner debugging");
  74         System.err.println("gssloginconfig");
  75         System.err.println("configfile    JAAS ConfigFile loading");
  76         System.err.println("configparser  JAAS ConfigFile parsing");
  77         System.err.println("              GSS LoginConfigImpl debugging");
  78         System.err.println("jar           jar verification");
  79         System.err.println("logincontext  login context results");
  80         System.err.println("policy        loading and granting");
  81         System.err.println("provider      security provider debugging");
  82         System.err.println("scl           permissions SecureClassLoader assigns");
  83         System.err.println("ts            timestamping");
  84         System.err.println();
  85         System.err.println("The following can be used with access:");
  86         System.err.println();
  87         System.err.println("stack         include stack trace");
  88         System.err.println("domain        dump all domains in context");
  89         System.err.println("failure       before throwing exception, dump stack");
  90         System.err.println("              and domain that didn't have permission");
  91         System.err.println();
  92         System.err.println("The following can be used with stack and domain:");
  93         System.err.println();
  94         System.err.println("permission=<classname>");
  95         System.err.println("              only dump output if specified permission");
  96         System.err.println("              is being checked");
  97         System.err.println("codebase=<URL>");
  98         System.err.println("              only dump output if specified codebase");
  99         System.err.println("              is being checked");
 100 
 101         System.err.println();
 102         System.err.println("Note: Separate multiple options with a comma");
 103         System.exit(0);


< prev index next >