Hullo - The 16.2 CWS API reference seems to need updating in a few spots.
Specific example: the StringAttribute page ( https://knowledge.opentext.com/knowledge/llisapi.dll/fetch/2001/15080935/-15106263/15106294/15106295/17990637/67792619/javadoc/com/opentext/livelink/service/docman/StringAttribute.html ) shows a refernce to setValues(), however if I compile the WSDL I see the following in the generated java file:
/** * Gets the value of the values property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the values property. * * <p> * For example, to add a new item, do as follows: * <pre> * getValues().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link String } * * */ public List<String> getValues() { if (values == null) { values = new ArrayList<String>(); } return this.values; }... and no setValues() is created. Unless I'm really mis-reading stuff that's a big change in how I set / add attributes ...
I know I've hit a few other similar discrepancies today, but I never made note of them. Is it tough to re-gen these ?