Package com.subgraph.vega.api.scanner

Examples of com.subgraph.vega.api.scanner.IInjectionModuleContext.debug()


   
    if(is404Response) {
      ps.setPageMissing();
    } else {
      if(response.getResponseCode() > 400)
        ctx.debug("Page is not accessible.  http code ("+ response.getResponseCode() + ")");
       
      final IPathState pps = ps.getParentState();
      if(pps == null || pps.getResponse() == null || !ps.matchesPathFingerprint(pps.getPathFingerprint())) {
        ctx.responseChecks(request, response);
      }
View Full Code Here


  @Override
  public void initialize(IPathState ps) {
    final IInjectionModuleContext ctx = ps.createModuleContext();
    // XXX check URI filter and parameter filter
    if(!ps.isParametric() || false) {
      ctx.debug("not parametric??");
      ps.setDone();
      return;
    }

    final String param = generateBogusParameter();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.