例: unlock method (View - Java™)

次の例は、「Main」という名前のビューをロック解除しようとします。有効なユーザーがロック所有者の 1 人である場合、ロック解除は成功します。

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 view and unlock
        // Not unlocked if exception thrown
        View view = db.getView("Main");
        view.unlock();
        System.out.println("View unlocked");
      }
      else
        System.out.println("Design locking not enabled");

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

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