com.ibm.task.api
Interface BusinessCategoryManagerService
- public interface BusinessCategoryManagerService
Field Summary
Modifier and Type | Field and Description |
---|---|
|
COPYRIGHT
|
Method Summary
Modifier and Type | Method and Description |
---|---|
createBusinessCategory(BusinessCategoryDefinition businessCategoryDefinition)
Creates a business category from the specified business category definition.
|
|
createBusinessCategory(BusinessCategoryDefinition businessCategoryDefinition,BCID parentBCID)
Creates a business category from the specified business category definition
as a subcategory of the specified parent business category
using the object ID of the parent business category.
|
|
createBusinessCategory(BusinessCategoryDefinition businessCategoryDefinition,java.lang.String parentNameOrID)
Creates a business category from the specified business category definition
as a subcategory of the specified parent business category
using a string representation of the object ID of the parent business category or the business category name.
|
|
|
deleteBusinessCategory(BCID bcid,boolean recursive)
Deletes the specified business category using the business category ID.
|
|
deleteBusinessCategory(java.lang.String identifier,boolean recursive)
Deletes the specified business category
using a string representation of the business category ID or the business category name.
|
|
getAllWorkItemsForBusinessCategory(BCID bcid)
Returns all work item assignments associated to specified business category
using the business category ID.
|
|
getAllWorkItemsForBusinessCategory(java.lang.String identifier)
Returns all work item assignments associated to specified business category
using a string representation of the business category ID or the business category name.
|
|
getAvailableActionFlagsForBusinessCategories(BCID[] bcids)
Returns the actions that can be called for the specified business categories
by the logged-on user using business category IDs.
|
|
getAvailableActionFlagsForBusinessCategories(java.lang.String[] identifiers)
Returns the actions that can be called for the specified business categories
by the logged-on user
using string representations of the business category IDs or the business category names.
|
|
getAvailableActionsForBusinessCategory(BCID bcid)
Returns the actions that can be called by the logged-on user
for the specified business category
using the business category ID.
|
|
getAvailableActionsForBusinessCategory(java.lang.String identifier)
Returns the actions that can be called by the logged-on user
for the specified business category
using a string representation of the business category ID or the business category name.
|
getBusinessCategory(BCID bcid)
Retrieves the specified business category using the business category ID.
|
|
getBusinessCategory(java.lang.String identifier)
Retrieves the specified business category using a string
representation of the business category ID or the business category name.
|
|
getBusinessCategoryDefinition(BCID bcid)
Retrieves the definition of the specified business category using the business category ID.
|
|
getBusinessCategoryDefinition(java.lang.String identifier)
Retrieves the definition of the specified business category using a string
representation of the business category ID or the business category name.
|
|
|
getWorkItemsForBusinessCategory(BCID bcid)
Returns the work item assignments for the logged-on user and the
specified business category using the business category ID.
|
|
getWorkItemsForBusinessCategory(java.lang.String identifier)
Returns the work item assignments for the logged-on user and the
specified business category using a string representation of the business category ID or the business category name.
|
|
isBusinessCategorySystemAdministrator()
States whether the logged-on user is a system administrator for business categories.
|
|
setBusinessCategoryOnTasks(java.lang.String[] tkiids,java.lang.String identifier)
Sets the business category of the specified tasks
using string representations of the task instance or business category IDs or the business category name.
|
|
setBusinessCategoryOnTasks(TKIID[] tkiids,BCID bcid)
Sets the business category of the specified tasks
using the task instance and business category IDs.
|
|
setParentBusinessCategory(BCID bcid,BCID parentBCID)
Sets the parent of the specified business category
using business category IDs.
|
|
setParentBusinessCategory(java.lang.String identifier,java.lang.String parentIdentifier)
Sets the parent of the specified business category using string
representations of the business category IDs or the business category names.
|
|
setPriorityOfBusinessCategories(BCID[] bcids,java.lang.Integer priority)
Sets the priority of the specified business categories
using the business category IDs.
|
|
setPriorityOfBusinessCategories(java.lang.String[] identifier,java.lang.Integer priority)
Sets the priority of the specified business categories
using string representations of the business category IDs or the business category names.
|
|
updateBusinessCategory(BusinessCategoryDefinition businessCategoryDefinition)
Updates a business category with values from the specified business category definition.
|
Field Detail
COPYRIGHT
- static final java.lang.String COPYRIGHT
Method Detail
createBusinessCategory
- BCID createBusinessCategory(BusinessCategoryDefinition businessCategoryDefinition)
- throws ArchiveUnsupportedOperationException
- BusinessCategoryAlreadyExistsException
- BusinessCategoryNotEnabledException
- CannotCreateWorkItemException
- InvalidAssignmentReasonException
- InvalidLengthException
- InvalidPropertyValueException
- NotAuthorizedException
- ParameterNullException
- UnexpectedFailureException
- java.rmi.RemoteException
- javax.ejb.EJBException
businessCategoryDefinition
- The BusinessCategoryDefinition
from which a business category is to be created.
java.rmi.RemoteException
javax.ejb.EJBException
Change History
Release | Modification |
---|---|
7.0.0.3 | Throws an ArchiveUnsupportedOperationException when called in archive mode. |
createBusinessCategory
- BCID createBusinessCategory(BusinessCategoryDefinition businessCategoryDefinition,
- java.lang.String parentNameOrID)
- throws ArchiveUnsupportedOperationException
- BusinessCategoryAlreadyExistsException
- BusinessCategoryNotEnabledException
- CannotCreateWorkItemException
- IdWrongFormatException
- IdWrongTypeException
- InvalidAssignmentReasonException
- InvalidLengthException
- InvalidPropertyValueException
- NotAuthorizedException
- ObjectDoesNotExistException
- ParameterNullException
- UnexpectedFailureException
- java.rmi.RemoteException
- javax.ejb.EJBException
The caller must be a business category system administrator.
The action associated to this method is BusinessCategoryActions.CREATEBUSINESSCATEGORY
.
This method is not supported in archive mode.
businessCategoryDefinition
- The BusinessCategoryDefinition
from which a business category is to be created. parentNameOrID
- The string representation of the business category object ID or
the name of the business category that is to become
the parent of the newly created business category.
Note that business category names must conform to the XML NCName specification.
java.rmi.RemoteException
javax.ejb.EJBException
Change History
Release | Modification |
---|---|
7.0.0.3 | Throws an ArchiveUnsupportedOperationException when called in archive mode. |
createBusinessCategory
- BCID createBusinessCategory(BusinessCategoryDefinition businessCategoryDefinition,
- BCID parentBCID)
- throws ArchiveUnsupportedOperationException
- BusinessCategoryAlreadyExistsException
- BusinessCategoryNotEnabledException
- CannotCreateWorkItemException
- IdWrongFormatException
- InvalidAssignmentReasonException
- InvalidLengthException
- InvalidPropertyValueException
- NotAuthorizedException
- ObjectDoesNotExistException
- ParameterNullException
- UnexpectedFailureException
- java.rmi.RemoteException
- javax.ejb.EJBException
The caller must be a business category system administrator.
The action associated to this method is BusinessCategoryActions.CREATEBUSINESSCATEGORY
.
This method is not supported in archive mode.
businessCategoryDefinition
- The BusinessCategoryDefinition
from which a business category is to be created. parentBCID
- The object ID of the business category that is to become
the parent of the newly created business category.
java.rmi.RemoteException
javax.ejb.EJBException
Change History
Release | Modification |
---|---|
7.0.0.3 | Throws an ArchiveUnsupportedOperationException when called in archive mode. |
deleteBusinessCategory
- java.util.List deleteBusinessCategory( java.lang.String identifier,
- boolean recursive)
- throws BusinessCategoryHasChildrenException
- BusinessCategoryInUseException
- BusinessCategoryNotEnabledException
- IdWrongFormatException
- IdWrongTypeException
- NotAuthorizedException
- ObjectDoesNotExistException
- UnexpectedFailureException
- java.rmi.RemoteException
- javax.ejb.EJBException
If the business category is a parent of another business category, then its sub-business categories must also be deleted.
The caller must be the business category system administrator.
The action associated to this method is BusinessCategoryActions.DELETEBUSINESSCATEGORY
.
identifier
- A string representation of the business category ID or the business category name
that is used to identify the business category. recursive
- Specifies whether sub-business categories should be deleted together with the business category.
True states that all sub-business categories should be deleted.
False states that sub-business categories should not be deleted.
BusinessCategoryResult
.
The BusinessCategoryResult object states the object ID and name of the business category deleted. The TaskException property is not set, that is, is null. If sub-business categories are not deleted together with the specified business category, the list contains a single entry.
java.rmi.RemoteException
javax.ejb.EJBException
deleteBusinessCategory
- java.util.List deleteBusinessCategory( BCID bcid,
- boolean recursive)
- throws BusinessCategoryHasChildrenException
- BusinessCategoryInUseException
- BusinessCategoryNotEnabledException
- IdWrongFormatException
- NotAuthorizedException
- ObjectDoesNotExistException
- UnexpectedFailureException
- java.rmi.RemoteException
- javax.ejb.EJBException
If the business category is a parent of another business category, then its sub-business categories must also be deleted.
The caller must be the business category system administrator.
The action associated to this method is BusinessCategoryActions.DELETEBUSINESSCATEGORY
.
bcid
- The business category ID that is used to identify the business category. recursive
- Specifies whether sub-business categories should be deleted together with the business category.
True states that all sub-business categories should be deleted.
False states that sub-business categories should not be deleted.
BusinessCategoryResult
.
The BusinessCategoryResult object states the object ID and name of the business category deleted. The TaskException property is not set, that is, is null. If sub-business categories are not deleted together with the specified business category, the list contains a single entry.
java.rmi.RemoteException
javax.ejb.EJBException
getAllWorkItemsForBusinessCategory
- WorkItem[] getAllWorkItemsForBusinessCategory( java.lang.String identifier)
- throws BusinessCategoryNotEnabledException
- IdWrongFormatException
- IdWrongTypeException
- NotAuthorizedException
- ObjectDoesNotExistException
- WorkItemManagerException
- UnexpectedFailureException
- java.rmi.RemoteException
- javax.ejb.EJBException
The caller must have a work item for the specified business category or be a business category system administrator.
The action associated to this method is BusinessCategoryActions.GETROLEINFO
.
identifier
- The string representation of a business category ID or the business category name that is
used to identify the business category.
WorkItem
to view the work item properties.
java.rmi.RemoteException
javax.ejb.EJBException
getAllWorkItemsForBusinessCategory
- WorkItem[] getAllWorkItemsForBusinessCategory( BCID bcid)
- throws BusinessCategoryNotEnabledException
- IdWrongFormatException
- NotAuthorizedException
- ObjectDoesNotExistException
- WorkItemManagerException
- UnexpectedFailureException
- java.rmi.RemoteException
- javax.ejb.EJBException
The caller must have a work item for the specified business category or be a business category system administrator.
The action associated to this method is BusinessCategoryActions.GETROLEINFO
.
bcid
- The object ID of the business category that is used to identify
the business category.
WorkItem
to view the work item properties.
java.rmi.RemoteException
javax.ejb.EJBException
getAvailableActionFlagsForBusinessCategories
- boolean[][] getAvailableActionFlagsForBusinessCategories( java.lang.String[] identifiers)
- throws BusinessCategoryNotEnabledException
- IdWrongFormatException
- IdWrongTypeException
- ObjectDoesNotExistException
- UnexpectedFailureException
- java.rmi.RemoteException
- javax.ejb.EJBException
BusinessCategoryActions
for possible actions.
identifiers
- An array of string representations of business category IDs or business category names.
The business categories appear in the same order as specified.
Refer to BusinessCategoryActionIndex
for index constants that should
be used to access the columns of the two-dimensional array.
java.rmi.RemoteException
javax.ejb.EJBException
getAvailableActionFlagsForBusinessCategories
- boolean[][] getAvailableActionFlagsForBusinessCategories( BCID[] bcids)
- throws BusinessCategoryNotEnabledException
- IdWrongFormatException
- ObjectDoesNotExistException
- UnexpectedFailureException
- java.rmi.RemoteException
- javax.ejb.EJBException
BusinessCategoryActions
for possible actions.
bcids
- An array of business category IDs.
The work baskets appear in the same order as specified.
Refer to BusinessCategoryActionIndex
for index constants that should
be used to access the columns of the two-dimensional array.
java.rmi.RemoteException
javax.ejb.EJBException
getAvailableActionsForBusinessCategory
- int[] getAvailableActionsForBusinessCategory( java.lang.String identifier)
- throws BusinessCategoryNotEnabledException
- IdWrongFormatException
- IdWrongTypeException
- ObjectDoesNotExistException
- UnexpectedFailureException
- java.rmi.RemoteException
- javax.ejb.EJBException
BusinessCategoryActions
for possible actions.
identifier
- The string representation of the business category ID or the business category name.
java.rmi.RemoteException
javax.ejb.EJBException
getAvailableActionsForBusinessCategory
- int[] getAvailableActionsForBusinessCategory( BCID bcid)
- throws BusinessCategoryNotEnabledException
- IdWrongFormatException
- ObjectDoesNotExistException
- UnexpectedFailureException
- java.rmi.RemoteException
- javax.ejb.EJBException
BusinessCategoryActions
for possible actions.
bcid
- The object ID of the business category.
java.rmi.RemoteException
javax.ejb.EJBException
getBusinessCategory
- BusinessCategory getBusinessCategory( java.lang.String identifier)
- throws BusinessCategoryNotEnabledException
- IdWrongFormatException
- IdWrongTypeException
- NotAuthorizedException
- ObjectDoesNotExistException
- UnexpectedFailureException
- java.rmi.RemoteException
- javax.ejb.EJBException
The caller must have at least reader authority for the business category.
The action associated to this method is BusinessCategoryActions.GETBUSINESSCATEGORY
.
identifier
- A string representation of the business category ID or the business category name. This is used
to identify the business category to be retrieved.
BusinessCategory
to view the properties.
java.rmi.RemoteException
javax.ejb.EJBException
getBusinessCategory
- BusinessCategory getBusinessCategory( BCID bcid)
- throws BusinessCategoryNotEnabledException
- IdWrongFormatException
- NotAuthorizedException
- ObjectDoesNotExistException
- UnexpectedFailureException
- java.rmi.RemoteException
- javax.ejb.EJBException
The caller must have at least reader authority for the business category.
The action associated to this method is BusinessCategoryActions.GETBUSINESSCATEGORY
.
bcid
- The object ID of the business category to be retrieved.
BusinessCategory
to view the properties.
java.rmi.RemoteException
javax.ejb.EJBException
getBusinessCategoryDefinition
- BusinessCategoryDefinition getBusinessCategoryDefinition( java.lang.String identifier)
- throws BusinessCategoryNotEnabledException
- IdWrongFormatException
- IdWrongTypeException
- NotAuthorizedException
- ObjectDoesNotExistException
- UnexpectedFailureException
- java.rmi.RemoteException
- javax.ejb.EJBException
The caller must have at least reader authority for the business category.
The action associated to this method is BusinessCategoryActions.GETBUSINESSCATEGORYDEFINITION
.
identifier
- A string representation of the business category ID or the business category name. This is used
to identify the business category.
BusinessCategoryDefinition
to view the properties.
java.rmi.RemoteException
javax.ejb.EJBException
getBusinessCategoryDefinition
- BusinessCategoryDefinition getBusinessCategoryDefinition( BCID bcid)
- throws BusinessCategoryNotEnabledException
- IdWrongFormatException
- NotAuthorizedException
- ObjectDoesNotExistException
- UnexpectedFailureException
- java.rmi.RemoteException
- javax.ejb.EJBException
The caller must have at least reader authority for the business category.
The action associated to this method is BusinessCategoryActions.GETBUSINESSCATEGORYDEFINITION
.
bcid
- The object ID of the business category.
BusinessCategoryDefinition
to view the properties.
java.rmi.RemoteException
javax.ejb.EJBException
getWorkItemsForBusinessCategory
- WorkItem[] getWorkItemsForBusinessCategory( java.lang.String identifier)
- throws BusinessCategoryNotEnabledException
- IdWrongFormatException
- IdWrongTypeException
- NotAuthorizedException
- ObjectDoesNotExistException
- WorkItemManagerException
- UnexpectedFailureException
- java.rmi.RemoteException
- javax.ejb.EJBException
Note that a business category system administrator is treated like any other user, that is, does only see the personally owned work items.
The action associated to this method is BusinessCategoryActions.GETROLEINFO
.
identifier
- The string representation of a business category ID or the business category name. The string is
used to identify the business category.
WorkItem
to view the work item properties.
java.rmi.RemoteException
javax.ejb.EJBException
getWorkItemsForBusinessCategory
- WorkItem[] getWorkItemsForBusinessCategory( BCID bcid)
- throws BusinessCategoryNotEnabledException
- IdWrongFormatException
- NotAuthorizedException
- ObjectDoesNotExistException
- WorkItemManagerException
- UnexpectedFailureException
- java.rmi.RemoteException
- javax.ejb.EJBException
Note that a business category system administrator is treated like any other user, that is, does only see the personally owned work items.
The action associated to this method is BusinessCategoryActions.GETROLEINFO
.
bcid
- The object ID of the business category that is used to identify the business category.
WorkItem
to view the work item properties.
java.rmi.RemoteException
javax.ejb.EJBException
setBusinessCategoryOnTasks
- java.util.List setBusinessCategoryOnTasks( java.lang.String[] tkiids,
- java.lang.String identifier)
- throws ArchiveUnsupportedOperationException
- BusinessCategoryNotEnabledException
- BusinessCategoryDoesNotExistException
- IdWrongFormatException
- IdWrongTypeException
- UnexpectedFailureException
- java.rmi.RemoteException
- javax.ejb.EJBException
The action associated to this method is TaskActions.UPDATE
.
This method is not supported in archive mode.
tkiids
- An array of string representations of task instance IDs that are used
to identify the task instances. identifier
- A string representation of the business category or the business category name
to identify the business category.
TaskResult
.
If a single set operation fails because any of the following exceptions has been thrown, then the result object contains the respective exception. Otherwise, the TaskException property is null.
- com.ibm.task.api.ApplicationVetoException
- com.ibm.task.api.NotAuthorizedException
- com.ibm.task.api.TaskDoesNotExistException
- com.ibm.task.api.PropertyVetoException
- com.ibm.task.api.WrongKindException
- com.ibm.task.api.WrongStateException
java.rmi.RemoteException
javax.ejb.EJBException
Change History
Release | Modification |
---|---|
7.0.0.3 | Throws an ArchiveUnsupportedOperationException when called in archive mode. |
setBusinessCategoryOnTasks
- java.util.List setBusinessCategoryOnTasks( TKIID[] tkiids,
- BCID bcid)
- throws ArchiveUnsupportedOperationException
- BusinessCategoryDoesNotExistException
- BusinessCategoryNotEnabledException
- IdWrongFormatException
- UnexpectedFailureException
- java.rmi.RemoteException
- javax.ejb.EJBException
The action associated to this method is TaskActions.UPDATE
.
This method is not supported in archive mode.
tkiids
- An array of task instance IDs.
that are used to identify the task instances. bcid
- The object ID of the business category
to identify the business category.
TaskResult
.
If a single set operation fails because any of the following exceptions has been thrown, then the result object contains the respective exception. Otherwise, the TaskException property is null.
- com.ibm.task.api.ApplicationVetoException
- com.ibm.task.api.NotAuthorizedException
- com.ibm.task.api.TaskDoesNotExistException
- com.ibm.task.api.PropertyVetoException
- com.ibm.task.api.WrongKindException
- com.ibm.task.api.WrongStateException
java.rmi.RemoteException
javax.ejb.EJBException
Change History
Release | Modification |
---|---|
7.0.0.3 | Throws an ArchiveUnsupportedOperationException when called in archive mode. |
setParentBusinessCategory
- void setParentBusinessCategory( java.lang.String identifier,
- java.lang.String parentIdentifier)
- throws ArchiveUnsupportedOperationException
- BusinessCategoryNotEnabledException
- BusinessCategoryParentCircularException
- IdWrongFormatException
- IdWrongTypeException
- NotAuthorizedException
- ObjectDoesNotExistException
- UnexpectedFailureException
- java.rmi.RemoteException
- javax.ejb.EJBException
The caller must be the business category system administrator.
The action associated to this method is BusinessCategoryActions.UPDATE
.
This method is not supported in archive mode.
identifier
- A string representation of the business category ID or the business category name. This is used
to identify the business category whose parent is to be set. parentIdentifier
- A string representation of the business category ID or the business category name. This is used
to identify the business category who is to become the parent.
You can pass null to indicate that the business category specified by the identifier parameter
is a root category.
java.rmi.RemoteException
javax.ejb.EJBException
Change History
Release | Modification |
---|---|
7.0.0.3 | Throws an ArchiveUnsupportedOperationException when called in archive mode. |
setParentBusinessCategory
- void setParentBusinessCategory( BCID bcid,
- BCID parentBCID)
- throws ArchiveUnsupportedOperationException
- BusinessCategoryNotEnabledException
- BusinessCategoryParentCircularException
- IdWrongFormatException
- NotAuthorizedException
- ObjectDoesNotExistException
- UnexpectedFailureException
- java.rmi.RemoteException
- javax.ejb.EJBException
The caller must be the business category system administrator.
The action associated to this method is BusinessCategoryActions.UPDATE
.
This method is not supported in archive mode.
bcid
- The object ID of the business category whose parent is to be set. parentBCID
- The object ID of the business category who is to become the parent.
You can pass null to indicate that the business category specified by the bcid parameter
is a root category.
java.rmi.RemoteException
javax.ejb.EJBException
Change History
Release | Modification |
---|---|
7.0.0.3 | Throws an ArchiveUnsupportedOperationException when called in archive mode. |
setPriorityOfBusinessCategories
- java.util.List setPriorityOfBusinessCategories( java.lang.String[] identifier,
- java.lang.Integer priority)
- throws ArchiveUnsupportedOperationException
- BusinessCategoryNotEnabledException
- IdWrongFormatException
- IdWrongTypeException
- InvalidPropertyValueException
- UnexpectedFailureException
- java.rmi.RemoteException
- javax.ejb.EJBException
The action associated to this method is BusinessCategoryActions.UPDATE
.
This method is not supported in archive mode.
identifier
- An array of string representations of business category IDs or business category names
that are used to identify the business categories. priority
- The priority to be set.
BusinessCategoryResult
.
If a single set operation fails because any of the following exceptions has been thrown, then the result object contains the respective exception. Otherwise, the TaskException property is null.
- com.ibm.task.api.NotAuthorizedException
- com.ibm.task.api.ObjectDoesNotExistException
java.rmi.RemoteException
javax.ejb.EJBException
Change History
Release | Modification |
---|---|
7.0.0.3 | Throws an ArchiveUnsupportedOperationException when called in archive mode. |
setPriorityOfBusinessCategories
- java.util.List setPriorityOfBusinessCategories( BCID[] bcids,
- java.lang.Integer priority)
- throws ArchiveUnsupportedOperationException
- BusinessCategoryNotEnabledException
- IdWrongFormatException
- InvalidPropertyValueException
- UnexpectedFailureException
- java.rmi.RemoteException
- javax.ejb.EJBException
The action associated to this method is BusinessCategoryActions.UPDATE
.
This method is not supported in archive mode.
bcids
- An array of business category IDs
that are used to identify the business categories. priority
- The priority to be set.
BusinessCategoryResult
.
If a single set operation fails because any of the following exceptions has been thrown, then the result object contains the respective exception. Otherwise, the TaskException property is null.
- com.ibm.task.api.NotAuthorizedException
- com.ibm.task.api.ObjectDoesNotExistException
java.rmi.RemoteException
javax.ejb.EJBException
Change History
Release | Modification |
---|---|
7.0.0.3 | Throws an ArchiveUnsupportedOperationException when called in archive mode. |
updateBusinessCategory
- void updateBusinessCategory(BusinessCategoryDefinition businessCategoryDefinition)
- throws ArchiveUnsupportedOperationException
- BusinessCategoryNotEnabledException
- CannotCreateWorkItemException
- InvalidAssignmentReasonException
- InvalidLengthException
- InvalidPropertyValueException
- NotAuthorizedException
- ObjectDoesNotExistException
- ParameterNullException
- UnexpectedFailureException
- WorkItemManagerException
- java.rmi.RemoteException
- javax.ejb.EJBException
The caller must be a business category system administrator.
The action associated to this method is BusinessCategoryActions.UPDATE
.
This method is not supported in archive mode.
businessCategoryDefinition
- The BusinessCategoryDefinition
from which a business category is to be updated.
java.rmi.RemoteException
javax.ejb.EJBException
Change History
Release | Modification |
---|---|
7.0.0.3 | Throws an ArchiveUnsupportedOperationException when called in archive mode. |
isBusinessCategorySystemAdministrator
- boolean isBusinessCategorySystemAdministrator( )
- throws java.rmi.RemoteException
- javax.ejb.EJBException
In general, authorization is granted to persons explicitly when a business category is created or updated. Above that, special authority is granted to a person playing the role of a business category system administrator. A business category system administrator has all priviledges for business categories.
java.rmi.RemoteException
javax.ejb.EJBException
The caller must be a business category system administrator.
The action associated to this method is
BusinessCategoryActions.CREATEBUSINESSCATEGORY
.This method is not supported in archive mode.