returnan iterator of all BoardSummary objects.
BoardSummary
If no messages exist for the specified board and month, return an empty iterator.returnan iterator of MessageSummary objects.throwsDataException if the boardID is illegal or a database error occurs.
MessageSummary
returna board summary for the given id.throwsDataException if boardID is illegal or a database error occurs.
returnthe singleton instance of this class. if (instance == null) { String adapterClassName = ForumConfig.getAdapterClassName(); try { Class adapterClass = Class.forName(adapterClassName); instance = (DataAdapter) adapterClass.newInstance(); } catch (Exception ex) { throw new DataException("Unable to instantiate " + adapterClassName); } } return instance;
if (instance == null) { String adapterClassName = ForumConfig.getAdapterClassName(); try { Class adapterClass = Class.forName(adapterClassName); instance = (DataAdapter) adapterClass.newInstance(); } catch (Exception ex) { throw new DataException("Unable to instantiate " + adapterClassName); } } return instance;
parammsgID must be a valid message identifier.returnthe message with the specified id.throwsDataException if msgID does not exist or a database error occurs.
Post a new message.returnthe newly created message.throwsDataException if a database error occurs, or if any parameter is illegal.
Add a reply to an existing message.throwsDataException if a database error occurs, or if any parameter is illegal.