1 19 20 package com.sslexplorer.replacementproxy; 21 22 import java.util.regex.Matcher ; 23 import java.util.regex.Pattern ; 24 25 import com.sslexplorer.boot.Replacer; 26 27 28 public class BaseSearch implements Replacer { 29 private String base; 30 31 public String getBase() { 32 return base; 33 } 34 35 41 public String getReplacement(Pattern pattern, Matcher matcher, String replacementPattern) { 42 base = matcher.group(2); 43 return ""; 44 } 45 46 } | Popular Tags |