Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public void addCredsToScenarioWideDPL() throws Exception{
- ScenarioWideDPL dpl = new ScenarioWideDPL();
- dpl.setup("http://localhost:8080/AppvanceServices", "BasicStorage",true);
- HashMap<String,String> map = new HashMap();
- String[] keys= {"Username", "Password", "UserID"};
- for(int i= 0; i < keys.length; i++){
- map.put(keys[i], vals[i]);
- System.out.println("Storing #"+i+" : "+keys[i].toString()+" : "+vals[i].toString());
- }
- dpl.put(map);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement