Uses of Class
com.securitycentric.metacoretex.lib.ProbeException

Packages that use ProbeException
com.securitycentric.metacoretex.interfaces   
com.securitycentric.metacoretex.lib   
 

Uses of ProbeException in com.securitycentric.metacoretex.interfaces
 

Methods in com.securitycentric.metacoretex.interfaces that return ProbeException
 ProbeException Probe.getException()
           
 

Methods in com.securitycentric.metacoretex.interfaces that throw ProbeException
 void Probe.probe()
          Carry out the probe.
 void Probe.probeSafe()
          Carry out the _safe_ version of the probe.
 int AuthProbe.test(java.lang.String passwd)
          The implementer of test is responsible for making sure that the resulting user/password success ends up in the report
 boolean AuthProbe.shouldRun()
          this is used as a runtime initializer on a per-probe basis.
 

Uses of ProbeException in com.securitycentric.metacoretex.lib
 

Fields in com.securitycentric.metacoretex.lib declared as ProbeException
 ProbeException AbstractProbe.pException
          an exception to throw if things go bad.
 

Methods in com.securitycentric.metacoretex.lib that return ProbeException
 ProbeException AbstractProbe.getException()
          Return a copy of a ProbeException which may have occured during the course of the probe() method.
 

Methods in com.securitycentric.metacoretex.lib with parameters of type ProbeException
 void Target.addProbeException(ProbeException pe)
           
 

Methods in com.securitycentric.metacoretex.lib that throw ProbeException
 void AbstractVersionProbe.probe()
          Carry out the probe.
 void AbstractProbe.probeSafe()
          This method represents the "safe" option for the probe.
 void AbstractCommandProbe.probe()
          This Abstract probe implements is't own probe() method, because command probes are just regular commands who'se output ends up in the report.
 void AbstractAuthProbe.probe()
          A method for implemeting AuthProbes which only require the test() method over-ride this method to implement your own
 int AbstractAuthProbe.test(java.lang.String pass)
          This method is a place-holder for those wishing to implement the probe() method directly and not use test() at all
 boolean AbstractAuthProbe.shouldRun()
          This method is a place holder for those wishing to implement the probe() method directly and won't need prepare()