Uses of Interface
com.ibm.pim.catalog.item.Item

Packages that use Item
com.ibm.pim.attribute   
com.ibm.pim.catalog   
com.ibm.pim.catalog.item   
com.ibm.pim.collaboration   
com.ibm.pim.extensionpoints   
com.ibm.pim.hierarchy.category   
com.ibm.pim.search   
com.ibm.pim.selection   
com.ibm.pim.system   
com.ibm.pim.userdefinedlog   
 

Uses of Item in com.ibm.pim.attribute
 

Methods in com.ibm.pim.attribute that return Item
 Item AttributeInstance.getLinkedItem()
          If the attribute instance is a link attribute, this will return an item object only if the item with that primary key exists else it will return null.
 

Methods in com.ibm.pim.attribute with parameters of type Item
 void AttributeInstance.setValue(Item item)
          If this AttributeInstance is of type RELATIONSHIP, this method can set a related item as the value for this instance, specified by object reference
 

Uses of Item in com.ibm.pim.catalog
 

Methods in com.ibm.pim.catalog that return Item
 Item Catalog.createItem()
          Create a new item in the Catalog.
 Item Catalog.getItemByPrimaryKey(java.lang.String primaryKey)
          Retrieve an Item within the catalog using the Item's primary key as a String
 

Methods in com.ibm.pim.catalog that return types with arguments of type Item
 PIMCollection<Item> Catalog.getItems()
          Retrieve a collection of all of the Items within this Catalog
 java.util.List<Item> Catalog.getItemsByPrimaryKeys(java.util.List<java.lang.String> primaryKeys)
          Returns a collection of items from this catalog described by their primary keys
 PIMCollection<Item> Catalog.getItemsWithAttributeValue(java.lang.String attributeInstancePath, java.lang.Object value)
          Returns a collection of items from this catalog where the specified attribute instance has the specified value
 PIMCollection<Item> Catalog.getUnassignedItems(Hierarchy hierarchy)
          Returns a collection of items from this catalog belonging to a specific hierarchy which are unassigned to a category
 

Uses of Item in com.ibm.pim.catalog.item
 

Methods in com.ibm.pim.catalog.item that return types with arguments of type Item
 java.util.Collection<Item> Item.getLinkedItems()
          Retrieves all of the Items that are linked to this item's primary key.
 PIMCollection<Item> Item.getRelatedItems(Catalog filter, boolean toOrFrom)
          Retrieves all of the Items that this item is connected to via a relationship link on other items.
 

Uses of Item in com.ibm.pim.collaboration
 

Methods in com.ibm.pim.collaboration that return Item
 Item CollaborationItem.getSourceItem()
          Get the item in the source catalog corresponding to this checked out item.
 

Methods in com.ibm.pim.collaboration with parameters of type Item
 void ItemCollaborationArea.checkout(Item item)
          Checks out the specified item to the collaboration area.
 void ItemCollaborationArea.checkout(Item item, CollaborationStep checkoutStep)
          Checks out the specified item to the collaboration area into a specified step.
 void ItemCollaborationArea.checkout(Item item, CollaborationStep checkoutStep, java.lang.String comment)
          Checks out the specified item to the collaboration area into a specified step, with a comment.
 void ItemCollaborationArea.checkout(Item item, java.lang.String comment)
          Checks out the specified item to the collaboration area, with a comment.
 CheckoutStatus ItemCollaborationArea.checkoutAndWaitForStatus(Item item)
          Schedule the concurrent checkout of the specified items to a collaboration area.
 CheckoutStatus ItemCollaborationArea.checkoutAndWaitForStatus(Item item, CollaborationStep checkoutStep)
          Schedule the concurrent checkout of the specified item to a collaboration area into a specified step.
 CheckoutStatus ItemCollaborationArea.checkoutAndWaitForStatus(Item item, CollaborationStep checkoutStep, java.lang.String comment)
          Schedule the concurrent checkout of the specified items to a collaboration area into a specified step, with a comment.
 CheckoutStatus ItemCollaborationArea.checkoutAndWaitForStatus(Item item, java.lang.String comment)
          Schedule the concurrent checkout of the specified items to a collaboration area, with a comment.
 

Method parameters in com.ibm.pim.collaboration with type arguments of type Item
 void ItemCollaborationArea.checkout(java.util.Collection<Item> items)
          Checks out the specified items to the collaboration area.
 void ItemCollaborationArea.checkout(java.util.Collection<Item> items, CollaborationStep checkoutStep)
          Checks out the specified items to the collaboration area into the specified step.
 void ItemCollaborationArea.checkout(java.util.Collection<Item> items, CollaborationStep checkoutStep, java.lang.String comment)
          Checks out the specified items to the collaboration area into a specified step.
 void ItemCollaborationArea.checkout(java.util.Collection<Item> items, java.lang.String comment)
          Checks out the specified items to the collaboration area, with a comment.
 java.util.Map<java.lang.String,CheckoutStatus> ItemCollaborationArea.checkoutAndWaitForStatus(java.util.Collection<Item> items)
          Schedule the concurrent checkout of the specified items to the collaboration area.
 java.util.Map<java.lang.String,CheckoutStatus> ItemCollaborationArea.checkoutAndWaitForStatus(java.util.Collection<Item> items, CollaborationStep checkoutStep)
          Schedule the concurrent checkout of the specified items to the collaboration area into a specified step.
 java.util.Map<java.lang.String,CheckoutStatus> ItemCollaborationArea.checkoutAndWaitForStatus(java.util.Collection<Item> items, CollaborationStep checkoutStep, java.lang.String comment)
          Schedule the concurrent checkout of the specified items to a collaboration area into a specified step, with a comment.
 java.util.Map<java.lang.String,CheckoutStatus> ItemCollaborationArea.checkoutAndWaitForStatus(java.util.Collection<Item> items, java.lang.String comment)
          Schedule the concurrent checkout of the specified items to the collaboration area, with a comment.
 

