1 16 17 package org.apache.commons.latka.http; 18 19 import java.util.LinkedList ; 20 import java.util.List ; 21 22 31 public class ParametersImpl implements Parameters { 32 33 37 protected List _list = new LinkedList (); 38 39 43 protected ParametersImpl() { 44 } 45 46 50 public void addParameter(String paramName, String paramValue) { 51 _list.add(new String [] { paramName, paramValue }); 52 } 53 54 59 public List getParameters() { 60 return _list; 61 } 62 } 63 | Popular Tags |