annotate src/jungle/test/bbs/BulletinBoard.java @ 38:d8ee57a1c2c6

add pom.xml and bbs
author one
date Mon, 08 Jul 2013 20:25:58 +0900
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
38
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
1 package jungle.test.bbs;
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
2
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
3 public interface BulletinBoard
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
4 {
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
5 public Iterable<String> getBoards();
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
6 public void createBoards(String _name,String _author,String _initMessage,String _editKey);
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
7 public void createBoardMessage(String _board,String _author,String _message,String _editKey);
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
8 public void editMessage(String _board,String _uuid,String _author,String _message,String _editKey);
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
9
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
10 public Iterable<BoardMessage> getMessages(String _boardName);
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
11 }