Uses of Class
com.unica.publicapi.plan.api.MultipleItemsFoundException

Packages that use MultipleItemsFoundException
com.unica.publicapi.plan.api   
 

Uses of MultipleItemsFoundException in com.unica.publicapi.plan.api
 

Methods in com.unica.publicapi.plan.api that throw MultipleItemsFoundException
 Handle IPlanAPI.findApprovalByAttribute(IExecutionContext context, java.lang.String ApprovalAttributeName, java.lang.Object[] ApprovalAttributeValues)
          Find the Approval object that matches the supplied attributes.
 Handle IPlanAPI.findAssetByAttribute(IExecutionContext context, Handle hAssetLibrary, java.lang.String attributeName, java.lang.Object attributeValue)
           
 Handle IPlanAPI.findAssetLibraryByAttribute(IExecutionContext context, java.lang.String attributeName, java.lang.Object attributeValue)
          Finds an asset library that matches the supplied attribute.
 Handle IPlanAPI.findMarketingObjectByAttribute(IExecutionContext context, java.lang.String type, java.lang.String moAttributeName, java.lang.Object[] moAttributeValues)
          Finds the marketing object that matches the supplied attribute.
 Handle IPlanAPI.findProjectByAttribute(IExecutionContext context, java.lang.String name, java.lang.Object[] values)
          Finds the project that matches the supplied attribute.
 Handle IPlanAPI.findProjectRequestByAttribute(IExecutionContext context, java.lang.String name, java.lang.Object[] values)
          Finds the project request that matches the supplied attribute.
 Handle IPlanAPI.findTeamByAttribute(IExecutionContext context, java.lang.String attributeName, java.lang.Object attributeValue)
           
 Handle IPlanAPI.findUserByAttribute(IExecutionContext context, java.lang.String attributeName, java.lang.Object[] attributeValues)
           
 Handle IPlanAPI.findWorkflowTaskByAttribute(IExecutionContext context, Handle hProject, java.lang.String taskAttributeName, java.lang.Object[] taskAttributeValues)
          Finds the workflow task that matches the supplied attribute.
 void IPlanAPI.transitionAssetStateByCode(IExecutionContext context, java.lang.String code, AssetStateEnum stateEnum, java.lang.String comments)
           
 void IPlanAPI.transitionProjectStateByCode(IExecutionContext context, java.lang.String code, ProjectStateEnum stateEnum)
          Deprecated.  
 void IPlanAPI.transitionWorkflowTaskStateByName(IExecutionContext context, java.lang.String projectCode, java.lang.String taskName, TaskStateEnum taskStateEnum)
          Deprecated. use @see Finds the workflow task that has the specified project code and task name and transitions its state to the new state.

Convenience API; identical to making the following API calls:

  1. findProjectByAttribute() using the code attribute name and the code parameter value
  2. findWorkflowTaskByAttribute() using the project handle above with a name attribute equal to the name parameter above
  3. updateAttributes() for the task returned above, using the state parameter as the uapStateEnum attribute value.