All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.owasp.jbrofuzz3.message.FuzzList Maven / Gradle / Ivy

package org.owasp.jbrofuzz3.message;

import java.util.Iterator;

import org.owasp.jbrofuzz.core.Fuzzer;

/**
 * 

A fuzz list is an ordered collection of * fuzzer.

* *

It has a type of iteration; it also has * a type, in terms of selecting how you * iterate through the list.

* * @author [email protected] * @version 2.5 * @since 2.5 * */ public class FuzzList implements Iterator { @Override public boolean hasNext() { // TODO Auto-generated method stub return false; } @Override public Fuzzer [] next() { // TODO Auto-generated method stub return null; } @Override public void remove() { // TODO Auto-generated method stub } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy