Hi All,
In my webService am trying to fetch the attributes of category and set values to them.
Below is my code to fetch the attributes
AttributeGroup attrGrp = docManClient.getCategoryTemplate(categoryID);
AttributeGroupDefinition attriDef = docManClient.getAttributeGroupDefinition(attrGrp.getType(), attrGrp.getKey());
List<Attribute> attr = attriDef.getAttributes();
//Prints all the attributes
for(Attribute res : attr){
System.out.println("Attribute getDisplayName" + res.getDisplayName());
}
But i dont see any method to set value the attribute , please guide me .
THanks In advance