Hi Guys,
I am calling the following Web Service call (OKMPropertyGroup.getProperties) through Java, see below:
Thanks
I am calling the following Web Service call (OKMPropertyGroup.getProperties) through Java, see below:
Code: Select all
Can you tell me how to get the value out of the result returned. See below result:
List<FormElement> Dates = OKMPropertyGroup.getInstance().getProperties(token, path, "okg:test");Code: Select all
For example i get the name, label by doing the following:
{label=Expiry Date, name=okp:edms.date, value=20150108000000, data=, width=100px, height=25px, readonly=false, type=date, validators=[]}Code: Select all
However I cannot retrieve the value field, why isn't there .getValue field.for (int j = 0; j < Dates.size(); j++) {
Dates.get(i).getName().toString();
Dates.get(i).getLabel().toString();
}Thanks
