Package org.eclipse.ecf.bulletinboard

Examples of org.eclipse.ecf.bulletinboard.IllegalWriteException


  }

  public ID postReply(IThreadMessage message) throws IllegalWriteException,
      BBException {
    if ((mode & READ_ONLY) == READ_ONLY) {
      throw new IllegalWriteException(E_READ_ONLY);
    }
    ThreadMessage msg = (ThreadMessage) message;
    // FIXME assert msg.bb == bb;
    assert msg.getThread() == this;
    PostRequest request = new PostRequest(bb.getHttpClient(), bb.getURL(),
View Full Code Here

TOP

Related Classes of org.eclipse.ecf.bulletinboard.IllegalWriteException

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.