OKMPropertyGroup

From OpenKM Documentation
Revision as of 11:55, 21 October 2010 by Pavila (talk | contribs) (void addGroup(String token, String nodePath, String grpName))

Jump to: navigation, search

Methods related to Property Groups.

void addGroup(String token, String nodePath, String grpName)

Add a property group to a document.

Parameters

  • token The session authorization token.
  • nodePath The path that identifies an unique node.
  • grpName The group name previously registered in the system.

Returns

  • None.

Throws

  • NoSuchGroupException If there is no such registered group name.
  • LockException Can't modify a locked document.
  • PathNotFoundException If there is no document in this repository path.
  • AccessDeniedException If there is any security problem: you can't modify the document because of lack of permissions.
  • RepositoryException If there is any general repository problem.

Since

  • OpenKM 4.1

void removeGroup(String token, String nodePath, String grpName)

PropertyGroup[] getGroups(String token, String nodePath)

PropertyGroup[] getAllGroups(String token)

FormElement[] getProperties(String token, String nodePath, String grpName)

void setProperties(String token, String nodePath, String grpName, FormElement[] properties)

boolean hasGroup(String token, String nodePath, String grpName)