Package org.openntf.domino.xots.builtin

Examples of org.openntf.domino.xots.builtin.XotsNsfScanner.addObserver()


    List<HttpService> services = env.getServices();
    xotsService_ = new XotsService(env);
    services.add(xotsService_);

    XotsNsfScanner scanner = new XotsNsfScanner("");
    scanner.addObserver(this);
    Thread t = new lotus.domino.NotesThread(scanner);
    t.start();
  }

  public synchronized static void stop() {
View Full Code Here


    return intimidator_;
  }

  public void scan(final String serverName) {
    XotsNsfScanner scanner = new XotsNsfScanner(serverName);
    scanner.addObserver(this);
    scanner.scan();
  }

  public void schedule(final Class<? extends Runnable> taskClass) {
    Schedule schedule = taskClass.getAnnotation(Schedule.class);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.