Hi devs,
I need to add some tags into a document via officeimporter. For this I need
to have above method implemented in DocumentAccessBridge.
The most generic method signature would be:
void setProperty(String documentName, String className, int objectNumber,
String propertyName, Object value) throws Exception;
But for my use case following would be enogh:
void setProperty(String documentName, String className, String propertyName,
Object value) throws Exception;
I'm currently +1 for second signature.
WDYT?
Note: this method has been implemented in issue:
http://jira.xwiki.org/jira/browse/XWIKI-2831 but this patch seems to have
lot more other (unnecessary) methods.
Thanks.
- Asiri