Difference between revisions of "OKMPropertyGroup"

From OpenKM Documentation
Jump to: navigation, search
(void addGroup(String token, String nodePath, String grpName))
(void removeGroup(String token, String nodePath, String grpName))
Line 25: Line 25:
  
 
== void removeGroup(String token, String nodePath, String grpName) ==
 
== void removeGroup(String token, String nodePath, String grpName) ==
 +
Removes a property group from 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.
 +
* ''RepositoryException'' If there is any general repository problem.
 +
 +
'''Since'''
 +
* OpenKM 4.1
  
 
== PropertyGroup[] getGroups(String token, String nodePath) ==
 
== PropertyGroup[] getGroups(String token, String nodePath) ==

Revision as of 11:57, 21 October 2010

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)

Removes a property group from 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.
  • RepositoryException If there is any general repository problem.

Since

  • OpenKM 4.1

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)