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

Examples of com.ibm.sbt.services.client.connections.forums.ForumService.deleteForum()


        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

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.