Examples: unlock method (Form - Java)

This example attempts to unlock the form named "Main." Unlocking is successful if the effective user is one of the lock holders.

import lotus.domino.*;

public class JavaAgent extends AgentBase {

  public void NotesMain() {

    try {
      Session session = getSession();
      AgentContext agentContext = session.getAgentContext();

      // (Your code goes here) 
      Database db = agentContext.getCurrentDatabase();
      
      // Design locking must be enabled
      if (db.isDesignLockingEnabled()) {
        // Get form and unlock
        // Not unlocked if exception thrown
        Form form = db.getForm("Main");
        form.unlock();
        System.out.println("Form unlocked");
      }
      else
        System.out.println("Design locking not enabled");

    } catch(NotesException e) {
        System.out.println(e.id + "Form not unlocked");

    } catch(Exception e) {
      e.printStackTrace();
    }
  }
}