Creates a new Forum Group.
Parameters: name - the name of the ForumGroup. Parameters: description - the description of the ForumGroup. throws: UnauthorizedException - if not allowed to create a ForumGroup.
Deletes a forumGroup and all forums that belongs to it.
Parameters: forumGroup - the forumGroup to delete. throws: UnauthorizedException - if does not have ADMIN permissions.
Returns the name of the Category. Every category name in the system must be
unique. However, this restriction allows one to lookup a category by name
as well as by ID.
the name of the category.
Sets the creation date of the Category.
Parameters: creationDate - the date the Category was created. throws: UnauthorizedException - if does not have ADMIN permissions.
Sets the description of the Category.
Parameters: description - the description of the Category. throws: UnauthorizedException - if does not have ADMIN permissions.
Sets the date the Category was last modified.
Parameters: modifiedDate - the date the Category was modified. throws: UnauthorizedException - if does not have ADMIN permissions.
Sets the name of the Category. Every category name in the system must be
unique.
An exception will be thrown if a category with the same name as the new
name already exists.
Parameters: name - the name of the category. throws: UnauthorizedException - if does not have ADMIN permissions. throws: CategoryAlreadyExistsException - if a category with the specified namealready exists.
you can use this method to set the value of the category order. This value is used to sort the categories.
Parameters: param - throws: UnauthorizedException -