Package com.ibm.sbt.services.client.connections.forums

Examples of com.ibm.sbt.services.client.connections.forums.ForumService


    protected void deleteForum(Forum forum) {
        if (forum != null) {
            try {
              loginConnections();
                ForumService forumService = getForumService();
                // TODO should be deleteForum
                forumService.deleteForum(forum.getForumUuid());
            } catch (AuthenticationException pe) {
              if (pe.getCause() != null) {
                pe.getCause().printStackTrace();
              }
                Assert.fail("Error authenicating: " + pe.getMessage());
View Full Code Here


   
    protected void deleteForum(String forumId) {
        if (forumId != null) {
            try {
              loginConnections();
                ForumService forumService = getForumService();
                forumService.deleteForum(forumId);
            } catch (AuthenticationException pe) {
              if (pe.getCause() != null) {
                pe.getCause().printStackTrace();
              }
                Assert.fail("Error authenicating: " + pe.getMessage());
View Full Code Here

            }
        }
    }
   
  protected ForumTopic createForumTopic(Forum forum, ForumTopic topic) throws Exception {
    ForumService forumService = getForumService();
    return forumService.createForumTopic(topic, forum.getUid());
  }
View Full Code Here

TOP

Related Classes of com.ibm.sbt.services.client.connections.forums.ForumService

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.