/** * interface ForumCommInterface.java 1.1 5.1.97 Michael Shoffner * * Copyright (c) 1997 Michael Shoffner. All Rights Reserved. * * Permission to use, copy, modify, and distribute this software * for non-commercial purposes and without fee is hereby granted * provided that this copyright notice appears in all copies. * * http://prominence.com/ shoffner@prominence.com */ import java.util.*; import java.sql.*; interface ForumCommInterface { // Forum 1.0 interface Hashtable loadAllThreads () throws SQLException; Vector loadThreadArticles (String t) throws SQLException; boolean postArticle (String art, String t) throws SQLException; // Forum 1.1 additions Vector loadThreadSubjects (String t) throws SQLException; Vector loadSubjectArticles (String t, String s) throws SQLException; Vector loadUserThreadArticles (String t, String u) throws SQLException; }