Package org.openntf.domino.exceptions

Examples of org.openntf.domino.exceptions.UnimplementedException


    getNidList().removeAll(tlist);
  }

  @Incomplete
  public void FTSearch(final String query) {
    throw new UnimplementedException("FTSearch not implemented on DocumentList yet. Sorry.");
  }
View Full Code Here


    throw new UnimplementedException("FTSearch not implemented on DocumentList yet. Sorry.");
  }

  @Incomplete
  public void FTSearch(final String query, final int maxDocs) {
    throw new UnimplementedException("FTSearch not implemented on DocumentList yet. Sorry.");
  }
View Full Code Here

    sorted_ = sorted;
  }

  @Incomplete
  public void markAllRead() {
    throw new UnimplementedException("Why do you care about read marks? This isn't 1998.");
  }
View Full Code Here

    throw new UnimplementedException("Why do you care about read marks? This isn't 1998.");
  }

  @Incomplete
  public void markAllRead(final String userName) {
    throw new UnimplementedException("Why do you care about read marks? This isn't 1998.");
  }
View Full Code Here

    throw new UnimplementedException("Why do you care about read marks? This isn't 1998.");
  }

  @Incomplete
  public void markAllUnread() {
    throw new UnimplementedException("Why do you care about read marks? This isn't 1998.");
  }
View Full Code Here

    throw new UnimplementedException("Why do you care about read marks? This isn't 1998.");
  }

  @Incomplete
  public void markAllUnread(final String userName) {
    throw new UnimplementedException("Why do you care about read marks? This isn't 1998.");
  }
View Full Code Here

    // TODO Auto-generated method stub
    // NTF it's important to create a lotus collection of some kind for this operation
    // rather than iterating. Each call to putInFolder is a transaction history for the folder itself,
    // so it will be highly inefficient to create 1 transaction per document rather than the
    // whole collection
    throw new UnimplementedException("Not yet implemented, sorry");

  }
View Full Code Here

  }

  public void putAllInFolder(final String folderName, final boolean createOnFail) {
    // TODO Auto-generated method stub
    //NTF See above
    throw new UnimplementedException("Not yet implemented, sorry");

  }
View Full Code Here

  }

  public void removeAll(final boolean force) {
    // TODO Auto-generated method stub
    //NTF Also important to do this with a real DocumentCollection as this is one operation in the C API
    throw new UnimplementedException("Not yet implemented, sorry");

  }
View Full Code Here

  }

  public void removeAllFromFolder(final String folderName) {
    // TODO Auto-generated method stub
    // NTF See putAllInFolder(String)
    throw new UnimplementedException("Not yet implemented, sorry");

  }
View Full Code Here

TOP

Related Classes of org.openntf.domino.exceptions.UnimplementedException

Copyright © 2018 www.massapicom. 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.