Index: lams_central/src/java/org/lamsfoundation/lams/authoring/service/IAuthoringService.java =================================================================== RCS file: /usr/local/cvsroot/lams_central/src/java/org/lamsfoundation/lams/authoring/service/IAuthoringService.java,v diff -u -r1.2 -r1.3 --- lams_central/src/java/org/lamsfoundation/lams/authoring/service/IAuthoringService.java 14 Sep 2005 06:51:45 -0000 1.2 +++ lams_central/src/java/org/lamsfoundation/lams/authoring/service/IAuthoringService.java 6 Oct 2005 00:53:55 -0000 1.3 @@ -185,4 +185,19 @@ * @throws IOException */ public String getThemes() throws IOException; + + /** + * Returns a string representing the new tool content id in + * WDDX format. + * + * Typically, when a user clicks on an activity to edit the tool contnet, + * it must have a tool content id passed to it. This method uses the + * ToolContentIDGenerator to generate the new tool content id and passes + * this value back to flash in WDDX format. + * + * @param toolID The toolID in which to generate the new tool content id for + * @return String The new tool content id in WDDX Format + */ + public String getToolContentID(Long toolID) throws IOException; + }