No, i don't have it. Here's my client side RPC interface:


package vCarePortal.client;

import java.sql.Date;
import com.google.gwt.user.client.rpc.AsyncCallback;

public interface DiscussionBoardServiceAsync {

        public void getForums(int forumAccessLevel, AsyncCallback<Forum[]>
callback);

        public void getTopics(int forumID, int topicAccessLevel,
AsyncCallback<Topic[]> callback);

        public void getThreads(int topicID, int threadAccessLevel,
AsyncCallback<Thread[]> callback);

        public void getDiscussionPosts(int threadID, AsyncCallback<ThreadReply
[]> callback);

        public void getUser(String password, String userID,
AsyncCallback<Contributor> callback);

        public void countThreads(int topicID, AsyncCallback<Integer>
callback);

        public void countThreadReplies(int threadID, AsyncCallback<Integer>
callback);

        public void getLatestThreadReply (int threadID, AsyncCallback<String[]
> callback);

        public void getImageURL (String imageID, AsyncCallback<String>
callback);


        public void createForum(String forumName, String forumDescription,
String userID, int accessLevel, AsyncCallback<Void> callback);

        public void modifyForum (int forumID, String forumName, String
forumDescription, int accessLevel, AsyncCallback<Void> callback);

        public void deteleForum (int forumID, AsyncCallback<Void> callback);

        public void createTopic (String topicTitle, String topicDescription,
int topicAccessLevel, String creatorID, int forumID,
AsyncCallback<Void> callback);

        public void modifyTopic(int topicID, String topicName, String
topicDescription, int topicAccessLevel, AsyncCallback<Void> callback);

        public void deteleTopic (int topicID, AsyncCallback<Void> callback);

        public void addThread (String threadTitle, String threadDesc, int
threadAccessLevel, int threadCreatorID, int topicID,
AsyncCallback<Void> callback);

        public void modifyThread(int threadID, String threadTilte, String
threadDescription, int threadAcessLevel, AsyncCallback<Void>
callback);

        public void deleteThread(int threadID, AsyncCallback<Void> callback);

        public void addThreadReply(int threadID, int replierID, Date
replyTimestamp, String replyContent, AsyncCallback<Void> callback);

        public void modifyThreadReply(int threadReplyID, Date
modifyTimestamp, String replyContent, AsyncCallback<Void> callback);

        public void deleteThreadReply(int threadReplyID, AsyncCallback<Void>
callback);
}

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to