ucEditClose

Purpose

ucEditClose allows additional processing upon closing an edit screen.

Applies To

Edit Issue screen

Signature

public void ucEditClose(
      ProblemFormParam values, // contains values of form params
       SesameSession session)  // current session

Notes

Example

This method shows how upon the closure of an edit screen, the users role is reset to their default role.

public void ucEditClose (
         ProblemFormParam values,    // contains values of the form params
         SesameSession session) {    // current session.
    
        super.ucEditClose(values, session);
        resetRole(session);
    }