Examples: LockHolders property (View - Java)

This agent displays the lock holders for the view named "Main."

import lotus.domino.*;
import java.util.Vector;

public class JavaAgent extends AgentBase {

  public void NotesMain() {

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

      // (Your code goes here) 
      Database db = agentContext.getCurrentDatabase();
      View view = db.getView("Main");
      
      // Design locking must be enabled
      if (db.isDesignLockingEnabled()) {
        // Get and display lock holders
        Vector holders = view.getLockHolders();
        if (holders.size() == 0)
          System.out.println("No lock holders");
        else
          for (int i = 0; i < holders.size(); i++)
            System.out.println(holders.elementAt(i));
      }
      else
        System.out.println("Design locking not enabled");

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