Application Delivery Management
Application Modernization & Connectivity
CyberRes
IT Operations Management
Rule: Convert Entitlement DN from dot to slash format
Rule: AccountTracking - disregard if disabled or wrong object class
Purpose: This rule checks to see if this driver is configured for account tracking (Global Configuration Value drv.acctTrk.enable is equal to 'true'). If so, then it checks to see what object classes have been configured for tracking (Global Configuration Value drv.acctTrk.objectClasss). If the class name of the current operation is found in the list of configured object classes to track it sets local variable 'pass' equal to 'true'. If the driver is configured for account tracking, but the current object class is not in the list of object classes to track, then a break() aborts any further processing in this policy set.
Rule: AccountTracking - include desired attribute values in operation-data
Purpose: For the configured operations (add, modify, delete, rename, or move), an operation data element is added to the current operation, and a collection of operation properties are added to the operation data.
Rule: AccountTracking - StripAccountTrackingStatus Attribute
Purpose: As the name says, if operation attribute AccountTrackingAccountStatus is found in the current document, it will be stripped by this rule.
Rule: AccountTracking - disregard if disabled or wrong object class
Purpose: This rule first checks to see if Account Tracking is enabled. If not, it aborts with a break() immediately. If it is configured, then it checks to see if the current event's object class is one that is configured for Account Tracking (via Global Configuration Value drv.acctTrk.objectClass). Since this GCV is a list, this rule loops through the list and if the current event's object class is anywhere in the list, the other rules in the policy can be applied. Otherwise, if the current event's object class is not found in the list, a break() aborts further processing.
Rule: AccountTracking - on add-association sync the operation-properties to status operations
Purpose: This rule only operates on add-association event documents. It first copies the association value in to operation data as operation property AccountTracking-association, then it clones this in to the status document as operation data as well. Local variable 'eventId' is set to the value of the event-id on the current event, but this variable doesn't seem to be used anywhere else.
Rule: AccountTracking - Query for destination DN using Association
Purpose: For modify, delete, move, and rename events, this rule uses the association to get the associated object's DN and squirrels it away in operation data / operation property AccountTracking-ObjectDN.
Rule: AccountTracking - add interested properties to current doc for future use
Purpose: For add, modify, delete, rename, move, and status operation documents, this rule adds the AccountTracking-(Identifiers) operation property, similar to the rule on the Output Transform that does the same thing. In this case, the object's CN and Association values will be added as operation properties AccountTracking-CN and AccountTracking-association.
Rule: AccountTracking - Initialize status properties on published events
Purpose: For add, modify, delete, rename, and move events, this rule adds three operation properties.
Rule: Check target of add-association for group membership entitlements that need to be granted
Purpose: If the operation is an <add-association>, indicating a newly created GW mailbox, then this rule checks to see if it is supposed to verify Distribution List membership, and if any configured Distribution Lists are set up as Entitlements. If these conditions are met, then it generates events to add the mailbox (User) to the configured entitled Distribution Lists in GroupWise.
Rule: account tracking stuff
Purpose: If the operation is <remove-association>, then this rule checks to see how the driver has been configured for entitlement delete handling, and whether it can get the NGW: Account ID attribute from GroupWise. If so, it builds account tracking operation data AccountTracking-ObjectDN with the eDirectory object distinguished name, and accountAction (accountDeleteByEntitlementRevoke).
Rule: AccountTracking - disregard if disabled
Purpose: If this driver is not configured for Account Tracking via Global Configuration Value drv.acctTrk.enable, then this rule aborts further processing via a break().
Rule: AccountTracking - query DirXML-Accounts Attribute
Purpose: This rule checks for operation data / operation property AccountTracking-ObjectDN to be available. If it is, then nodeset variable AccountIdentifiers is built by querying eDirectory for the DirXML-Accounts attribute value using DN AccountTracking-ObjectDN.
Rule: AccountTracking - remove DirXML-Account values on delete operation
Purpose: If the operation being processed is a <delete> or a <remove-association>, or if the operation is a <status>, and if operation property AccountTracking-ObjectDN is available as well (for <status> it also needs operation data AccountTracking-Operation), then if this driver's GUID is in the AccountIdenfiers variable (from the rule above), it generates a <modify> operation to remove this driver's GUID from the DirXML-Accounts attribute on the current object.
Rule: AccountTracking - update DirXML-Accounts Attribute
Purpose: This policy loops through the values of the Global Configuration Value drv.acctTrk.identifiers, and updates the object's DirXML-Accounts attribute with the appropriate values, based on the configurations for Account Tracking. It then removes the operational properties used from the current document.
Rule: 00031200 - Account Create By Entitlement Grant
Purpose: If the event is a <status> and the operation property accountAction is "accountCreateByEntitlementGrant" (this comes from the rules in policy set sub-ctp-Audit-TagEvent), then local variable auditEventID is set to value 1200.
Rule: 00031201 - Account Delete By Entitlement Revoke
Purpose: If the event is a <status> and either operation data "entitlement-impl" has a state attribute of 0, or the operation property accountAction is "accountDeleteByEntitlementRevoke" (this comes from the rules in policy set sub-ctp-Audit-TagEvent), then local variable auditEventID is set to value 1201. After this rule, if accountDeleteByEntitlementRevoke was not in the operation data, it will be added.
Rule: 00031202 - Account Disable By Entitlement Revoke
Purpose: If the event is a <status> and the operation property accountAction is "accountDisableByEntitlementRevoke" (this comes from the rules in policy set sub-ctp-Audit-TagEvent), then local variable auditEventID is set to value 1202.
Rule: 00031203 - Account Enable By Entitlement Grant
Purpose: If the event is a <status> and the operation property accountAction is "accountEnableByEntitlementGrant" (this comes from the rules in policy set sub-ctp-Audit-TagEvent), then local variable auditEventID is set to value 1203.
Rule: Generate Audit Event
Purpose: If the event is a <status> and variable auditEventID is available from one of the previous rules in this policy set, then an Auditing event is crafted and sent to the auditing system.
Rule: Default Resource Owner
Purpose: This rules sets the operation's destination DN to a converted value of the source DN. Ordinarily, new eDirectory User objects would not be created from objects in the GroupWise database, but given this rule's name, I am assuming that this has something to do with creating a new object to be the owner of a Resource if the resource owner has been deleted. This preserves consistancy in the GW system.
Rule: AccountTracking - disregard policy if disabled
Purpose: If this driver is not configured for account tracking, abort further processing with a break().
Rule: AccountTracking - on add operation add DirXML-Accounts
Purpose: If an object is being added by the Publisher (unlikely except for possibly the default resource owner, as noted above in the Publisher Placement Rule), then the DirXML-Identity object class is added, and the driver's configured list of identifiers is used to add values to the DirXML-Accounts attribute on the destination object.