com.codemagi.burp.parser.ParameterComparator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of burp-suite-utils Show documentation
Show all versions of burp-suite-utils Show documentation
The Burp Suite Utils project provides developers with APIs for building Burp Suite Extensions.
The newest version!
package com.codemagi.burp.parser;
import burp.impl.Parameter;
/**
* Sorts HTTP parameters by character code. Sorting is case sensitive, i.e. parameter 'UserName' comes BEFORE 'maxItems'.
*
* @author August Detlefsen [augustd at codemagi dot com]
*/
public class ParameterComparator implements java.util.Comparator {
@Override
public int compare(Parameter t1, Parameter t2) {
String key1 = (String)t1.getName();
String key2 = (String)t2.getName();
return key1.compareTo(key2);
}
}