1package vuln; 2 3/* 4 * This is just a placeholder class. Link implements this so it can be 5 * replaced after compilation with Map.Entry since a normal compiler will not 6 * allow creating a class that implements an interface through inheritance. 7 * 8 * See Sami Koivu's original blog post for details. 9 */ 10public interface Test { 11 12 public Object getValue() throws Exception; 13 14} 15 16