(IRequestInfo analyzeRequest)
| 634 | |
| 635 | |
| 636 | public LinkedHashMap<String, String> getPara(IRequestInfo analyzeRequest){ |
| 637 | List<IParameter> paras = analyzeRequest.getParameters(); |
| 638 | LinkedHashMap<String,String> paraMap = getParaFromTable();//�ӱ����л�ȡ�����Map��ֻҪ���¾ͺ� |
| 639 | for (IParameter para:paras){ |
| 640 | if (paraMap.containsKey(para.getName())){ |
| 641 | paraMap.put(para.getName(), para.getValue()); |
| 642 | } |
| 643 | } |
| 644 | return paraMap ; |
| 645 | } |
| 646 | |
| 647 | public LinkedHashMap<String, String> getParaFromTable(){ |
| 648 | LinkedHashMap<String, String> tableParas = new LinkedHashMap<String, String>(); |
nothing calls this directly
no test coverage detected