Class used to represent extended information in userdata in the WebService API.
Example code:
UserDataVOWS user = new UserDataVOWS (); user.setUsername ("tester"); user.setPassword ("foo123"); . . . List<ExtendedInformationWS> ei = new ArrayList<ExtendedInformationWS> (); ei.add (new ExtendedInformationWS ("A name", "A value)); ei.add (new ExtendedInformationWS ("Another name", "Another value")); . . user.setExtendedInformation (ei);
@author Anders Rundgren
@version $Id: ExtendedInformationWS.java 10288 2010-10-26 11:27:21Z anatom $