Uses of Class
com.ca.jcs.assoc.AssocModificationItem

Packages that use AssocModificationItem
com.ca.jcs Contains all classes making up the implementation of CA Java Connector Server ("Java CS" or "JCS"), which supports connectors which take LDAP traffic in at the top level and convert it into the native language of the managed system with which they communicate. 
com.ca.jcs.assoc Collection of classes/interfaces concerned with the representation and processing of associations between objects. 
com.ca.jcs.jdbc   
com.ca.jcs.ora   
 

Uses of AssocModificationItem in com.ca.jcs
 

Methods in com.ca.jcs that return AssocModificationItem
 AssocModificationItem[] ObjectClassMapping.splitAssocAttrs(Attributes attrs)
          Helper method for recording information about associative attributes during add(), where any found are removed from attrs and returned for easy processing (null is returned if no associative attributes are encountered).
static AssocModificationItem[] ObjectClassMapping.splitPurgeNull(AssocModificationItem[] items)
          Useful if connector want's to handle compound value associations in its core logic rather then passing on to normal association handling logic, in which case it can set entries to null as they are processed and then use this utility afterwards.
 

Methods in com.ca.jcs with parameters of type AssocModificationItem
static AssocModificationItem[] ObjectClassMapping.splitPurgeNull(AssocModificationItem[] items)
          Useful if connector want's to handle compound value associations in its core logic rather then passing on to normal association handling logic, in which case it can set entries to null as they are processed and then use this utility afterwards.
 

Uses of AssocModificationItem in com.ca.jcs.assoc
 

Fields in com.ca.jcs.assoc declared as AssocModificationItem
 AssocModificationItem[] SplitModificationItems.assocItems
           
 

Methods in com.ca.jcs.assoc with parameters of type AssocModificationItem
 void DefaultAssocDirectAttributeOpProcessor.doModifyAssocs(ObjectInfo objInfo, AssocModificationItem[] items, Object opContext)
          Break down provided association modification into DefaultAssocDirectAttributeOpProcessor.addAttrAssocs(com.ca.jcs.ObjectInfo, com.ca.jcs.assoc.Association, javax.naming.directory.Attribute, java.lang.Object) or DefaultAssocDirectAttributeOpProcessor.removeAttrAssocs(com.ca.jcs.ObjectInfo, com.ca.jcs.assoc.Association, javax.naming.directory.Attribute, java.lang.Object) calls as appropriate.
 void AssocAttributeOpProcessor.doModifyAssocs(ObjectInfo objInfo, AssocModificationItem[] items, Object opContext)
          Process a single 1:1 or 1:N associative relationship, handles associative processing required for OpProcessor.doAdd(com.ca.jcs.ObjectInfo, javax.naming.directory.Attributes) and OpProcessor.doModify(com.ca.jcs.ObjectInfo, javax.naming.directory.ModificationItem[]).
 

Uses of AssocModificationItem in com.ca.jcs.jdbc
 

Methods in com.ca.jcs.jdbc with parameters of type AssocModificationItem
 void JDBCAttributeStyleOpProcessor.doModifyAssocs(ObjectInfo objInfo, AssocModificationItem[] items, Object context)
          Process modifications to any associative relationships mentioned in items (each requires one or more separate SQL operations).
 

Uses of AssocModificationItem in com.ca.jcs.ora
 

Methods in com.ca.jcs.ora with parameters of type AssocModificationItem
 void ORAAttributeStyleOpProcessor.doModifyAssocs(ObjectInfo objInfo, AssocModificationItem[] items, Object context)
          Process a single 1:1 or 1:N associative relationship (each requires one or more separate SQL operations).
 



Created 2011-07-14 13:27 EST