Hi Have a List of array, like
[[{x509Cert=x509cert.pem, accountNumber=652827, serviceProviderName=Sun, privateKey=pk, userName=0BS0Y72NBN, passWord=VuXYG4hZPS}], [{x509Cert=x509cert.pem, accountNumber=698000, serviceProviderName=Sun, privateKey=my.key, userName=0BS0Y72NAWWSS, passWord= VuXYG4hZPS}]]
This was stored in an object, i got it converted to List and have 2 object, now I need the key-pair to be stored and should be able to access whenever I access [0].accountNumber should give be 652827 and if I say Object[1].accountNumber should give me 698000
This is the way I'm doing it right now
List<Object> wordList = java.util.Arrays.asList((Object[]) o2);
for (Object o : wordList)
System.out.println(java.util.Arrays.deepToString((Object[]) o));
Any help!!