ucRelationshipGroupDelete

Purpose

This method provides the list of items to be removed from a relationship group.

Applies To

Relationship Group Methods

Signature

public boolean ucRelationshipGroupDelete (
      SesameSession session,      	// Session object
      List removeIds,	                // list of problem ids to be removed
      Connection con)          	        // Connection object

Notes

This method is used for additional validation, and returns true on success. Do not use a COMMIT statement within this method. ExtraView will handle the COMMIT, based on the return value. If false is returned any transactions performed in this method will be rolled back. Returning false will also rollback the removal of items in the core software

Example

public boolean ucRelationshipGroupDelete(
                     SesameSession session,    // Session object
                     List removeIds,           // list of item ids to be removed
                     Connection con) {         // Connection object
	return true;
  }