Examples: SizeQuota property (Database - Java)

This agent changes the size quota of the current database, and prints the old and new size quotas.

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();
      String title = db.getTitle();
      int oldq = db.getSizeQuota();
      db.setSizeQuota(5000);
      System.out.println
      ("The size quota of database \"" + title +
      "\" is changed from " + oldq + " to 5000KB");
    } catch(Exception e) {
      e.printStackTrace();
    }
  }
}