Index: lams_tool_example/src/java/org/lamsfoundation/lams/tool/example/service/ExampleService.java =================================================================== RCS file: /usr/local/cvsroot/lams_tool_example/src/java/org/lamsfoundation/lams/tool/example/service/ExampleService.java,v diff -u -r1.8 -r1.9 --- lams_tool_example/src/java/org/lamsfoundation/lams/tool/example/service/ExampleService.java 26 May 2006 04:27:52 -0000 1.8 +++ lams_tool_example/src/java/org/lamsfoundation/lams/tool/example/service/ExampleService.java 23 Aug 2006 02:53:12 -0000 1.9 @@ -127,22 +127,19 @@ * @throws DataMissingException if no tool content matches the toolSessionId * @throws ToolException if any other error occurs */ - public String exportToolContent(Long toolContentId) throws DataMissingException, ToolException { + public void exportToolContent(Long toolContentId, String toPath) throws DataMissingException, 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 { + public void importToolContent(Long toolContentId, Integer newUserUid, String toolContentPath) throws ToolException { // TODO Auto-generated method stub - return null; } - /* ******************* Used by Spring to "inject" the linked objects **************************/ public IExampleAttachmentDAO getExampleAttachmentDAO() { return exampleAttachmentDAO; @@ -207,4 +204,5 @@ public void setAuditService(IAuditService auditService) { this.auditService = auditService; } + }