Uses of Item in com.ibm.pim.extensionpoints
 

Methods in com.ibm.pim.extensionpoints that return Item
 Item PostItemSaveFunctionArguments.getItem()
          Obtains the current item for this invocation.
 Item ItemValidationRuleFunctionArguments.getItem()
          Obtains the item to be processed by this rule function.
 Item ItemStringEnumerationValueRuleFunctionArguments.getItem()
          Obtains the item to be processed by this rule function.
 Item ItemRunValueRuleFunctionArguments.getItem()
          Obtains the item to be processed by this rule function.
 Item ItemPrePostProcessingFunctionArguments.getItem()
          Obtains the item to be processed by this pre/post function.
 Item ItemNonPersistedAttributeRuleFunctionArguments.getItem()
          Obtains the item to be processed by this rule function.
 Item ItemMacroFunctionArguments.getItem()
          Obtains the item entry being processed for this EntrymacroFunction.
 Item EntryBuildFunctionArguments.getItem()
          Obtains the item entry being processed for this EntryBuildFunction.
 Item ItemDefaultValueRuleFunctionArguments.getItem()
          Obtains the item to be processed by this rule function.
 Item DataEntryFunctionArguments.getItem()
          Obtains item for this DataEntryFunction.
 Item CMSEntryBuildFunctionArguments.getItem()
          Obtains the item entry being processed for this CMSEntryBuildFunction.
 

Methods in com.ibm.pim.extensionpoints that return types with arguments of type Item
 PIMCollection<Item> ItemPreviewFunctionArguments.getItems()
          Obtains the items for this EntryPreviewFunction.
 PIMCollection<Item> CatalogToCatalogExportFunctionArguments.getItems()
          Obtains the items being processed for this CatalogExportFunction.
 PIMCollection<Item> CatalogPreviewFunctionArguments.getItems()
          Obtains the items being processed for this CatalogPreviewFunction.
 PIMCollection<Item> CatalogExportFunctionArguments.getItems()
          Obtains the items being processed for this CatalogExportFunction.
 

Methods in com.ibm.pim.extensionpoints with parameters of type Item
 java.lang.String CatalogExportFunctionArguments.CatalogExportDiffStatus.getStatusForItem(Item item)
          Obtains the 'diff status' for an item.
 

Uses of Item in com.ibm.pim.hierarchy.category
 

Methods in com.ibm.pim.hierarchy.category that return types with arguments of type Item
 PIMCollection<Item> Category.getItems(Catalog catalog)
          Returns the items associated with this category in the given catalog.
 PIMCollection<Item> Category.getItems(Catalog catalog, boolean ordered)
          Returns the items associated with this category in the given catalog.
 

Uses of Item in com.ibm.pim.search
 

Methods in com.ibm.pim.search that return Item
 Item SearchResultSet.getItem(int columnIndex)
          Get the value of a column in the current row as MDMPIM Item object.
 

Uses of Item in com.ibm.pim.selection
 

Methods in com.ibm.pim.selection that return types with arguments of type Item
 PIMCollection<Item> DynamicItemSelection.getItems()
          Fetches the items in the selection
 PIMCollection<Item> StaticItemSelection.getItems()
          Fetches the items in the selection
 

Methods in com.ibm.pim.selection with parameters of type Item
 void StaticItemSelection.addItem(Item item)
          Adds an item to the selection.
 void StaticItemSelection.removeItem(Item item)
          Removes the item from the selection if it is present in the selection.
 

Uses of Item in com.ibm.pim.system
 

Methods in com.ibm.pim.system with parameters of type Item
 java.lang.String UIHelper.getCollaborationEntryURL(CollaborationStep collaborationStep, Item item)
          Returns a String object representing the URL which can be used to display the item in the collaborationStep
 java.lang.String UIHelper.getSingleEditURL(Item item)
          Returns a String object representing the URL which can be used to render the item on the Single Edit screen.
 

Uses of Item in com.ibm.pim.userdefinedlog
 

Methods in com.ibm.pim.userdefinedlog that return Item
 Item UserDefinedLogEntry.getTargetItem()
          Fetches the item to which this UserDefinedLogEntry is associated.
 

Methods in com.ibm.pim.userdefinedlog with parameters of type Item
 UserDefinedLogEntry ItemUserDefinedLog.createLogEntry(Item item, Category category, java.lang.String entry)
          Creates a UserDefinedLogEntry for a given item which belongs to the specific category passed as argument.
 UserDefinedLogEntry ItemUserDefinedLog.createLogEntry(Item item, java.lang.String entry)
          Creates a UserDefinedLogEntry for a given item.The UserDefinedLogEntry object must be persisted by calling UserDefinedLog.save() on the containing UserDefinedLog
 void ItemUserDefinedLog.deleteEntries(Item item)
          Deletes the UserDefinedLogEntries corresponding to the item passed as the argument.
 void ItemUserDefinedLog.deleteEntries(Item item, Category category)
          Deletes the UserDefinedLogEntries corresponding to the item which belongs to the specific category passed as argument.
 PIMCollection<UserDefinedLogEntry> ItemUserDefinedLog.getLogEntries(Item item)
          Retrieves all UserDefinedLogEntry objects associated with a specific item
 PIMCollection<UserDefinedLogEntry> ItemUserDefinedLog.getLogEntries(Item item, Category category)
          Retrieves all UserDefinedLogEntry objects associated with the item which belongs to the specific category passed as argument.