Index: lams_build/lib/lams/lams-contentrepository.jar =================================================================== RCS file: /usr/local/cvsroot/lams_build/lib/lams/lams-contentrepository.jar,v diff -u -r1.22 -r1.23 Binary files differ Index: lams_tool_chat/src/java/org/lamsfoundation/lams/tool/chat/service/ChatService.java =================================================================== RCS file: /usr/local/cvsroot/lams_tool_chat/src/java/org/lamsfoundation/lams/tool/chat/service/ChatService.java,v diff -u -r1.11 -r1.12 --- lams_tool_chat/src/java/org/lamsfoundation/lams/tool/chat/service/ChatService.java 26 May 2006 04:27:42 -0000 1.11 +++ lams_tool_chat/src/java/org/lamsfoundation/lams/tool/chat/service/ChatService.java 29 May 2006 07:20:33 -0000 1.12 @@ -233,29 +233,24 @@ // TODO Auto-generated method stub } - /** * Export the XML fragment for the tool's content, along with any files needed * for the content. * @throws DataMissingException if no tool content matches the toolSessionId * @throws ToolException if any other error occurs */ - public String exportToolContent(Long toolContentId) throws DataMissingException, ToolException { - // TODO Auto-generated method stub - return null; + + public void exportToolContent(Long toolContentId, String toPath) throws DataMissingException, ToolException { } /** * Import the XML fragment for the tool's content, along with any files needed * for the content. * @throws ToolException if any other error occurs */ - public String importToolContent(Long toolContentId, String reference, String directory) throws ToolException { - // TODO Auto-generated method stub - return null; + public void importToolContent(Object toolContnetPOJO) throws ToolException { } - - + /* ********** IChatService Methods ************************************** */ public Long getDefaultContentIdBySignature(String toolSignature) { Long toolContentId = null; Index: lams_tool_vote/src/java/org/lamsfoundation/lams/tool/vote/service/VoteServicePOJO.java =================================================================== RCS file: /usr/local/cvsroot/lams_tool_vote/src/java/org/lamsfoundation/lams/tool/vote/service/VoteServicePOJO.java,v diff -u -r1.31 -r1.32 --- lams_tool_vote/src/java/org/lamsfoundation/lams/tool/vote/service/VoteServicePOJO.java 26 May 2006 23:06:45 -0000 1.31 +++ lams_tool_vote/src/java/org/lamsfoundation/lams/tool/vote/service/VoteServicePOJO.java 29 May 2006 07:21:08 -0000 1.32 @@ -1541,35 +1541,22 @@ } } - /** + /** * Export the XML fragment for the tool's content, along with any files needed * for the content. * @throws DataMissingException if no tool content matches the toolSessionId * @throws ToolException if any other error occurs */ - public String exportToolContent(Long toolContentId) throws DataMissingException, ToolException { - // TODO Auto-generated method stub - return null; + + public void exportToolContent(Long toolContentId, String toPath) throws DataMissingException, ToolException { } - - /** - * Export the XML fragment for the tool's content, along with any files needed - * for the content. - * @throws ToolException if any other error occurs - */ - public String exportToolContent(List toolContentId) throws ToolException { - // TODO Auto-generated method stub - return null; - } /** * Import the XML fragment for the tool's content, along with any files needed * for the content. * @throws ToolException if any other error occurs */ - public String importToolContent(Long toolContentId, String reference, String directory) throws ToolException { - // TODO Auto-generated method stub - return null; + public void importToolContent(Object toolContnetPOJO) throws ToolException { } /**