Examples: putAllInFolder method (ViewEntryCollection - Java)

Puts all the documents under the "Transportation" category in the "Transportation" folder.

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();
      View view = db.getView("By Category");
      view.setAutoUpdate(false);
      ViewEntryCollection vec =
      view.getAllEntriesByKey("Transportation", false);
      System.out.println("Number of entries found = " + 
      vec.getCount());
      System.out.println("Putting them in 
      \"Transportation\"");
      vec.putAllInFolder("Transportation");
    } catch(Exception e) {
      e.printStackTrace();
    }
  }
}