diff --git a/src/main/java/org/olat/registration/restapi/RegistrationWebService.java b/src/main/java/org/olat/registration/restapi/RegistrationWebService.java new file mode 100644 index 0000000000000000000000000000000000000000..90145e48232ffc6c716b6c0153a87149335bdc28 --- /dev/null +++ b/src/main/java/org/olat/registration/restapi/RegistrationWebService.java @@ -0,0 +1,149 @@ +/** + * OLAT - Online Learning and Training<br> + * http://www.olat.org + * <p> + * Licensed under the Apache License, Version 2.0 (the "License"); <br> + * you may not use this file except in compliance with the License.<br> + * You may obtain a copy of the License at + * <p> + * http://www.apache.org/licenses/LICENSE-2.0 + * <p> + * Unless required by applicable law or agreed to in writing,<br> + * software distributed under the License is distributed on an "AS IS" BASIS, <br> + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. <br> + * See the License for the specific language governing permissions and <br> + * limitations under the License. + * <p> + * Copyright (c) frentix GmbH<br> + * http://www.frentix.com<br> + * <p> + */ +package org.olat.registration.restapi; + +import static org.olat.restapi.security.RestSecurityHelper.getLocale; + +import java.net.URI; +import java.text.DateFormat; +import java.util.Date; +import java.util.Locale; + +import javax.servlet.http.HttpServletRequest; +import javax.ws.rs.FormParam; +import javax.ws.rs.POST; +import javax.ws.rs.PUT; +import javax.ws.rs.Path; +import javax.ws.rs.QueryParam; +import javax.ws.rs.core.Context; +import javax.ws.rs.core.Response; +import javax.ws.rs.core.Response.ResponseBuilder; +import javax.ws.rs.core.Response.Status; +import javax.ws.rs.core.UriBuilder; + +import org.olat.core.CoreSpringFactory; +import org.olat.core.gui.translator.Translator; +import org.olat.core.helpers.Settings; +import org.olat.core.logging.OLog; +import org.olat.core.logging.Tracing; +import org.olat.core.util.Util; +import org.olat.core.util.i18n.I18nManager; +import org.olat.core.util.mail.MailerResult; +import org.olat.core.util.mail.manager.MailManager; +import org.olat.registration.RegistrationController; +import org.olat.registration.RegistrationManager; +import org.olat.registration.RegistrationModule; +import org.olat.registration.TemporaryKey; +import org.olat.user.UserManager; + + +/** + * + * Description:<br> + * Web service to trigger the registration process + * + * <P> + * Initial Date: 14 juil. 2011 <br> + * + * @author srosse, stephane.rosse@frentix.com, http://www.frentix.com + */ +@Path("registration") +public class RegistrationWebService { + + private OLog log = Tracing.createLoggerFor(RegistrationWebService.class); + + private static final String SEPARATOR = "____________________________________________________________________\n"; + + /** + * Register with the specified email + * @response.representation.200.doc Registration successful + * @response.representation.304.doc Already registered, HTTP-Header location set to redirect + * @param email The email address + * @param request The HTTP Request + * @return + */ + @POST + public Response registerPost(@FormParam("email") String email, @Context HttpServletRequest request) { + return register(email, request); + } + + /** + * Register with the specified email + * @response.representation.200.doc Registration successful + * @response.representation.304.doc Already registered, HTTP-Header location set to redirect + * @param email The email address + * @param request The HTTP Request + * @return + */ + @PUT + public Response register(@QueryParam("email") String email, @Context HttpServletRequest request) { + if (!CoreSpringFactory.getImpl(RegistrationModule.class).isSelfRegistrationEnabled()) { + return Response.serverError().status(Status.NOT_FOUND).build(); + } + + ResponseBuilder response; + Locale locale = getLocale(request); + Translator translator = getTranslator(locale); + + MailManager mailM = MailManager.getInstance(); + UserManager userManager = UserManager.getInstance(); + RegistrationManager rm = RegistrationManager.getInstance(); + + boolean foundUser = userManager.userExist(email); + // get remote address + + String serverpath = Settings.getServerContextPathURI(); + if (foundUser) { + //redirect + URI redirectUri = UriBuilder.fromUri(Settings.getServerContextPathURI()).build(); + response = Response.ok().status(Status.NOT_MODIFIED).location(redirectUri); + } else { + String ip = request.getRemoteAddr(); + TemporaryKey tk = rm.loadTemporaryKeyByEmail(email); + if (tk == null) { + tk = rm.createTemporaryKeyByEmail(email, ip, RegistrationManager.REGISTRATION); + } + String today = DateFormat.getDateInstance(DateFormat.LONG, locale).format(new Date()); + String body = translator.translate("reg.body", + new String[] { serverpath, tk.getRegistrationKey(), I18nManager.getInstance().getLocaleKey(locale) }) + + SEPARATOR + + translator.translate("reg.wherefrom", new String [] { serverpath, today, ip }); + try { + MailerResult result = mailM.sendExternMessage(null, null, null, email, null, null, null, translator.translate("reg.subject"), body, null, null); + if (MailerResult.OK == result.getReturnCode()) { + response = Response.ok(); + } else { + response = Response.serverError().status(Status.INTERNAL_SERVER_ERROR); + } + } catch (Exception e) { + response = Response.serverError().status(Status.INTERNAL_SERVER_ERROR); + log.error("", e); + } + } + + return response.build(); + } + + private Translator getTranslator(Locale locale) { + return Util.createPackageTranslator(RegistrationController.class, locale); + } + +} diff --git a/src/main/java/org/olat/restapi/_spring/restApiContext.xml b/src/main/java/org/olat/restapi/_spring/restApiContext.xml index 838144caad621a6cac4c3cba3e62038e2d59a72a..9e10d9beb83dc84dad58cbf71982237837d55c00 100644 --- a/src/main/java/org/olat/restapi/_spring/restApiContext.xml +++ b/src/main/java/org/olat/restapi/_spring/restApiContext.xml @@ -29,7 +29,7 @@ <value>org.olat.user.restapi.ContactsWebService</value> <value>org.olat.user.restapi.UserAuthenticationWebService</value> <value>org.olat.restapi.group.LearningGroupWebService</value> - <value>org.olat.restapi.user.UserFoldersWebService</value> + <value>org.olat.user.restapi.UserFoldersWebService</value> <value>org.olat.restapi.repository.RepositoryEntriesResource</value> <value>org.olat.restapi.repository.course.CourseWebService</value> <value>org.olat.restapi.repository.course.CoursesWebService</value> @@ -46,8 +46,9 @@ <value>org.olat.modules.fo.restapi.MyForumsWebService</value> <value>org.olat.catalog.restapi.CatalogWebService</value> <value>org.olat.notifications.restapi.NotificationsWebService</value> + <value>org.olat.registration.restapi.RegistrationWebService</value> <value>org.olat.commons.calendar.restapi.CalendarWebService</value> - <value>org.olat.restapi.log.LogWebService</value> + <value>org.olat.restapi.system.LogWebService</value> <value>org.olat.restapi.system.SystemWebService</value> </list> </property> diff --git a/src/main/java/org/olat/restapi/api/_content/application.html b/src/main/java/org/olat/restapi/api/_content/application.html index 44dd5fa9ed7d36521548f4cd6339f522f62fd71a..cb242bb0091dd8e210ca8b9b2f8aef3b30f0d4c8 100644 --- a/src/main/java/org/olat/restapi/api/_content/application.html +++ b/src/main/java/org/olat/restapi/api/_content/application.html @@ -164,1388 +164,1409 @@ </p> <ul> <li><a href="#resources">Resources</a><ul> - <li><a href="#d2e2">http://www.example.com/auth</a><ul> - <li><a href="#d2e5">http://www.example.com/auth/version</a></li> - <li><a href="#d2e20">http://www.example.com/auth/{username}</a></li> - </ul> - </li> - <li><a href="#d2e48">http://www.example.com/repo/entries</a><ul> - <li><a href="#d2e116">http://www.example.com/repo/entries/version</a></li> - <li><a href="#d2e122">http://www.example.com/repo/entries/search</a></li> - <li><a href="#d2e153">http://www.example.com/repo/entries/{repoEntryKey}</a><ul> - <li><a href="#d2e210">http://www.example.com/repo/entries/{repoEntryKey}/file</a></li> + <li><a href="#d2e2">http://www.example.com/users/{identityKey}/folders</a><ul> + <li><a href="#d2e25">http://www.example.com/users/{identityKey}/folders/personal</a><ul> + <li><a href="#d2e68">http://www.example.com/users/{identityKey}/folders/personal/{path:.*}</a></li> + <li><a href="#d2e122">http://www.example.com/users/{identityKey}/folders/personal/version</a></li> + </ul> + </li> + <li><a href="#d2e126">http://www.example.com/users/{identityKey}/folders/course/{courseKey}/{courseNodeId}</a><ul> + <li><a href="#d2e170">http://www.example.com/users/{identityKey}/folders/course/{courseKey}/{courseNodeId}/{path:.*}</a></li> + <li><a href="#d2e224">http://www.example.com/users/{identityKey}/folders/course/{courseKey}/{courseNodeId}/version</a></li> + </ul> + </li> + <li><a href="#d2e228">http://www.example.com/users/{identityKey}/folders/group/{groupKey}</a><ul> + <li><a href="#d2e271">http://www.example.com/users/{identityKey}/folders/group/{groupKey}/{path:.*}</a></li> + <li><a href="#d2e325">http://www.example.com/users/{identityKey}/folders/group/{groupKey}/version</a></li> </ul> </li> </ul> </li> - <li><a href="#d2e238">http://www.example.com/repo/courses/{courseId}/elements</a><ul> - <li><a href="#d2e241">http://www.example.com/repo/courses/{courseId}/elements/version</a></li> - <li><a href="#d2e256">http://www.example.com/repo/courses/{courseId}/elements/{nodeId}</a></li> - <li><a href="#d2e283">http://www.example.com/repo/courses/{courseId}/elements/structure/{nodeId}</a></li> - <li><a href="#d2e361">http://www.example.com/repo/courses/{courseId}/elements/structure</a></li> - <li><a href="#d2e424">http://www.example.com/repo/courses/{courseId}/elements/singlepage/{nodeId}</a></li> - <li><a href="#d2e456">http://www.example.com/repo/courses/{courseId}/elements/singlepage</a></li> - <li><a href="#d2e651">http://www.example.com/repo/courses/{courseId}/elements/task/{nodeId}</a></li> - <li><a href="#d2e701">http://www.example.com/repo/courses/{courseId}/elements/task</a></li> - <li><a href="#d2e802">http://www.example.com/repo/courses/{courseId}/elements/test/{nodeId}</a></li> - <li><a href="#d2e833">http://www.example.com/repo/courses/{courseId}/elements/test</a></li> - <li><a href="#d2e929">http://www.example.com/repo/courses/{courseId}/elements/assessment/{nodeId}</a></li> - <li><a href="#d2e973">http://www.example.com/repo/courses/{courseId}/elements/assessment</a></li> - <li><a href="#d2e1062">http://www.example.com/repo/courses/{courseId}/elements/wiki/{nodeId}</a></li> - <li><a href="#d2e1109">http://www.example.com/repo/courses/{courseId}/elements/wiki</a></li> - <li><a href="#d2e1169">http://www.example.com/repo/courses/{courseId}/elements/blog/{nodeId}</a></li> - <li><a href="#d2e1216">http://www.example.com/repo/courses/{courseId}/elements/blog</a></li> - <li><a href="#d2e1310">http://www.example.com/repo/courses/{courseId}/elements/survey/{nodeId}</a></li> - <li><a href="#d2e1357">http://www.example.com/repo/courses/{courseId}/elements/survey</a></li> - <li><a href="#d2e1429">http://www.example.com/repo/courses/{courseId}/elements/externalpage/{nodeId}</a></li> - <li><a href="#d2e1476">http://www.example.com/repo/courses/{courseId}/elements/externalpage</a></li> - <li><a href="#d2e1573">http://www.example.com/repo/courses/{courseId}/elements/task/{nodeId}/file</a></li> - <li><a href="#d2e1629">http://www.example.com/repo/courses/{courseId}/elements/task/{nodeId}/configuration</a></li> - <li><a href="#d2e1760">http://www.example.com/repo/courses/{courseId}/elements/survey/{nodeId}/configuration</a></li> - <li><a href="#d2e1851">http://www.example.com/repo/courses/{courseId}/elements/test/{nodeId}/configuration</a></li> + <li><a href="#d2e329">http://www.example.com/repo/courses/{courseId}/elements/contact</a></li> + <li><a href="#d2e372">http://www.example.com/groups</a><ul> + <li><a href="#d2e412">http://www.example.com/groups/version</a></li> + <li><a href="#d2e427">http://www.example.com/groups/{groupKey}</a></li> + <li><a href="#d2e481">http://www.example.com/groups/{groupKey}/configuration</a></li> + <li><a href="#d2e488">http://www.example.com/groups/{groupKey}/infos</a></li> + <li><a href="#d2e509">http://www.example.com/groups/{groupKey}/owners</a></li> + <li><a href="#d2e530">http://www.example.com/groups/{groupKey}/participants</a></li> + <li><a href="#d2e551">http://www.example.com/groups/{groupKey}/owners/{identityKey}</a></li> + <li><a href="#d2e584">http://www.example.com/groups/{groupKey}/owners/{identityKey}/new</a></li> + <li><a href="#d2e605">http://www.example.com/groups/{groupKey}/owners/{identityKey}/delete</a></li> + <li><a href="#d2e625">http://www.example.com/groups/{groupKey}/participants/{identityKey}</a></li> + <li><a href="#d2e658">http://www.example.com/groups/{groupKey}/participants/{identityKey}/new</a></li> + <li><a href="#d2e678">http://www.example.com/groups/{groupKey}/participants/{identityKey}/delete</a></li> + <li><a href="#d2e698">http://www.example.com/groups/{groupKey}/forum</a><ul> + <li><a href="#d2e724">http://www.example.com/groups/{groupKey}/forum/threads</a></li> + <li><a href="#d2e809">http://www.example.com/groups/{groupKey}/forum/posts/{threadKey}</a></li> + <li><a href="#d2e842">http://www.example.com/groups/{groupKey}/forum/posts/{messageKey}</a></li> + <li><a href="#d2e930">http://www.example.com/groups/{groupKey}/forum/posts/{messageKey}/attachments</a></li> + <li><a href="#d2e983">http://www.example.com/groups/{groupKey}/forum/posts/{messageKey}/attachments/{filename}</a></li> + </ul> + </li> + <li><a href="#d2e1000">http://www.example.com/groups/{groupKey}/folder</a><ul> + <li><a href="#d2e1043">http://www.example.com/groups/{groupKey}/folder/{path:.*}</a></li> + <li><a href="#d2e1097">http://www.example.com/groups/{groupKey}/folder/version</a></li> + </ul> + </li> + <li><a href="#d2e1101">http://www.example.com/groups/{groupKey}/wiki</a></li> </ul> </li> - <li><a href="#d2e1964">http://www.example.com/groups</a><ul> - <li><a href="#d2e2004">http://www.example.com/groups/version</a></li> - <li><a href="#d2e2019">http://www.example.com/groups/{groupKey}</a></li> - <li><a href="#d2e2073">http://www.example.com/groups/{groupKey}/infos</a></li> - <li><a href="#d2e2094">http://www.example.com/groups/{groupKey}/owners</a></li> - <li><a href="#d2e2115">http://www.example.com/groups/{groupKey}/participants</a></li> - <li><a href="#d2e2136">http://www.example.com/groups/{groupKey}/owners/{identityKey}</a></li> - <li><a href="#d2e2169">http://www.example.com/groups/{groupKey}/owners/{identityKey}/new</a></li> - <li><a href="#d2e2189">http://www.example.com/groups/{groupKey}/owners/{identityKey}/delete</a></li> - <li><a href="#d2e2210">http://www.example.com/groups/{groupKey}/participants/{identityKey}</a></li> - <li><a href="#d2e2243">http://www.example.com/groups/{groupKey}/participants/{identityKey}/new</a></li> - <li><a href="#d2e2263">http://www.example.com/groups/{groupKey}/participants/{identityKey}/delete</a></li> - <li><a href="#d2e2283">http://www.example.com/groups/{groupKey}/forum</a><ul> - <li><a href="#d2e2309">http://www.example.com/groups/{groupKey}/forum/threads</a></li> - <li><a href="#d2e2394">http://www.example.com/groups/{groupKey}/forum/posts/{threadKey}</a></li> - <li><a href="#d2e2427">http://www.example.com/groups/{groupKey}/forum/posts/{messageKey}</a></li> - <li><a href="#d2e2515">http://www.example.com/groups/{groupKey}/forum/posts/{messageKey}/attachments</a></li> - <li><a href="#d2e2568">http://www.example.com/groups/{groupKey}/forum/posts/{messageKey}/attachments/{filename}</a></li> + <li><a href="#d2e1109">http://www.example.com/repo/courses/{courseId}/elements/folder</a><ul> + <li><a href="#d2e1142">http://www.example.com/repo/courses/{courseId}/elements/folder/{nodeId}</a></li> + <li><a href="#d2e1161">http://www.example.com/repo/courses/{courseId}/elements/folder/{nodeId}/files</a><ul> + <li><a href="#d2e1205">http://www.example.com/repo/courses/{courseId}/elements/folder/{nodeId}/files/{path:.*}</a></li> + <li><a href="#d2e1259">http://www.example.com/repo/courses/{courseId}/elements/folder/{nodeId}/files/version</a></li> </ul> </li> - <li><a href="#d2e2585">http://www.example.com/groups/{groupKey}/folder</a><ul> - <li><a href="#d2e2628">http://www.example.com/groups/{groupKey}/folder/{path:.*}</a></li> - <li><a href="#d2e2682">http://www.example.com/groups/{groupKey}/folder/version</a></li> + </ul> + </li> + <li><a href="#d2e1263">http://www.example.com/repo/courses/{courseId}/elements/enrollment</a><ul> + <li><a href="#d2e1294">http://www.example.com/repo/courses/{courseId}/elements/enrollment/{nodeId}/groups</a></li> + </ul> + </li> + <li><a href="#d2e1301">http://www.example.com/repo/courses/infos</a></li> + <li><a href="#d2e1321">http://www.example.com/users</a><ul> + <li><a href="#d2e1381">http://www.example.com/users/{identityKey}</a></li> + <li><a href="#d2e1455">http://www.example.com/users/version</a></li> + <li><a href="#d2e1470">http://www.example.com/users/{identityKey}/roles</a></li> + <li><a href="#d2e1492">http://www.example.com/users/{identityKey}/delete</a></li> + <li><a href="#d2e1509">http://www.example.com/users/{identityKey}/portrait</a></li> + <li><a href="#d2e1554">http://www.example.com/users/{identityKey}/groups</a><ul> + <li><a href="#d2e1582">http://www.example.com/users/{identityKey}/groups/infos</a></li> </ul> </li> - <li><a href="#d2e2686">http://www.example.com/groups/{groupKey}/wiki</a></li> </ul> </li> - <li><a href="#d2e2694">http://www.example.com/repo/forums</a><ul> - <li><a href="#d2e2697">http://www.example.com/repo/forums/version</a></li> - <li><a href="#d2e2712">http://www.example.com/repo/forums/{forumKey}</a><ul> - <li><a href="#d2e2738">http://www.example.com/repo/forums/{forumKey}/threads</a></li> - <li><a href="#d2e2823">http://www.example.com/repo/forums/{forumKey}/posts/{threadKey}</a></li> - <li><a href="#d2e2856">http://www.example.com/repo/forums/{forumKey}/posts/{messageKey}</a></li> - <li><a href="#d2e2944">http://www.example.com/repo/forums/{forumKey}/posts/{messageKey}/attachments</a></li> - <li><a href="#d2e2997">http://www.example.com/repo/forums/{forumKey}/posts/{messageKey}/attachments/{filename}</a></li> + <li><a href="#d2e1607">http://www.example.com/repo/courses/{courseId}</a><ul> + <li><a href="#d2e1643">http://www.example.com/repo/courses/{courseId}/version</a></li> + <li><a href="#d2e1658">http://www.example.com/repo/courses/{courseId}/configuration</a></li> + <li><a href="#d2e1722">http://www.example.com/repo/courses/{courseId}/authors</a></li> + <li><a href="#d2e1739">http://www.example.com/repo/courses/{courseId}/publish</a></li> + <li><a href="#d2e1767">http://www.example.com/repo/courses/{courseId}/file</a></li> + <li><a href="#d2e1782">http://www.example.com/repo/courses/{courseId}/runstructure</a></li> + <li><a href="#d2e1799">http://www.example.com/repo/courses/{courseId}/editortreemodel</a></li> + <li><a href="#d2e1817">http://www.example.com/repo/courses/{courseId}/authors/{identityKey}</a></li> + <li><a href="#d2e1863">http://www.example.com/repo/courses/{courseId}/groups</a><ul> + <li><a href="#d2e1904">http://www.example.com/repo/courses/{courseId}/groups/version</a></li> + <li><a href="#d2e1919">http://www.example.com/repo/courses/{courseId}/groups/{groupKey}</a></li> + <li><a href="#d2e1975">http://www.example.com/repo/courses/{courseId}/groups/new</a></li> + <li><a href="#d2e1995">http://www.example.com/repo/courses/{courseId}/groups/{groupKey}/forum</a><ul> + <li><a href="#d2e2021">http://www.example.com/repo/courses/{courseId}/groups/{groupKey}/forum/threads</a></li> + <li><a href="#d2e2106">http://www.example.com/repo/courses/{courseId}/groups/{groupKey}/forum/posts/{threadKey}</a></li> + <li><a href="#d2e2139">http://www.example.com/repo/courses/{courseId}/groups/{groupKey}/forum/posts/{messageKey}</a></li> + <li><a href="#d2e2227">http://www.example.com/repo/courses/{courseId}/groups/{groupKey}/forum/posts/{messageKey}/attachments</a></li> + <li><a href="#d2e2280">http://www.example.com/repo/courses/{courseId}/groups/{groupKey}/forum/posts/{messageKey}/attachments/{filename}</a></li> + </ul> + </li> + <li><a href="#d2e2297">http://www.example.com/repo/courses/{courseId}/groups/{groupKey}/folder</a><ul> + <li><a href="#d2e2340">http://www.example.com/repo/courses/{courseId}/groups/{groupKey}/folder/{path:.*}</a></li> + <li><a href="#d2e2394">http://www.example.com/repo/courses/{courseId}/groups/{groupKey}/folder/version</a></li> + </ul> + </li> </ul> </li> </ul> </li> - <li><a href="#d2e3014">http://www.example.com/repo/courses/infos</a></li> - <li><a href="#d2e3034">http://www.example.com/system</a><ul> - <li><a href="#d2e3037">http://www.example.com/system/environment</a></li> - <li><a href="#d2e3055">http://www.example.com/system/release</a></li> - <li><a href="#d2e3073">http://www.example.com/system/log</a><ul> - <li><a href="#d2e3080">http://www.example.com/system/log/version</a></li> - <li><a href="#d2e3095">http://www.example.com/system/log/{date}</a></li> + <li><a href="#d2e2398">http://www.example.com/contacts</a></li> + <li><a href="#d2e2411">http://www.example.com/system</a><ul> + <li><a href="#d2e2414">http://www.example.com/system/environment</a></li> + <li><a href="#d2e2432">http://www.example.com/system/release</a></li> + <li><a href="#d2e2450">http://www.example.com/system/log</a><ul> + <li><a href="#d2e2457">http://www.example.com/system/log/version</a></li> + <li><a href="#d2e2472">http://www.example.com/system/log/{date}</a></li> </ul> </li> - <li><a href="#d2e3101">http://www.example.com/system/monitoring</a><ul> - <li><a href="#d2e3102">http://www.example.com/system/monitoring/configuration</a></li> - <li><a href="#d2e3120">http://www.example.com/system/monitoring/runtime</a><ul> - <li><a href="#d2e3138">http://www.example.com/system/monitoring/runtime/classes</a></li> - <li><a href="#d2e3156">http://www.example.com/system/monitoring/runtime/memory</a></li> - <li><a href="#d2e3174">http://www.example.com/system/monitoring/runtime/threads</a></li> + <li><a href="#d2e2478">http://www.example.com/system/monitoring</a><ul> + <li><a href="#d2e2479">http://www.example.com/system/monitoring/configuration</a></li> + <li><a href="#d2e2497">http://www.example.com/system/monitoring/runtime</a><ul> + <li><a href="#d2e2515">http://www.example.com/system/monitoring/runtime/classes</a></li> + <li><a href="#d2e2533">http://www.example.com/system/monitoring/runtime/memory</a></li> + <li><a href="#d2e2551">http://www.example.com/system/monitoring/runtime/threads</a></li> </ul> </li> - <li><a href="#d2e3192">http://www.example.com/system/monitoring/database</a></li> - <li><a href="#d2e3210">http://www.example.com/system/monitoring/openolat</a><ul> - <li><a href="#d2e3228">http://www.example.com/system/monitoring/openolat/users</a></li> - <li><a href="#d2e3246">http://www.example.com/system/monitoring/openolat/repository</a></li> - <li><a href="#d2e3264">http://www.example.com/system/monitoring/openolat/indexer</a></li> - <li><a href="#d2e3282">http://www.example.com/system/monitoring/openolat/sessions</a></li> + <li><a href="#d2e2569">http://www.example.com/system/monitoring/database</a></li> + <li><a href="#d2e2587">http://www.example.com/system/monitoring/openolat</a><ul> + <li><a href="#d2e2605">http://www.example.com/system/monitoring/openolat/users</a></li> + <li><a href="#d2e2623">http://www.example.com/system/monitoring/openolat/repository</a></li> + <li><a href="#d2e2641">http://www.example.com/system/monitoring/openolat/indexer</a></li> + <li><a href="#d2e2659">http://www.example.com/system/monitoring/openolat/sessions</a></li> </ul> </li> - <li><a href="#d2e3300">http://www.example.com/system/monitoring/memory</a><ul> - <li><a href="#d2e3330">http://www.example.com/system/monitoring/memory/pools</a></li> - <li><a href="#d2e3338">http://www.example.com/system/monitoring/memory/samples</a></li> + <li><a href="#d2e2677">http://www.example.com/system/monitoring/memory</a><ul> + <li><a href="#d2e2707">http://www.example.com/system/monitoring/memory/pools</a></li> + <li><a href="#d2e2715">http://www.example.com/system/monitoring/memory/samples</a></li> </ul> </li> - <li><a href="#d2e3347">http://www.example.com/system/monitoring/threads</a><ul> - <li><a href="#d2e3357">http://www.example.com/system/monitoring/threads/cpu</a></li> + <li><a href="#d2e2724">http://www.example.com/system/monitoring/threads</a><ul> + <li><a href="#d2e2734">http://www.example.com/system/monitoring/threads/cpu</a></li> </ul> </li> </ul> </li> </ul> </li> - <li><a href="#d2e3362">http://www.example.com/contacts</a></li> - <li><a href="#d2e3375">http://www.example.com/users/{username}/auth</a><ul> - <li><a href="#d2e3424">http://www.example.com/users/{username}/auth/{authKey}</a></li> - <li><a href="#d2e3444">http://www.example.com/users/{username}/auth/version</a></li> - <li><a href="#d2e3459">http://www.example.com/users/{username}/auth/new</a></li> - <li><a href="#d2e3486">http://www.example.com/users/{username}/auth/{authKey}/delete</a></li> - </ul> - </li> - <li><a href="#d2e3506">http://www.example.com/repo/courses/{courseId}/elements/forum</a><ul> - <li><a href="#d2e3593">http://www.example.com/repo/courses/{courseId}/elements/forum/{nodeId}</a></li> - <li><a href="#d2e3620">http://www.example.com/repo/courses/{courseId}/elements/forum/{nodeId}/thread</a></li> - <li><a href="#d2e3660">http://www.example.com/repo/courses/{courseId}/elements/forum/{nodeId}/message</a></li> - <li><a href="#d2e3700">http://www.example.com/repo/courses/{courseId}/elements/forum/{nodeId}/forum</a><ul> - <li><a href="#d2e3725">http://www.example.com/repo/courses/{courseId}/elements/forum/{nodeId}/forum/threads</a></li> - <li><a href="#d2e3810">http://www.example.com/repo/courses/{courseId}/elements/forum/{nodeId}/forum/posts/{threadKey}</a></li> - <li><a href="#d2e3843">http://www.example.com/repo/courses/{courseId}/elements/forum/{nodeId}/forum/posts/{messageKey}</a></li> - <li><a href="#d2e3931">http://www.example.com/repo/courses/{courseId}/elements/forum/{nodeId}/forum/posts/{messageKey}/attachments</a></li> - <li><a href="#d2e3984">http://www.example.com/repo/courses/{courseId}/elements/forum/{nodeId}/forum/posts/{messageKey}/attachments/{filename}</a></li> + <li><a href="#d2e2739">http://www.example.com/repo/courses/{courseId}/elements/forum</a><ul> + <li><a href="#d2e2826">http://www.example.com/repo/courses/{courseId}/elements/forum/{nodeId}</a></li> + <li><a href="#d2e2853">http://www.example.com/repo/courses/{courseId}/elements/forum/{nodeId}/thread</a></li> + <li><a href="#d2e2893">http://www.example.com/repo/courses/{courseId}/elements/forum/{nodeId}/message</a></li> + <li><a href="#d2e2933">http://www.example.com/repo/courses/{courseId}/elements/forum/{nodeId}/forum</a><ul> + <li><a href="#d2e2958">http://www.example.com/repo/courses/{courseId}/elements/forum/{nodeId}/forum/threads</a></li> + <li><a href="#d2e3043">http://www.example.com/repo/courses/{courseId}/elements/forum/{nodeId}/forum/posts/{threadKey}</a></li> + <li><a href="#d2e3076">http://www.example.com/repo/courses/{courseId}/elements/forum/{nodeId}/forum/posts/{messageKey}</a></li> + <li><a href="#d2e3164">http://www.example.com/repo/courses/{courseId}/elements/forum/{nodeId}/forum/posts/{messageKey}/attachments</a></li> + <li><a href="#d2e3217">http://www.example.com/repo/courses/{courseId}/elements/forum/{nodeId}/forum/posts/{messageKey}/attachments/{filename}</a></li> </ul> </li> </ul> </li> - <li><a href="#d2e4001">http://www.example.com/repo/courses/{courseId}/resourcefolders</a><ul> - <li><a href="#d2e4004">http://www.example.com/repo/courses/{courseId}/resourcefolders/version</a></li> - <li><a href="#d2e4019">http://www.example.com/repo/courses/{courseId}/resourcefolders/sharedfolder</a></li> - <li><a href="#d2e4036">http://www.example.com/repo/courses/{courseId}/resourcefolders/sharedfolder/{path:.*}</a></li> - <li><a href="#d2e4054">http://www.example.com/repo/courses/{courseId}/resourcefolders/coursefolder</a></li> - <li><a href="#d2e4113">http://www.example.com/repo/courses/{courseId}/resourcefolders/coursefolder/{path:.*}</a></li> + <li><a href="#d2e3235">http://www.example.com/repo/courses/{courseId}/assessments</a><ul> + <li><a href="#d2e3261">http://www.example.com/repo/courses/{courseId}/assessments/version</a></li> + <li><a href="#d2e3276">http://www.example.com/repo/courses/{courseId}/assessments/users/{identityKey}</a></li> + <li><a href="#d2e3303">http://www.example.com/repo/courses/{courseId}/assessments/{nodeId}</a></li> + <li><a href="#d2e3346">http://www.example.com/repo/courses/{courseId}/assessments/{nodeId}/users/{identityKey}</a></li> </ul> </li> - <li><a href="#d2e4174">http://www.example.com/repo/courses</a><ul> - <li><a href="#d2e4228">http://www.example.com/repo/courses/version</a></li> - </ul> - </li> - <li><a href="#d2e4243">http://www.example.com/notifications</a></li> - <li><a href="#d2e4270">http://www.example.com/repo/courses/{courseId}/elements/folder</a><ul> - <li><a href="#d2e4303">http://www.example.com/repo/courses/{courseId}/elements/folder/{nodeId}</a></li> - <li><a href="#d2e4322">http://www.example.com/repo/courses/{courseId}/elements/folder/{nodeId}/files</a><ul> - <li><a href="#d2e4366">http://www.example.com/repo/courses/{courseId}/elements/folder/{nodeId}/files/{path:.*}</a></li> - <li><a href="#d2e4420">http://www.example.com/repo/courses/{courseId}/elements/folder/{nodeId}/files/version</a></li> - </ul> - </li> + <li><a href="#d2e3376">http://www.example.com/auth</a><ul> + <li><a href="#d2e3379">http://www.example.com/auth/version</a></li> + <li><a href="#d2e3394">http://www.example.com/auth/{username}</a></li> </ul> </li> - <li><a href="#d2e4424">http://www.example.com/users/{identityKey}/folders</a><ul> - <li><a href="#d2e4447">http://www.example.com/users/{identityKey}/folders/personal</a><ul> - <li><a href="#d2e4490">http://www.example.com/users/{identityKey}/folders/personal/{path:.*}</a></li> - <li><a href="#d2e4544">http://www.example.com/users/{identityKey}/folders/personal/version</a></li> - </ul> - </li> - <li><a href="#d2e4548">http://www.example.com/users/{identityKey}/folders/group/{groupKey}</a><ul> - <li><a href="#d2e4591">http://www.example.com/users/{identityKey}/folders/group/{groupKey}/{path:.*}</a></li> - <li><a href="#d2e4645">http://www.example.com/users/{identityKey}/folders/group/{groupKey}/version</a></li> - </ul> - </li> - <li><a href="#d2e4649">http://www.example.com/users/{identityKey}/folders/course/{courseKey}/{courseNodeId}</a><ul> - <li><a href="#d2e4693">http://www.example.com/users/{identityKey}/folders/course/{courseKey}/{courseNodeId}/{path:.*}</a></li> - <li><a href="#d2e4747">http://www.example.com/users/{identityKey}/folders/course/{courseKey}/{courseNodeId}/version</a></li> - </ul> - </li> + <li><a href="#d2e3422">http://www.example.com/repo/courses</a><ul> + <li><a href="#d2e3476">http://www.example.com/repo/courses/version</a></li> </ul> </li> - <li><a href="#d2e4751">http://www.example.com/ping</a><ul> - <li><a href="#d2e4768">http://www.example.com/ping/version</a></li> - <li><a href="#d2e4783">http://www.example.com/ping/{name}</a></li> + <li><a href="#d2e3491">http://www.example.com/i18n</a><ul> + <li><a href="#d2e3494">http://www.example.com/i18n/version</a></li> + <li><a href="#d2e3509">http://www.example.com/i18n/{package}/{key}</a></li> </ul> </li> - <li><a href="#d2e4799">http://www.example.com/users/{identityKey}/forums</a><ul> - <li><a href="#d2e4822">http://www.example.com/users/{identityKey}/forums/course/{courseKey}/{courseNodeId}</a><ul> - <li><a href="#d2e4847">http://www.example.com/users/{identityKey}/forums/course/{courseKey}/{courseNodeId}/threads</a></li> - <li><a href="#d2e4932">http://www.example.com/users/{identityKey}/forums/course/{courseKey}/{courseNodeId}/posts/{threadKey}</a></li> - <li><a href="#d2e4965">http://www.example.com/users/{identityKey}/forums/course/{courseKey}/{courseNodeId}/posts/{messageKey}</a></li> - <li><a href="#d2e5053">http://www.example.com/users/{identityKey}/forums/course/{courseKey}/{courseNodeId}/posts/{messageKey}/attachments</a></li> - <li><a href="#d2e5106">http://www.example.com/users/{identityKey}/forums/course/{courseKey}/{courseNodeId}/posts/{messageKey}/attachments/{filename}</a></li> + <li><a href="#d2e3534">http://www.example.com/users/{identityKey}/forums</a><ul> + <li><a href="#d2e3557">http://www.example.com/users/{identityKey}/forums/group/{groupKey}</a><ul> + <li><a href="#d2e3581">http://www.example.com/users/{identityKey}/forums/group/{groupKey}/threads</a></li> + <li><a href="#d2e3666">http://www.example.com/users/{identityKey}/forums/group/{groupKey}/posts/{threadKey}</a></li> + <li><a href="#d2e3699">http://www.example.com/users/{identityKey}/forums/group/{groupKey}/posts/{messageKey}</a></li> + <li><a href="#d2e3787">http://www.example.com/users/{identityKey}/forums/group/{groupKey}/posts/{messageKey}/attachments</a></li> + <li><a href="#d2e3840">http://www.example.com/users/{identityKey}/forums/group/{groupKey}/posts/{messageKey}/attachments/{filename}</a></li> </ul> </li> - <li><a href="#d2e5123">http://www.example.com/users/{identityKey}/forums/group/{groupKey}</a><ul> - <li><a href="#d2e5147">http://www.example.com/users/{identityKey}/forums/group/{groupKey}/threads</a></li> - <li><a href="#d2e5232">http://www.example.com/users/{identityKey}/forums/group/{groupKey}/posts/{threadKey}</a></li> - <li><a href="#d2e5265">http://www.example.com/users/{identityKey}/forums/group/{groupKey}/posts/{messageKey}</a></li> - <li><a href="#d2e5353">http://www.example.com/users/{identityKey}/forums/group/{groupKey}/posts/{messageKey}/attachments</a></li> - <li><a href="#d2e5406">http://www.example.com/users/{identityKey}/forums/group/{groupKey}/posts/{messageKey}/attachments/{filename}</a></li> + <li><a href="#d2e3857">http://www.example.com/users/{identityKey}/forums/course/{courseKey}/{courseNodeId}</a><ul> + <li><a href="#d2e3882">http://www.example.com/users/{identityKey}/forums/course/{courseKey}/{courseNodeId}/threads</a></li> + <li><a href="#d2e3967">http://www.example.com/users/{identityKey}/forums/course/{courseKey}/{courseNodeId}/posts/{threadKey}</a></li> + <li><a href="#d2e4000">http://www.example.com/users/{identityKey}/forums/course/{courseKey}/{courseNodeId}/posts/{messageKey}</a></li> + <li><a href="#d2e4088">http://www.example.com/users/{identityKey}/forums/course/{courseKey}/{courseNodeId}/posts/{messageKey}/attachments</a></li> + <li><a href="#d2e4141">http://www.example.com/users/{identityKey}/forums/course/{courseKey}/{courseNodeId}/posts/{messageKey}/attachments/{filename}</a></li> </ul> </li> </ul> </li> - <li><a href="#d2e5423">http://www.example.com/i18n</a><ul> - <li><a href="#d2e5426">http://www.example.com/i18n/version</a></li> - <li><a href="#d2e5441">http://www.example.com/i18n/{package}/{key}</a></li> + <li><a href="#d2e4158">http://www.example.com/catalog</a><ul> + <li><a href="#d2e4175">http://www.example.com/catalog/{path:.*}/owners/{identityKey}</a></li> + <li><a href="#d2e4242">http://www.example.com/catalog/version</a></li> + <li><a href="#d2e4257">http://www.example.com/catalog/{path:.*}/children</a></li> + <li><a href="#d2e4281">http://www.example.com/catalog/{path:.*}</a></li> + <li><a href="#d2e4457">http://www.example.com/catalog/{path:.*}/owners</a></li> </ul> </li> - <li><a href="#d2e5466">http://www.example.com/users</a><ul> - <li><a href="#d2e5526">http://www.example.com/users/{identityKey}</a></li> - <li><a href="#d2e5600">http://www.example.com/users/version</a></li> - <li><a href="#d2e5615">http://www.example.com/users/new</a></li> - <li><a href="#d2e5646">http://www.example.com/users/{identityKey}/delete</a></li> - <li><a href="#d2e5663">http://www.example.com/users/{identityKey}/portrait</a></li> - <li><a href="#d2e5708">http://www.example.com/users/{identityKey}/groups</a><ul> - <li><a href="#d2e5736">http://www.example.com/users/{identityKey}/groups/infos</a></li> - </ul> - </li> + <li><a href="#d2e4481">http://www.example.com/notifications</a></li> + <li><a href="#d2e4508">http://www.example.com/repo/courses/{courseId}/resourcefolders</a><ul> + <li><a href="#d2e4511">http://www.example.com/repo/courses/{courseId}/resourcefolders/version</a></li> + <li><a href="#d2e4526">http://www.example.com/repo/courses/{courseId}/resourcefolders/sharedfolder</a></li> + <li><a href="#d2e4543">http://www.example.com/repo/courses/{courseId}/resourcefolders/sharedfolder/{path:.*}</a></li> + <li><a href="#d2e4561">http://www.example.com/repo/courses/{courseId}/resourcefolders/coursefolder</a></li> + <li><a href="#d2e4620">http://www.example.com/repo/courses/{courseId}/resourcefolders/coursefolder/{path:.*}</a></li> </ul> </li> - <li><a href="#d2e5761">http://www.example.com/repo/courses/{courseId}</a><ul> - <li><a href="#d2e5797">http://www.example.com/repo/courses/{courseId}/version</a></li> - <li><a href="#d2e5812">http://www.example.com/repo/courses/{courseId}/configuration</a></li> - <li><a href="#d2e5876">http://www.example.com/repo/courses/{courseId}/authors</a></li> - <li><a href="#d2e5893">http://www.example.com/repo/courses/{courseId}/publish</a></li> - <li><a href="#d2e5921">http://www.example.com/repo/courses/{courseId}/file</a></li> - <li><a href="#d2e5936">http://www.example.com/repo/courses/{courseId}/runstructure</a></li> - <li><a href="#d2e5953">http://www.example.com/repo/courses/{courseId}/editortreemodel</a></li> - <li><a href="#d2e5971">http://www.example.com/repo/courses/{courseId}/authors/{identityKey}</a></li> - <li><a href="#d2e6017">http://www.example.com/repo/courses/{courseId}/groups</a><ul> - <li><a href="#d2e6058">http://www.example.com/repo/courses/{courseId}/groups/version</a></li> - <li><a href="#d2e6073">http://www.example.com/repo/courses/{courseId}/groups/{groupKey}</a></li> - <li><a href="#d2e6129">http://www.example.com/repo/courses/{courseId}/groups/new</a></li> - <li><a href="#d2e6149">http://www.example.com/repo/courses/{courseId}/groups/{groupKey}/forum</a><ul> - <li><a href="#d2e6175">http://www.example.com/repo/courses/{courseId}/groups/{groupKey}/forum/threads</a></li> - <li><a href="#d2e6260">http://www.example.com/repo/courses/{courseId}/groups/{groupKey}/forum/posts/{threadKey}</a></li> - <li><a href="#d2e6293">http://www.example.com/repo/courses/{courseId}/groups/{groupKey}/forum/posts/{messageKey}</a></li> - <li><a href="#d2e6381">http://www.example.com/repo/courses/{courseId}/groups/{groupKey}/forum/posts/{messageKey}/attachments</a></li> - <li><a href="#d2e6434">http://www.example.com/repo/courses/{courseId}/groups/{groupKey}/forum/posts/{messageKey}/attachments/{filename}</a></li> - </ul> - </li> - <li><a href="#d2e6451">http://www.example.com/repo/courses/{courseId}/groups/{groupKey}/folder</a><ul> - <li><a href="#d2e6494">http://www.example.com/repo/courses/{courseId}/groups/{groupKey}/folder/{path:.*}</a></li> - <li><a href="#d2e6548">http://www.example.com/repo/courses/{courseId}/groups/{groupKey}/folder/version</a></li> - </ul> - </li> + <li><a href="#d2e4680">http://www.example.com/api</a><ul> + <li><a href="#d2e4683">http://www.example.com/api/version</a></li> + <li><a href="#d2e4698">http://www.example.com/api/doc</a></li> + <li><a href="#d2e4702">http://www.example.com/api/doc/{filename}</a></li> + <li><a href="#d2e4711">http://www.example.com/api/{filename}</a></li> + <li><a href="#d2e4720">http://www.example.com/api/copyright</a></li> + </ul> + </li> + <li><a href="#d2e4735">http://www.example.com/repo/entries</a><ul> + <li><a href="#d2e4786">http://www.example.com/repo/entries/version</a></li> + <li><a href="#d2e4792">http://www.example.com/repo/entries/search</a></li> + <li><a href="#d2e4823">http://www.example.com/repo/entries/{repoEntryKey}</a><ul> + <li><a href="#d2e4880">http://www.example.com/repo/entries/{repoEntryKey}/file</a></li> </ul> </li> </ul> </li> - <li><a href="#d2e6552">http://www.example.com/repo/courses/{courseId}/assessments</a><ul> - <li><a href="#d2e6578">http://www.example.com/repo/courses/{courseId}/assessments/version</a></li> - <li><a href="#d2e6593">http://www.example.com/repo/courses/{courseId}/assessments/users/{identityKey}</a></li> - <li><a href="#d2e6620">http://www.example.com/repo/courses/{courseId}/assessments/{nodeId}</a></li> - <li><a href="#d2e6663">http://www.example.com/repo/courses/{courseId}/assessments/{nodeId}/users/{identityKey}</a></li> + <li><a href="#d2e4908">http://www.example.com/users/{username}/auth</a><ul> + <li><a href="#d2e4957">http://www.example.com/users/{username}/auth/{authKey}</a></li> + <li><a href="#d2e4977">http://www.example.com/users/{username}/auth/version</a></li> + <li><a href="#d2e4992">http://www.example.com/users/{username}/auth/new</a></li> + <li><a href="#d2e5019">http://www.example.com/users/{username}/auth/{authKey}/delete</a></li> </ul> </li> - <li><a href="#d2e6693">http://www.example.com/repo/courses/{courseId}/elements/contact</a></li> - <li><a href="#d2e6737">http://www.example.com/api</a><ul> - <li><a href="#d2e6740">http://www.example.com/api/version</a></li> - <li><a href="#d2e6755">http://www.example.com/api/doc</a></li> - <li><a href="#d2e6759">http://www.example.com/api/doc/{filename}</a></li> - <li><a href="#d2e6768">http://www.example.com/api/{filename}</a></li> - <li><a href="#d2e6777">http://www.example.com/api/copyright</a></li> + <li><a href="#d2e5040">http://www.example.com/ping</a><ul> + <li><a href="#d2e5057">http://www.example.com/ping/version</a></li> + <li><a href="#d2e5072">http://www.example.com/ping/{name}</a></li> </ul> </li> - <li><a href="#d2e6792">http://www.example.com/repo/courses/{courseId}/elements/enrollment</a><ul> - <li><a href="#d2e6823">http://www.example.com/repo/courses/{courseId}/elements/enrollment/{nodeId}/groups</a></li> + <li><a href="#d2e5088">http://www.example.com/repo/forums</a><ul> + <li><a href="#d2e5091">http://www.example.com/repo/forums/version</a></li> + <li><a href="#d2e5106">http://www.example.com/repo/forums/{forumKey}</a><ul> + <li><a href="#d2e5132">http://www.example.com/repo/forums/{forumKey}/threads</a></li> + <li><a href="#d2e5217">http://www.example.com/repo/forums/{forumKey}/posts/{threadKey}</a></li> + <li><a href="#d2e5250">http://www.example.com/repo/forums/{forumKey}/posts/{messageKey}</a></li> + <li><a href="#d2e5338">http://www.example.com/repo/forums/{forumKey}/posts/{messageKey}/attachments</a></li> + <li><a href="#d2e5391">http://www.example.com/repo/forums/{forumKey}/posts/{messageKey}/attachments/{filename}</a></li> + </ul> + </li> </ul> </li> - <li><a href="#d2e6830">http://www.example.com/catalog</a><ul> - <li><a href="#d2e6847">http://www.example.com/catalog/{path:.*}/owners/{identityKey}</a></li> - <li><a href="#d2e6914">http://www.example.com/catalog/version</a></li> - <li><a href="#d2e6929">http://www.example.com/catalog/{path:.*}/children</a></li> - <li><a href="#d2e6953">http://www.example.com/catalog/{path:.*}</a></li> - <li><a href="#d2e7129">http://www.example.com/catalog/{path:.*}/owners</a></li> + <li><a href="#d2e5408">http://www.example.com/repo/courses/{courseId}/elements</a><ul> + <li><a href="#d2e5411">http://www.example.com/repo/courses/{courseId}/elements/version</a></li> + <li><a href="#d2e5426">http://www.example.com/repo/courses/{courseId}/elements/{nodeId}</a></li> + <li><a href="#d2e5453">http://www.example.com/repo/courses/{courseId}/elements/structure/{nodeId}</a></li> + <li><a href="#d2e5531">http://www.example.com/repo/courses/{courseId}/elements/structure</a></li> + <li><a href="#d2e5594">http://www.example.com/repo/courses/{courseId}/elements/singlepage/{nodeId}</a></li> + <li><a href="#d2e5626">http://www.example.com/repo/courses/{courseId}/elements/singlepage</a></li> + <li><a href="#d2e5821">http://www.example.com/repo/courses/{courseId}/elements/task/{nodeId}</a></li> + <li><a href="#d2e5871">http://www.example.com/repo/courses/{courseId}/elements/task</a></li> + <li><a href="#d2e5972">http://www.example.com/repo/courses/{courseId}/elements/test/{nodeId}</a></li> + <li><a href="#d2e6003">http://www.example.com/repo/courses/{courseId}/elements/test</a></li> + <li><a href="#d2e6099">http://www.example.com/repo/courses/{courseId}/elements/assessment/{nodeId}</a></li> + <li><a href="#d2e6143">http://www.example.com/repo/courses/{courseId}/elements/assessment</a></li> + <li><a href="#d2e6232">http://www.example.com/repo/courses/{courseId}/elements/wiki/{nodeId}</a></li> + <li><a href="#d2e6279">http://www.example.com/repo/courses/{courseId}/elements/wiki</a></li> + <li><a href="#d2e6339">http://www.example.com/repo/courses/{courseId}/elements/blog/{nodeId}</a></li> + <li><a href="#d2e6386">http://www.example.com/repo/courses/{courseId}/elements/blog</a></li> + <li><a href="#d2e6480">http://www.example.com/repo/courses/{courseId}/elements/survey/{nodeId}</a></li> + <li><a href="#d2e6527">http://www.example.com/repo/courses/{courseId}/elements/survey</a></li> + <li><a href="#d2e6599">http://www.example.com/repo/courses/{courseId}/elements/externalpage/{nodeId}</a></li> + <li><a href="#d2e6646">http://www.example.com/repo/courses/{courseId}/elements/externalpage</a></li> + <li><a href="#d2e6743">http://www.example.com/repo/courses/{courseId}/elements/task/{nodeId}/file</a></li> + <li><a href="#d2e6799">http://www.example.com/repo/courses/{courseId}/elements/task/{nodeId}/configuration</a></li> + <li><a href="#d2e6930">http://www.example.com/repo/courses/{courseId}/elements/survey/{nodeId}/configuration</a></li> + <li><a href="#d2e7021">http://www.example.com/repo/courses/{courseId}/elements/test/{nodeId}/configuration</a></li> </ul> </li> </ul> </li> <li><a href="#representations">Representations</a><ul> - <li><a href="#d2e10">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e32">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e35">Status Code 200 - text/plain, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e45">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e58">Status Code 200 - text/plain, text/html, application/xml, application/json (<abbr title="{http://www.example.com} repositoryEntryVO">ns3:repositoryEntryVO</abbr>)</a></li> - <li><a href="#d2e72">Status Code 200 - text/plain, text/html, application/xml, application/json (<abbr title="{http://www.example.com} repositoryEntryVO">ns3:repositoryEntryVO</abbr>)</a></li> - <li><a href="#d2e86">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e103">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} repositoryEntryVO">ns3:repositoryEntryVO</abbr>)</a></li> - <li><a href="#d2e113">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e121">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e140">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} repositoryEntryVO">ns3:repositoryEntryVO</abbr>)</a></li> - <li><a href="#d2e150">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e161">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e164">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e167">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e174">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e177">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} repositoryEntryVO">ns3:repositoryEntryVO</abbr>)</a></li> - <li><a href="#d2e191">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e197">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} repositoryEntryVO">ns3:repositoryEntryVO</abbr>)</a></li> - <li><a href="#d2e207">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e216">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e219">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e222">Status Code 200 - application/zip<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e232">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e235">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e246">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e267">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e270">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e280">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e294">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e319">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e345">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e348">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e358">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e367">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e379">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e382">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e392">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e408">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e411">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e421">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e436">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e440">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e443">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e453">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e464">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e493">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e496">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e506">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e513">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e540">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e543">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e553">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e581">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e589">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e592">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e602">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e635">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e638">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e648">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e662">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e685">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e688">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e698">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e709">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e12">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} folderVOes">ns3:folderVOes</abbr>)</a></li> + <li><a href="#d2e22">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e29">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e30">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e31">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e32">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e33">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e36">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e41">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e42">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e45">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e50">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e51">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e54">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e59">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e60">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e63">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e64">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e66">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e67">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e72">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e73">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e74">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e75">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e76">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e79">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e84">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e85">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e86">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e89">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e94">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e95">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e96">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e99">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e104">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e105">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e106">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e109">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e110">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e112">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e113">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e116">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e117">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e120">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e121">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e125">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e131">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e132">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e133">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e134">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e135">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e138">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e143">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e144">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e147">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e152">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e153">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e156">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e161">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e162">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e165">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e166">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e168">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e169">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e174">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e175">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e176">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e177">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e178">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e181">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e186">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e187">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e188">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e191">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e196">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e197">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e198">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e201">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e206">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e207">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e208">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e211">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e212">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e214">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e215">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e218">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e219">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e222">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e223">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e227">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e232">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e233">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e234">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e235">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e236">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e239">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e244">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e245">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e248">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e253">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e254">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e257">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e262">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e263">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e266">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e267">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e269">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e270">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e275">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e276">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e277">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e278">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e279">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e282">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e287">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e288">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e289">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e292">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e297">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e298">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e299">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e302">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e307">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e308">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e309">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e312">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e313">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e315">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e316">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e319">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e320">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e323">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e324">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e328">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e349">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e350">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e353">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e370">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e371">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e379">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e380">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e382">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e385">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>)</a></li> + <li><a href="#d2e395">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e402">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>)</a></li> + <li><a href="#d2e417">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e435">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>)</a></li> + <li><a href="#d2e449">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e450">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e452">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e455">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>)</a></li> + <li><a href="#d2e465">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e472">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e475">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e478">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e485">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e487">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e496">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e499">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupInfoVO">ns3:groupInfoVO</abbr>)</a></li> + <li><a href="#d2e517">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e520">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>)</a></li> + <li><a href="#d2e538">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e541">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>)</a></li> + <li><a href="#d2e562">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e565">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e568">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e575">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e578">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e581">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e595">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e598">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e601">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e616">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e619">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e622">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e636">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e639">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e642">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e649">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e652">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e655">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e669">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e672">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e675">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e689">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e692">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e695">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e708">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e711">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>)</a></li> + <li><a href="#d2e721">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> <li><a href="#d2e738">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e741">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e741">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> <li><a href="#d2e751">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e786">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e789">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e799">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e809">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e817">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e820">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e830">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e841">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e867">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e870">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e880">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e912">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e915">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e925">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e940">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e957">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e960">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e970">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e981">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1004">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1007">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e1017">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1046">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1049">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e1059">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1073">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1093">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1096">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e1106">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1124">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1127">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e1137">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1153">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1156">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e1166">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1180">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1200">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1203">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e1213">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1249">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1252">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e1262">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1294">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1297">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e1307">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1321">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1341">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1344">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e1354">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1384">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1387">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e1397">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1413">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1416">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e1426">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1440">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1460">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1463">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e1473">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1509">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1512">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e1522">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1554">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1557">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1560">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e1570">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1580">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1585">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1588">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e1598">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1605">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1609">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1612">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e1622">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1625">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1664">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1667">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1670">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} surveyConfigVO">ns3:surveyConfigVO</abbr>)</a></li> - <li><a href="#d2e1680">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1683">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1718">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1721">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1724">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} surveyConfigVO">ns3:surveyConfigVO</abbr>)</a></li> - <li><a href="#d2e1734">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1737">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1744">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1747">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} surveyConfigVO">ns3:surveyConfigVO</abbr>)</a></li> - <li><a href="#d2e1757">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1775">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1778">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1781">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} surveyConfigVO">ns3:surveyConfigVO</abbr>)</a></li> - <li><a href="#d2e1791">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1794">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1809">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1812">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1815">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} surveyConfigVO">ns3:surveyConfigVO</abbr>)</a></li> - <li><a href="#d2e1825">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1828">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1835">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1838">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} surveyConfigVO">ns3:surveyConfigVO</abbr>)</a></li> - <li><a href="#d2e1848">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1877">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1880">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1883">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} testConfigVO">ns3:testConfigVO</abbr>)</a></li> - <li><a href="#d2e1893">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1896">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1922">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1925">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1928">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} testConfigVO">ns3:testConfigVO</abbr>)</a></li> - <li><a href="#d2e1938">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1941">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1948">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1951">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} testConfigVO">ns3:testConfigVO</abbr>)</a></li> - <li><a href="#d2e1961">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1971">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1972">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1974">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1977">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>)</a></li> - <li><a href="#d2e1987">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1994">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>)</a></li> - <li><a href="#d2e2009">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2027">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>)</a></li> - <li><a href="#d2e2041">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2042">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2044">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2047">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>)</a></li> - <li><a href="#d2e2057">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2064">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2067">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2070">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2081">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2084">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupInfoVO">ns3:groupInfoVO</abbr>)</a></li> - <li><a href="#d2e2102">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2105">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>)</a></li> + <li><a href="#d2e768">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e771">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e781">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e788">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e793">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e796">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e806">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e826">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e829">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> + <li><a href="#d2e839">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e850">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e861">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e864">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e874">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e881">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e882">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e884">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e887">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e897">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e914">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e917">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e927">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e936">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e939">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e946">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e950">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e953">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e960">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e964">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e967">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e974">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e975">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e977">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e980">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e994">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e997">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1004">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1005">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1006">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1007">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1008">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1011">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1016">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1017">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1020">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1025">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1026">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1029">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1034">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1035">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1038">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1039">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1041">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1042">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1047">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1048">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1049">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1050">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1051">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1054">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1059">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1060">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1061">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1064">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1069">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1070">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1071">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1074">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1079">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1080">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1081">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1084">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1085">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1087">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1088">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1091">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1092">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1095">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1096">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1100">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1107">application/zip<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1108">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1113">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1114">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1126">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1127">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1130">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1140">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1141">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1147">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1148">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1151">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1159">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1160">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1166">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1167">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1168">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1169">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1170">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1173">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1178">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1179">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1182">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1187">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1188">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1191">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1196">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1197">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1200">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1201">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1203">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1204">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1209">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1210">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1211">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1212">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1213">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1216">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1221">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1222">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1223">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1226">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1231">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1232">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1233">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1236">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1241">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1242">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1243">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1246">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1247">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1249">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1250">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1253">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1254">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1257">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1258">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1262">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1277">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1278">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1281">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1292">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1293">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1299">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1300">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1311">Status Code 200 - application/xml, application/json, application/json;pagingspec=1.0 (<abbr title="{http://www.example.com} courseVO">ns3:courseVO</abbr>)</a></li> + <li><a href="#d2e1328">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1329">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1331">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1341">Status Code 406 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1351">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1368">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>)</a></li> + <li><a href="#d2e1378">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1389">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1392">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1395">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1402">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1403">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1405">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1408">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>)</a></li> + <li><a href="#d2e1418">Status Code 406 - application/xml, application/json (<abbr title="{http://www.example.com} errorVO">ns3:errorVO</abbr>)</a></li> + <li><a href="#d2e1428">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1439">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1442">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1452">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1460">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1476">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1479">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1482">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1487">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1488">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1490">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1491">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1500">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1503">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1506">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1517">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1520">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1527">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1535">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1538">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1541">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1548">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1551">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1569">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1572">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>)</a></li> + <li><a href="#d2e1594">Status Code 200 - application/xml;pagingspec=1.0, application/json;pagingspec=1.0 (<abbr title="{http://www.example.com} groupInfoVO">ns3:groupInfoVO</abbr>)</a></li> + <li><a href="#d2e1604">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1617">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1620">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseVO">ns3:courseVO</abbr>)</a></li> + <li><a href="#d2e1634">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1637">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1640">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1648">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1666">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1669">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseConfigVO">ns3:courseConfigVO</abbr>)</a></li> + <li><a href="#d2e1679">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1686">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1706">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1709">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseConfigVO">ns3:courseConfigVO</abbr>)</a></li> + <li><a href="#d2e1719">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1730">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1733">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>)</a></li> + <li><a href="#d2e1736">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1751">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1754">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseVO">ns3:courseVO</abbr>)</a></li> + <li><a href="#d2e1764">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1773">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1776">Status Code 200 - application/zip<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1779">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1790">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1793">Status Code 200 - application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1796">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1807">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1810">Status Code 200 - application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1813">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1828">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1831">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>)</a></li> + <li><a href="#d2e1834">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1841">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1844">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1847">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1854">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1857">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1860">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1871">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1874">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>)</a></li> + <li><a href="#d2e1888">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1889">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1891">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>)</a></li> + <li><a href="#d2e1901">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1909">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1927">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1930">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1933">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1940">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1943">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>)</a></li> + <li><a href="#d2e1957">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1959">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1962">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>)</a></li> + <li><a href="#d2e1972">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1980">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1982">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>)</a></li> + <li><a href="#d2e1992">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2005">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2008">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>)</a></li> + <li><a href="#d2e2018">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2035">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2038">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> + <li><a href="#d2e2048">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2065">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2068">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e2078">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2085">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2090">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2093">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e2103">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> <li><a href="#d2e2123">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2126">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>)</a></li> - <li><a href="#d2e2147">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2150">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2153">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2160">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2163">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2166">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2180">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2183">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2186">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2200">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2203">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2206">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2221">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2224">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2227">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2234">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2237">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2240">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2254">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2257">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2260">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2126">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> + <li><a href="#d2e2136">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2147">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2158">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2161">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e2171">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2178">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2179">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2181">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2184">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e2194">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2211">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2214">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e2224">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2233">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2236">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2243">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2247">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2250">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2257">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2261">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2264">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2271">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2272">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> <li><a href="#d2e2274">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2277">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2280">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2293">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2296">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>)</a></li> - <li><a href="#d2e2306">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2323">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2326">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> - <li><a href="#d2e2336">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2353">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2356">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e2366">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2373">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2378">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2381">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e2391">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2411">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2414">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> - <li><a href="#d2e2424">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2435">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2446">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2449">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e2459">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2476">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2479">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e2489">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2496">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2497">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2499">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2502">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e2277">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2291">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2294">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2301">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2302">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2303">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2304">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2305">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2308">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2313">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2314">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2317">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2322">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2323">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2326">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2331">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2332">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2335">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2336">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2338">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2339">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2344">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2345">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2346">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2347">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2348">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2351">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2356">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2357">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2358">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2361">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2366">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2367">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2368">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2371">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2376">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2377">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2378">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2381">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2382">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2384">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2385">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2388">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2389">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2392">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2393">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2397">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2408">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2419">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} environmentVO">ns3:environmentVO</abbr>)</a></li> + <li><a href="#d2e2429">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2437">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} releaseVO">ns3:releaseVO</abbr>)</a></li> + <li><a href="#d2e2447">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2455">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2456">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2462">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2476">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2477">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2484">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} releaseVO">ns3:releaseVO</abbr>)</a></li> + <li><a href="#d2e2494">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2502">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} runtimeVO">ns3:runtimeVO</abbr>)</a></li> <li><a href="#d2e2512">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2521">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2524">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2531">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2532">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2534">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2537">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2544">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2548">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2551">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2558">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2562">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2565">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2579">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2582">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2589">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2590">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2591">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2592">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2593">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2596">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2601">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2602">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2605">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2610">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2611">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2614">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2619">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2620">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2623">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2624">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2626">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2627">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2632">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2633">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2634">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2635">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2636">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2639">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2644">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2645">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2646">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2649">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2654">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2655">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2656">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2659">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2664">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2665">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2666">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2669">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2670">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2672">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2673">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2676">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2677">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2680">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2681">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2685">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2692">application/zip<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2693">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2702">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2722">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2725">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>)</a></li> - <li><a href="#d2e2735">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2752">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2755">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> - <li><a href="#d2e2765">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2782">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2785">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e2795">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2802">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2807">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2810">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e2820">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2840">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2843">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> - <li><a href="#d2e2853">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2864">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2875">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2878">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e2888">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2905">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2908">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e2918">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2925">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2926">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2928">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2931">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e2941">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2950">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2953">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2960">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2961">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2963">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2966">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2973">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2977">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2980">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2987">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2991">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2994">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3008">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3011">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3024">Status Code 200 - application/xml, application/json, application/json;pagingspec=1.0 (<abbr title="{http://www.example.com} courseVO">ns3:courseVO</abbr>)</a></li> - <li><a href="#d2e3042">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} environmentVO">ns3:environmentVO</abbr>)</a></li> - <li><a href="#d2e3052">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3060">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} releaseVO">ns3:releaseVO</abbr>)</a></li> - <li><a href="#d2e3070">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3078">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3079">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3085">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3099">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3100">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3107">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} releaseVO">ns3:releaseVO</abbr>)</a></li> - <li><a href="#d2e3117">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3125">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} runtimeVO">ns3:runtimeVO</abbr>)</a></li> - <li><a href="#d2e3135">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3143">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} classesVO">ns3:classesVO</abbr>)</a></li> - <li><a href="#d2e3153">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3161">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} runtimeVO">ns3:runtimeVO</abbr>)</a></li> - <li><a href="#d2e3171">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3179">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} runtimeVO">ns3:runtimeVO</abbr>)</a></li> - <li><a href="#d2e3189">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3197">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} runtimeVO">ns3:runtimeVO</abbr>)</a></li> - <li><a href="#d2e3207">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3215">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} releaseVO">ns3:releaseVO</abbr>)</a></li> - <li><a href="#d2e3225">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3233">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} releaseVO">ns3:releaseVO</abbr>)</a></li> - <li><a href="#d2e3243">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3251">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} releaseVO">ns3:releaseVO</abbr>)</a></li> - <li><a href="#d2e3261">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3269">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} releaseVO">ns3:releaseVO</abbr>)</a></li> - <li><a href="#d2e3279">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3287">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} sessionVO">ns3:sessionVO</abbr>)</a></li> - <li><a href="#d2e3297">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3307">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3310">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3317">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} memoryVO">ns3:memoryVO</abbr>)</a></li> + <li><a href="#d2e2520">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} classesVO">ns3:classesVO</abbr>)</a></li> + <li><a href="#d2e2530">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2538">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} runtimeVO">ns3:runtimeVO</abbr>)</a></li> + <li><a href="#d2e2548">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2556">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} runtimeVO">ns3:runtimeVO</abbr>)</a></li> + <li><a href="#d2e2566">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2574">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} runtimeVO">ns3:runtimeVO</abbr>)</a></li> + <li><a href="#d2e2584">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2592">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} releaseVO">ns3:releaseVO</abbr>)</a></li> + <li><a href="#d2e2602">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2610">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} releaseVO">ns3:releaseVO</abbr>)</a></li> + <li><a href="#d2e2620">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2628">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} releaseVO">ns3:releaseVO</abbr>)</a></li> + <li><a href="#d2e2638">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2646">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} releaseVO">ns3:releaseVO</abbr>)</a></li> + <li><a href="#d2e2656">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2664">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} sessionVO">ns3:sessionVO</abbr>)</a></li> + <li><a href="#d2e2674">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2684">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2687">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2694">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} memoryVO">ns3:memoryVO</abbr>)</a></li> + <li><a href="#d2e2704">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2710">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2713">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2714">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2722">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2723">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2729">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2732">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2733">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2737">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2738">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2747">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2750">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVOes">ns3:forumVOes</abbr>)</a></li> + <li><a href="#d2e2760">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2767">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2779">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2782">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e2792">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2810">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2813">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e2823">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2837">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2840">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>)</a></li> + <li><a href="#d2e2850">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2877">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2880">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e2890">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2917">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2920">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e2930">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2942">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2945">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>)</a></li> + <li><a href="#d2e2955">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2972">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2975">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> + <li><a href="#d2e2985">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3002">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3005">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e3015">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3022">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3027">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3030">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e3040">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3060">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3063">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> + <li><a href="#d2e3073">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3084">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3095">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3098">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e3108">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3115">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3116">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3118">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3121">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e3131">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3148">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3151">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e3161">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3170">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3173">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3180">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3184">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3187">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3194">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3198">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3201">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3208">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3209">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3211">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3214">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3228">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3231">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3245">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3248">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} assessableResultsVO">ns3:assessableResultsVO</abbr>)</a></li> + <li><a href="#d2e3258">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3266">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3287">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3290">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} assessableResultsVO">ns3:assessableResultsVO</abbr>)</a></li> + <li><a href="#d2e3300">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3314">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3317">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} assessableResultsVO">ns3:assessableResultsVO</abbr>)</a></li> <li><a href="#d2e3327">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3333">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3336">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3337">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3345">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3346">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3352">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3355">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3356">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3360">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3361">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3372">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3385">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3386">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3388">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3391">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} authenticationVO">ns3:authenticationVO</abbr>)</a></li> - <li><a href="#d2e3401">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3408">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3411">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} authenticationVO">ns3:authenticationVO</abbr>)</a></li> - <li><a href="#d2e3421">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3435">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3438">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3441">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3449">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3467">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3468">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3470">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3473">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} authenticationVO">ns3:authenticationVO</abbr>)</a></li> - <li><a href="#d2e3483">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3497">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3500">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3503">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3514">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3517">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVOes">ns3:forumVOes</abbr>)</a></li> - <li><a href="#d2e3527">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3534">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3546">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3549">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e3559">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3577">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3580">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e3590">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3604">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3607">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>)</a></li> - <li><a href="#d2e3617">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3644">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3647">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e3657">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3684">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3687">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e3697">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3709">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3712">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>)</a></li> - <li><a href="#d2e3722">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3739">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3742">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> - <li><a href="#d2e3752">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3769">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3772">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e3782">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3789">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3794">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3797">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e3807">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3827">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3830">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> - <li><a href="#d2e3840">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3851">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3862">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3865">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e3875">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3892">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3895">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e3905">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3912">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3913">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3915">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3918">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e3928">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3937">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3940">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3947">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3948">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3950">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3953">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3960">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3964">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3967">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3974">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3978">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3981">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3995">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3998">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4009">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4027">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4030">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4033">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4045">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4048">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4051">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4060">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4063">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4066">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4073">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4081">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4084">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4087">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4090">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4097">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4101">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4104">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4107">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4110">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4120">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4123">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4126">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4133">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4141">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4144">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4147">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4150">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4157">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4161">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4164">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4167">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4170">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4184">Status Code 200 - application/xml, application/json, application/json;pagingspec=1.0 (<abbr title="{http://www.example.com} courseVO">ns3:courseVO</abbr>)</a></li> - <li><a href="#d2e4211">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseVO">ns3:courseVO</abbr>)</a></li> - <li><a href="#d2e4221">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4226">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4227">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4233">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4257">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4260">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4274">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4275">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4287">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4288">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4291">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4301">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4302">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4308">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4309">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4312">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4320">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4321">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4327">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4328">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4329">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4330">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4331">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4334">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4339">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4340">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4343">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4348">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4349">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4352">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4357">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4358">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4361">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4362">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4364">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4365">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4370">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4371">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4372">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4373">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4374">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4377">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4382">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4383">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4384">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4387">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4392">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4393">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4394">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4397">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4402">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4403">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4404">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4407">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4408">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4410">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4411">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4414">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4415">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4418">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4419">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4423">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4434">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} folderVOes">ns3:folderVOes</abbr>)</a></li> - <li><a href="#d2e4444">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4451">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4452">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4453">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4454">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4455">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4458">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4463">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4464">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4467">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4472">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4473">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4476">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4481">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4482">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4485">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4486">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4488">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4489">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4494">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4495">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4496">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4497">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4498">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4501">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4506">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4507">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4508">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4511">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4516">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4517">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4518">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4521">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4526">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4527">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4528">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4531">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4532">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4534">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4535">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4538">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4539">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4542">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4543">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4547">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4552">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4553">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4554">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4555">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4556">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4559">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4564">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4565">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4568">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4573">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4574">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4577">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4582">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4583">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4586">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4587">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4589">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4590">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4595">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4596">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4597">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4598">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4599">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4602">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4607">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4608">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4609">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4612">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4617">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4618">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4619">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4622">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4627">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4628">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4629">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4632">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4633">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4635">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4636">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4639">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4640">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4643">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4644">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4648">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4654">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4655">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4656">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4657">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4658">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4661">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4666">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4667">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4670">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4675">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4676">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4679">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4684">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4685">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4688">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4689">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4691">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4692">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4697">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4698">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4699">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4700">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4701">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4704">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4709">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4710">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4711">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4714">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4719">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4720">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4721">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4724">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4729">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4730">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4731">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4734">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4735">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4737">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4738">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4741">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4742">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4745">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4746">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4750">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4758">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4773">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4789">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4809">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>)</a></li> - <li><a href="#d2e4819">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3334">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3335">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3337">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3340">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3343">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3360">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3363">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} assessableResultsVO">ns3:assessableResultsVO</abbr>)</a></li> + <li><a href="#d2e3373">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3384">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3406">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3409">Status Code 200 - text/plain, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3419">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3432">Status Code 200 - application/xml, application/json, application/json;pagingspec=1.0 (<abbr title="{http://www.example.com} courseVO">ns3:courseVO</abbr>)</a></li> + <li><a href="#d2e3459">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseVO">ns3:courseVO</abbr>)</a></li> + <li><a href="#d2e3469">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3474">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3475">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3481">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3499">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3524">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3544">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>)</a></li> + <li><a href="#d2e3554">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3565">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3568">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>)</a></li> + <li><a href="#d2e3578">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3595">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3598">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> + <li><a href="#d2e3608">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3625">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3628">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e3638">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3645">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3650">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3653">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e3663">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3683">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3686">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> + <li><a href="#d2e3696">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3707">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3718">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3721">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e3731">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3738">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3739">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3741">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3744">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e3754">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3771">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3774">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e3784">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3793">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3796">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3803">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3807">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3810">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3817">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3821">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3824">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3831">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3832">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3834">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3837">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3851">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3854">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3866">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3869">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>)</a></li> + <li><a href="#d2e3879">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3896">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3899">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> + <li><a href="#d2e3909">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3926">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3929">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e3939">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3946">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3951">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3954">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e3964">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3984">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3987">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> + <li><a href="#d2e3997">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4008">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4019">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4022">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e4032">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4039">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4040">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4042">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4045">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e4055">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4072">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4075">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e4085">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4094">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4097">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4104">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4108">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4111">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4118">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4122">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4125">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4132">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4133">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4135">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4138">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4152">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4155">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4165">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>)</a></li> + <li><a href="#d2e4186">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4189">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>)</a></li> + <li><a href="#d2e4199">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4206">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4209">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>)</a></li> + <li><a href="#d2e4219">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4226">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4229">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>)</a></li> + <li><a href="#d2e4239">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4247">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4268">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4271">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>)</a></li> + <li><a href="#d2e4289">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>)</a></li> + <li><a href="#d2e4299">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4319">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4322">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>)</a></li> + <li><a href="#d2e4332">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4339">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4340">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4342">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4345">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>)</a></li> + <li><a href="#d2e4355">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4362">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4373">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4376">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>)</a></li> + <li><a href="#d2e4386">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4394">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4395">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4397">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4400">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>)</a></li> + <li><a href="#d2e4410">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4421">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4424">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>)</a></li> + <li><a href="#d2e4434">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4441">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4444">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>)</a></li> + <li><a href="#d2e4454">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4465">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4468">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>)</a></li> + <li><a href="#d2e4478">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4495">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4498">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4516">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4534">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4537">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4540">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4552">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4555">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4558">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4567">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4570">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4573">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4580">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4588">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4591">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4594">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4597">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4604">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4608">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4611">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4614">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4617">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4627">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4630">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4633">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4640">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4648">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4651">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4654">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4657">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4664">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4668">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4671">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4674">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4677">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4688">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4701">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4708">Status Code 200 - image/jpeg<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4717">Status Code 200 - image/jpeg<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4725">Status Code 200 - text/html, application/xhtml+xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4732">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4745">Status Code 200 - text/plain, text/html, application/xml, application/json (<abbr title="{http://www.example.com} repositoryEntryVO">ns3:repositoryEntryVO</abbr>)</a></li> + <li><a href="#d2e4759">Status Code 200 - text/plain, text/html, application/xml, application/json (<abbr title="{http://www.example.com} repositoryEntryVO">ns3:repositoryEntryVO</abbr>)</a></li> + <li><a href="#d2e4773">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} repositoryEntryVO">ns3:repositoryEntryVO</abbr>)</a></li> + <li><a href="#d2e4783">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4791">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4810">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} repositoryEntryVO">ns3:repositoryEntryVO</abbr>)</a></li> + <li><a href="#d2e4820">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> <li><a href="#d2e4831">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4834">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>)</a></li> - <li><a href="#d2e4844">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4861">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4864">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> - <li><a href="#d2e4874">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4891">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4894">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e4904">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4911">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4916">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4919">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e4929">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4949">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4952">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> - <li><a href="#d2e4962">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4973">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4984">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4987">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e4997">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5014">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5017">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e5027">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5034">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5035">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5037">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5040">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e5050">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5059">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5062">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5069">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5070">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5072">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5075">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5082">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5086">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5089">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5096">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5100">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5103">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5117">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5120">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5131">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5134">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>)</a></li> - <li><a href="#d2e5144">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5161">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5164">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> - <li><a href="#d2e5174">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5191">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5194">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e5204">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5211">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5216">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5219">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e5229">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5249">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5252">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> - <li><a href="#d2e5262">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5273">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5284">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5287">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e5297">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5314">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5317">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e5327">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5334">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5335">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5337">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5340">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e5350">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5359">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5362">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5369">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5370">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4834">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4837">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4844">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4847">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} repositoryEntryVO">ns3:repositoryEntryVO</abbr>)</a></li> + <li><a href="#d2e4861">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4867">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} repositoryEntryVO">ns3:repositoryEntryVO</abbr>)</a></li> + <li><a href="#d2e4877">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4886">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4889">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4892">Status Code 200 - application/zip<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4902">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4905">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4918">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4919">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4921">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4924">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} authenticationVO">ns3:authenticationVO</abbr>)</a></li> + <li><a href="#d2e4934">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4941">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4944">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} authenticationVO">ns3:authenticationVO</abbr>)</a></li> + <li><a href="#d2e4954">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4968">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4971">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4974">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4982">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5000">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5001">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5003">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5006">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} authenticationVO">ns3:authenticationVO</abbr>)</a></li> + <li><a href="#d2e5016">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5030">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5033">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5036">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5047">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5062">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5078">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5096">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5116">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5119">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>)</a></li> + <li><a href="#d2e5129">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5146">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5149">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> + <li><a href="#d2e5159">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5176">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5179">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e5189">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5196">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5201">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5204">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e5214">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5234">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5237">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> + <li><a href="#d2e5247">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5258">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5269">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5272">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e5282">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5289">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5290">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5292">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5295">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e5305">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5322">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5325">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e5335">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5344">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5347">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5354">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5358">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5361">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5368">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> <li><a href="#d2e5372">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> <li><a href="#d2e5375">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5382">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5386">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5389">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5396">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5400">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5403">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5417">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5420">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5431">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5456">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5473">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5474">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5476">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5486">Status Code 406 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5496">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5513">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>)</a></li> - <li><a href="#d2e5523">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5534">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5537">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5540">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5547">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5548">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5550">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5553">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>)</a></li> - <li><a href="#d2e5563">Status Code 406 - application/xml, application/json (<abbr title="{http://www.example.com} errorVO">ns3:errorVO</abbr>)</a></li> - <li><a href="#d2e5573">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5584">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5587">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5597">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5605">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5620">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5621">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5623">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5633">Status Code 406 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5643">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5654">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5657">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5660">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5671">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5674">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5681">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5689">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5692">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5695">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5702">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5705">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5723">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5726">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>)</a></li> - <li><a href="#d2e5748">Status Code 200 - application/xml;pagingspec=1.0, application/json;pagingspec=1.0 (<abbr title="{http://www.example.com} groupInfoVO">ns3:groupInfoVO</abbr>)</a></li> - <li><a href="#d2e5758">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5771">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5774">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseVO">ns3:courseVO</abbr>)</a></li> - <li><a href="#d2e5788">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5791">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5794">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5802">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5820">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5823">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseConfigVO">ns3:courseConfigVO</abbr>)</a></li> - <li><a href="#d2e5833">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5840">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5860">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5863">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseConfigVO">ns3:courseConfigVO</abbr>)</a></li> - <li><a href="#d2e5873">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5884">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5887">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>)</a></li> - <li><a href="#d2e5890">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5905">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5908">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseVO">ns3:courseVO</abbr>)</a></li> - <li><a href="#d2e5918">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5927">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5930">Status Code 200 - application/zip<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5933">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5944">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5947">Status Code 200 - application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5950">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5961">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5964">Status Code 200 - application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5967">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5982">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5985">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>)</a></li> - <li><a href="#d2e5988">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5995">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5998">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6001">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6008">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6011">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6014">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6025">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6028">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>)</a></li> - <li><a href="#d2e6042">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6043">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6045">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>)</a></li> - <li><a href="#d2e6055">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6063">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6081">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6084">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6087">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6094">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6097">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>)</a></li> - <li><a href="#d2e6111">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6113">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6116">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>)</a></li> - <li><a href="#d2e6126">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6134">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6136">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>)</a></li> - <li><a href="#d2e6146">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6159">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6162">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>)</a></li> - <li><a href="#d2e6172">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6189">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6192">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> - <li><a href="#d2e6202">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6219">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6222">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e6232">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6239">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6244">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6247">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e6257">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6277">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6280">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> - <li><a href="#d2e6290">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6301">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6312">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6315">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e6325">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6342">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6345">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e6355">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6362">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6363">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6365">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6368">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e6378">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6387">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6390">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6397">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6398">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6400">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6403">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6410">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6414">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6417">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6424">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6428">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6431">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6445">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6448">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6455">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6456">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6457">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6458">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6459">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6462">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6467">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6468">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6471">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6476">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6477">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6480">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6485">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6486">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6489">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6490">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6492">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6493">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6498">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6499">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6500">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6501">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6502">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6505">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6510">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6511">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6512">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6515">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6520">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6521">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6522">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6525">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6530">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6531">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6532">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6535">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6536">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6538">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6539">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6542">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6543">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6546">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6547">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6551">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6562">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6565">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} assessableResultsVO">ns3:assessableResultsVO</abbr>)</a></li> - <li><a href="#d2e6575">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6583">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6604">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6607">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} assessableResultsVO">ns3:assessableResultsVO</abbr>)</a></li> - <li><a href="#d2e6617">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6631">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6634">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} assessableResultsVO">ns3:assessableResultsVO</abbr>)</a></li> - <li><a href="#d2e6644">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6651">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6652">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6654">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6657">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6660">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6677">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6680">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} assessableResultsVO">ns3:assessableResultsVO</abbr>)</a></li> - <li><a href="#d2e6690">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6713">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6714">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6717">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6734">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6735">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6745">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6758">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6765">Status Code 200 - image/jpeg<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6774">Status Code 200 - image/jpeg<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6782">Status Code 200 - text/html, application/xhtml+xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6789">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6806">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6807">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6810">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6821">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6822">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6828">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6829">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6837">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>)</a></li> - <li><a href="#d2e6858">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6861">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>)</a></li> - <li><a href="#d2e6871">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6878">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6881">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>)</a></li> - <li><a href="#d2e6891">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6898">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6901">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>)</a></li> - <li><a href="#d2e6911">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6919">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6940">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6943">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>)</a></li> - <li><a href="#d2e6961">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>)</a></li> - <li><a href="#d2e6971">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6991">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6994">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>)</a></li> - <li><a href="#d2e7004">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e7011">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e7012">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e7014">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e7017">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>)</a></li> - <li><a href="#d2e7027">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e7034">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e7045">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e7048">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>)</a></li> - <li><a href="#d2e7058">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e7066">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e7067">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e7069">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e7072">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>)</a></li> - <li><a href="#d2e7082">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e7093">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e7096">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>)</a></li> - <li><a href="#d2e7106">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e7113">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e7116">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>)</a></li> - <li><a href="#d2e7126">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e7137">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e7140">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>)</a></li> - <li><a href="#d2e7150">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5382">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5383">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5385">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5388">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5402">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5405">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5416">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5437">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5440">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e5450">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5464">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5489">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5515">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5518">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e5528">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5537">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5549">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5552">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e5562">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5578">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5581">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e5591">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5606">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5610">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5613">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e5623">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5634">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5663">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5666">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e5676">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5683">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5710">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5713">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e5723">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5751">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5759">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5762">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e5772">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5805">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5808">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e5818">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5832">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5855">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5858">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e5868">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5879">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5908">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5911">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e5921">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5956">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5959">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e5969">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5979">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5987">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5990">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e6000">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6011">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6037">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6040">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e6050">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6082">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6085">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e6095">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6110">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6127">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6130">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e6140">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6151">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6174">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6177">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e6187">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6216">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6219">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e6229">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6243">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6263">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6266">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e6276">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6294">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6297">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e6307">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6323">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6326">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e6336">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6350">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6370">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6373">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e6383">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6419">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6422">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e6432">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6464">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6467">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e6477">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6491">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6511">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6514">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e6524">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6554">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6557">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e6567">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6583">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6586">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e6596">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6610">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6630">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6633">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e6643">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6679">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6682">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e6692">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6724">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6727">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6730">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e6740">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6750">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6755">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6758">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e6768">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6775">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6779">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6782">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e6792">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6795">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6834">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6837">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6840">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} surveyConfigVO">ns3:surveyConfigVO</abbr>)</a></li> + <li><a href="#d2e6850">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6853">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6888">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6891">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6894">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} surveyConfigVO">ns3:surveyConfigVO</abbr>)</a></li> + <li><a href="#d2e6904">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6907">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6914">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6917">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} surveyConfigVO">ns3:surveyConfigVO</abbr>)</a></li> + <li><a href="#d2e6927">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6945">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6948">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6951">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} surveyConfigVO">ns3:surveyConfigVO</abbr>)</a></li> + <li><a href="#d2e6961">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6964">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6979">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6982">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6985">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} surveyConfigVO">ns3:surveyConfigVO</abbr>)</a></li> + <li><a href="#d2e6995">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6998">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e7005">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e7008">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} surveyConfigVO">ns3:surveyConfigVO</abbr>)</a></li> + <li><a href="#d2e7018">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e7047">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e7050">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e7053">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} testConfigVO">ns3:testConfigVO</abbr>)</a></li> + <li><a href="#d2e7063">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e7066">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e7092">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e7095">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e7098">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} testConfigVO">ns3:testConfigVO</abbr>)</a></li> + <li><a href="#d2e7108">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e7111">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e7118">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e7121">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} testConfigVO">ns3:testConfigVO</abbr>)</a></li> + <li><a href="#d2e7131">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </li> </ul> <h2 id="resources">Resources</h2> <div class="resource"> - <h3 id="d2e2">/auth</h3> + <h3 id="d2e2">/users/{identityKey}/folders</h3> <p>Description:<br> - Authenticate against OLAT Provider <P> - Initial Date: 7 apr. 2010 <br> + Initial Date: 16 déc. 2011 <br> </p> - <h6>Methods</h6> - <div class="methods"></div> - </div> - <div class="resource"> - <h3 id="d2e5">/auth/version</h3> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>identityKey</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The key of the user (IdentityImpl)</p> + </td> + </tr> + </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getVersion">GET</h4> - <p>Retrieves the version of the User Authentication Web Service</p> + <h4 id="http://www.example.com#getFolders">GET</h4> + <p>Retrieves a list of folders on a user base. All folders of groups + where the user is participant/tutor + all folders in course where + the user is a participant (owner, tutor or participant) + </p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e10">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e12">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} folderVOes">ns3:folderVOes</abbr>)</a></li> + <li><a href="#d2e22">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e20">/auth/{username}<span class="optional">?password</span></h3> + <h3 id="d2e25">/users/{identityKey}/folders/personal</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -1555,214 +1576,91 @@ </tr> <tr> <td> - <p><strong>username</strong></p> + <p><strong>identityKey</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The username</p> + <p>The key of the user (IdentityImpl)</p> + </td> + </tr> + <tr> + <td> + <p><strong>identityKey</strong></p> </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#login">GET</h4> - <p>Authenticates against OLAT Provider and provides a security token if - authentication is successful. The security token is returned as - a header named X-OLAT-TOKEN. Given that the password is sent in clear text and not encrypted, it is not advisable - to use this service over a none secure connection (https). - </p> - <h6>request query parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>password</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>The password (the password is in clear text, not encrypted)</p> - </td> - </tr> - </table> + <h4 id="http://www.example.com#listFiles">GET</h4> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e32">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e35">Status Code 200 - text/plain, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e45">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e29">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e30">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e31">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e32">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e33">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e48">/repo/entries<span class="optional">?start</span><span class="optional">&limit</span></h3> - <p>Description:<br> - This handles the repository entries - - <P> - Initial Date: 19.05.2009 <br> - </p> - <h6>Methods</h6> - <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getEntries">GET</h4> - <p>List all entries in the OLAT repository</p> - <h6>request query parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>start</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> - <p>Default: <tt>0</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>limit</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> - <p>Default: <tt>25</tt></p> - </td> - <td></td> - </tr> - </table> - <p><em>available response representations:</em></p> + <h4 id="http://www.example.com#postFileToRoot">POST</h4> + <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e58">Status Code 200 - text/plain, text/html, application/xml, application/json (<abbr title="{http://www.example.com} repositoryEntryVO">ns3:repositoryEntryVO</abbr>)</a></li> + <li><a href="#d2e36">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#getEntriesText">GET</h4> - <p>List all entries in the OLAT repository</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e72">Status Code 200 - text/plain, text/html, application/xml, application/json (<abbr title="{http://www.example.com} repositoryEntryVO">ns3:repositoryEntryVO</abbr>)</a></li> + <li><a href="#d2e41">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e42">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#putResource">PUT</h4> - <p>Import a resource in the repository</p> + <h4 id="http://www.example.com#postFile64ToRoot">POST</h4> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e86">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e45">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e103">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} repositoryEntryVO">ns3:repositoryEntryVO</abbr>)</a></li> - <li><a href="#d2e113">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e50">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e51">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e116">/repo/entries/version</h3> - <h6>Methods</h6> - <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getVersion">GET</h4> - <p>The version number of this web service</p> + <h4 id="http://www.example.com#putFileToRoot">PUT</h4> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e54">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e121">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e59">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e60">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e122">/repo/entries/search<span class="optional">?type</span><span class="optional">&author</span><span class="optional">&name</span><span class="optional">&myentries</span></h3> - <h6>Methods</h6> - <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#searchEntries">GET</h4> - <p>Search for repository entries, possible search attributes are name, author and type</p> - <h6>request query parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>type</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>Filter by the file resource type of the repository entry</p> - </td> - </tr> - <tr> - <td> - <p><strong>author</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>*</tt></p> - </td> - <td> - <p>Filter by the author's username</p> - </td> - </tr> - <tr> - <td> - <p><strong>name</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>*</tt></p> - </td> - <td> - <p>Filter by name of repository entry</p> - </td> - </tr> - <tr> - <td> - <p><strong>myentries</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>false</tt></p> - </td> - <td> - <p>Only search entries the requester owns</p> - </td> - </tr> - </table> + <h4 id="http://www.example.com#putFile64VOToRoot">PUT</h4> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e63">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e64">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e140">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} repositoryEntryVO">ns3:repositoryEntryVO</abbr>)</a></li> - <li><a href="#d2e150">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e66">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e67">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e153">/repo/entries/{repoEntryKey}</h3> - <p>Description:<br> - Repository entry resource - - <P> - Initial Date: 19.05.2009 <br> - </p> + <h3 id="d2e68">/users/{identityKey}/folders/personal/{path:.*}</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -1772,54 +1670,119 @@ </tr> <tr> <td> - <p><strong>repoEntryKey</strong></p> + <p><strong>identityKey</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The key of the user (IdentityImpl)</p> </td> - <td></td> + </tr> + <tr> + <td> + <p><strong>identityKey</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>path</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#deleteCourse">DELETE</h4> - <p>Delete a course by id</p> + <h4 id="http://www.example.com#listFiles">GET</h4> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e161">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e164">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e167">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e72">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e73">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e74">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e75">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e76">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#getById">GET</h4> - <p>get a resource in the repository</p> + <h4 id="http://www.example.com#postFileToFolder">POST</h4> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e79">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e174">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e177">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} repositoryEntryVO">ns3:repositoryEntryVO</abbr>)</a></li> + <li><a href="#d2e84">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e85">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e86">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#replaceResource">POST</h4> - <p>Replace a resource in the repository and update its display name. The implementation is - limited to CP. - </p> + <h4 id="http://www.example.com#postFile64ToFolder">POST</h4> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e191">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e89">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e197">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} repositoryEntryVO">ns3:repositoryEntryVO</abbr>)</a></li> - <li><a href="#d2e207">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e94">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e95">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e96">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#putFileToFolder">PUT</h4> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e99">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e104">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e105">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e106">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#putFile64ToFolder">PUT</h4> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e109">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e110">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e112">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e113">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#putFolders">PUT</h4> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e116">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e117">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#deleteItem">DELETE</h4> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e120">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e121">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e210">/repo/entries/{repoEntryKey}/file</h3> + <h3 id="d2e122">/users/{identityKey}/folders/personal/version</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -1829,64 +1792,38 @@ </tr> <tr> <td> - <p><strong>repoEntryKey</strong></p> + <p><strong>identityKey</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The key of the user (IdentityImpl)</p> </td> - <td></td> </tr> <tr> <td> - <p><strong>repoEntryKey</strong></p> + <p><strong>identityKey</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td></td> </tr> </table> <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getRepoFileById">GET</h4> - <p>Download the export zip file of a repository entry.</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e216">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e219">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e222">Status Code 200 - application/zip<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e232">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e235">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e238">/repo/courses/{courseId}/elements</h3> - <p>This interface provides course building capabilities from our REST API. - <p> - Initial Date: Feb 8, 2010 Time: 3:45:50 PM<br> - </p> - <h6>Methods</h6> - <div class="methods"></div> - </div> - <div class="resource"> - <h3 id="d2e241">/repo/courses/{courseId}/elements/version</h3> - <h6>Methods</h6> <div class="methods"> <div class="method"> <h4 id="http://www.example.com#getVersion">GET</h4> - <p>The version of the Course Elements Web Service</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e246">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e125">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e256">/repo/courses/{courseId}/elements/{nodeId}</h3> + <h3 id="d2e126">/users/{identityKey}/folders/course/{courseKey}/{courseNodeId}</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -1896,43 +1833,100 @@ </tr> <tr> <td> - <p><strong>nodeId</strong></p> + <p><strong>identityKey</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The node's id</p> + <p>The key of the user (IdentityImpl)</p> </td> </tr> <tr> <td> - <p><strong>courseId</strong></p> + <p><strong>courseKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>courseNodeId</strong></p> + </td> <td> - <p>The course resourceable's id</p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> + <td></td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getCourseNode">GET</h4> - <p>Retrieves metadata of the course node</p> + <h4 id="http://www.example.com#listFiles">GET</h4> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e131">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e132">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e133">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e134">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e135">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#postFileToRoot">POST</h4> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e138">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e143">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e144">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#postFile64ToRoot">POST</h4> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e147">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e152">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e153">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#putFileToRoot">PUT</h4> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e156">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e161">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e162">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#putFile64VOToRoot">PUT</h4> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e165">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e166">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e267">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e270">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e280">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e168">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e169">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e283">/repo/courses/{courseId}/elements/structure/{nodeId}</h3> + <h3 id="d2e170">/users/{identityKey}/folders/course/{courseKey}/{courseNodeId}/{path:.*}</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -1942,48 +1936,128 @@ </tr> <tr> <td> - <p><strong>nodeId</strong></p> + <p><strong>identityKey</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The node's id of this structure</p> + <p>The key of the user (IdentityImpl)</p> </td> </tr> <tr> <td> - <p><strong>courseId</strong></p> + <p><strong>courseKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>courseNodeId</strong></p> + </td> <td> - <p>The course resourceable's id</p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>path</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> + <td></td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#updateStructure">POST</h4> - <p>This updates a Structure Element onto a given course.</p> + <h4 id="http://www.example.com#listFiles">GET</h4> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e174">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e175">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e176">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e177">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e178">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#postFileToFolder">POST</h4> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e181">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e186">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e187">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e188">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#postFile64ToFolder">POST</h4> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e191">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e196">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e197">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e198">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#putFileToFolder">PUT</h4> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e201">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e206">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e207">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e208">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#putFile64ToFolder">PUT</h4> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e294">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e319">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e211">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e212">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e214">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e215">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#putFolders">PUT</h4> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e218">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e219">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#deleteItem">DELETE</h4> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e345">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e348">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e358">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e222">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e223">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e361">/repo/courses/{courseId}/elements/structure</h3> + <h3 id="d2e224">/users/{identityKey}/folders/course/{courseKey}/{courseNodeId}/version</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -1993,37 +2067,325 @@ </tr> <tr> <td> - <p><strong>courseId</strong></p> + <p><strong>identityKey</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The key of the user (IdentityImpl)</p> + </td> + </tr> + <tr> + <td> + <p><strong>courseKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td></td> </tr> + <tr> + <td> + <p><strong>courseNodeId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#attachStructurePost">POST</h4> - <p>This attaches a Structure Element onto a given course. The element will be - inserted underneath the supplied parentNodeId. - </p> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e367">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> + <h4 id="http://www.example.com#getVersion">GET</h4> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e379">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e382">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e392">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e227">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> - <div class="method"> - <h4 id="http://www.example.com#attachStructure">PUT</h4> - <p>This attaches a Structure Element onto a given course. The element will be - inserted underneath the supplied parentNodeId. - </p> + </div> + </div> + <div class="resource"> + <h3 id="d2e228">/users/{identityKey}/folders/group/{groupKey}</h3> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>identityKey</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The key of the user (IdentityImpl)</p> + </td> + </tr> + <tr> + <td> + <p><strong>groupKey</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> + </table> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#listFiles">GET</h4> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e232">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e233">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e234">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e235">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e236">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#postFileToRoot">POST</h4> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e239">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e244">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e245">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#postFile64ToRoot">POST</h4> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e248">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e253">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e254">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#putFileToRoot">PUT</h4> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e257">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e262">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e263">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#putFile64VOToRoot">PUT</h4> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e266">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e267">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e269">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e270">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e271">/users/{identityKey}/folders/group/{groupKey}/{path:.*}</h3> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>identityKey</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The key of the user (IdentityImpl)</p> + </td> + </tr> + <tr> + <td> + <p><strong>groupKey</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>path</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + </table> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#listFiles">GET</h4> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e275">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e276">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e277">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e278">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e279">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#postFileToFolder">POST</h4> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e282">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e287">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e288">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e289">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#postFile64ToFolder">POST</h4> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e292">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e297">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e298">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e299">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#putFileToFolder">PUT</h4> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e302">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e307">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e308">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e309">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#putFile64ToFolder">PUT</h4> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e312">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e313">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e315">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e316">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#putFolders">PUT</h4> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e319">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e320">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#deleteItem">DELETE</h4> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e323">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e324">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e325">/users/{identityKey}/folders/group/{groupKey}/version</h3> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>identityKey</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The key of the user (IdentityImpl)</p> + </td> + </tr> + <tr> + <td> + <p><strong>groupKey</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> + </table> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#getVersion">GET</h4> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e328">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e329">/repo/courses/{courseId}/elements/contact<span class="optional">?parentNodeId</span><span class="optional">&position</span><span class="optional">&shortTitle</span><span class="optional">&longTitle</span><span class="optional">&objectives</span><span class="optional">&visibilityExpertRules</span><span class="optional">&accessExpertRules</span><span class="optional">&coaches</span><span class="optional">&participants</span><span class="optional">&groups</span><span class="optional">&areas</span><span class="optional">&to</span><span class="optional">&defaultSubject</span><span class="optional">&defaultBody</span></h3> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> + </table> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#attachContact">PUT</h4> <h6>request query parameters</h6> <table> <tr> @@ -2099,97 +2461,54 @@ </tr> <tr> <td> - <p><strong>displayType</strong></p> + <p><strong>coaches</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>toc</tt></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>false</tt></p> </td> <td></td> </tr> - </table> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e408">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e411">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e421">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e424">/repo/courses/{courseId}/elements/singlepage/{nodeId}<span class="optional">?shortTitle</span><span class="optional">&longTitle</span><span class="optional">&objectives</span><span class="optional">&visibilityExpertRules</span><span class="optional">&accessExpertRules</span></h3> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>nodeId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>courseId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td></td> - </tr> - </table> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#updateSinglePage">POST</h4> - <p>This updates a Single Page Element onto a given course.</p> - <h6>request query parameters</h6> - <table> <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> + <td> + <p><strong>participants</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>false</tt></p> + </td> + <td></td> </tr> <tr> <td> - <p><strong>shortTitle</strong></p> + <p><strong>groups</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> </td> <td></td> </tr> <tr> <td> - <p><strong>longTitle</strong></p> + <p><strong>areas</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> </td> <td></td> </tr> <tr> <td> - <p><strong>objectives</strong></p> + <p><strong>to</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> </td> <td></td> </tr> <tr> <td> - <p><strong>visibilityExpertRules</strong></p> + <p><strong>defaultSubject</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> @@ -2198,7 +2517,7 @@ </tr> <tr> <td> - <p><strong>accessExpertRules</strong></p> + <p><strong>defaultBody</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> @@ -2206,21 +2525,79 @@ <td></td> </tr> </table> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e349">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e350">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#attachContactPost">POST</h4> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e353">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e370">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e371">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e372">/groups</h3> + <p>Description:<br> + This handles the learning groups. + + <P> + Initial Date: 23 mar. 2010 <br> + </p> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#createGroup">PUT</h4> + <p>Create a group.</p> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e436">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e379">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e380">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e440">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e443">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e453">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e382">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e385">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>)</a></li> + <li><a href="#d2e395">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#getGroupList">GET</h4> + <p>Return the list of all groups if you have group manager permission, or all + learning group that you particip with or owne. + </p> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e402">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>)</a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e412">/groups/version</h3> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#getVersion">GET</h4> + <p>Retrieves the version of the Group Web Service.</p> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e417">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e456">/repo/courses/{courseId}/elements/singlepage</h3> + <h3 id="d2e427">/groups/{groupKey}</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -2230,282 +2607,123 @@ </tr> <tr> <td> - <p><strong>courseId</strong></p> + <p><strong>groupKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The course resourceable's id</p> + <p>The key of the group</p> </td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#attachSinglePagePost">POST</h4> - <p>This attaches a Single Page Element onto a given course. The element will - be inserted underneath the supplied parentNodeId. - </p> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e464">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> + <h4 id="http://www.example.com#findById">GET</h4> + <p>Return the group specified by the key of the group.</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e493">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e496">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e506">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e435">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>)</a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#attachSinglePagePost">POST</h4> - <p>This attaches a Single Page Element onto a given course. The element will - be inserted underneath the supplied parentNodeId. - </p> + <h4 id="http://www.example.com#postGroup">POST</h4> + <p>Updates a group.</p> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e513">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e449">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e450">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e540">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e543">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e553">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e452">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e455">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>)</a></li> + <li><a href="#d2e465">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#attachSinglePage">PUT</h4> - <p>This attaches a Single Page Element onto a given course. The element will - be inserted underneath the supplied parentNodeId. - </p> - <h6>request query parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>parentNodeId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>The node's id which will be the parent of this single - page - </p> - </td> - </tr> - <tr> - <td> - <p><strong>position</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> - </td> - <td> - <p>The node's position relative to its sibling nodes (optional)</p> - </td> - </tr> - <tr> - <td> - <p><strong>shortTitle</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> - </td> - <td> - <p>The node short title</p> - </td> - </tr> - <tr> - <td> - <p><strong>longTitle</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> - </td> - <td> - <p>The node long title</p> - </td> - </tr> - <tr> - <td> - <p><strong>objectives</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> - </td> - <td> - <p>The node learning objectives</p> - </td> - </tr> - <tr> - <td> - <p><strong>visibilityExpertRules</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>The rules to view the node (optional)</p> - </td> - </tr> - <tr> - <td> - <p><strong>accessExpertRules</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>The rules to access the node (optional)</p> - </td> - </tr> - </table> + <h4 id="http://www.example.com#deleteGroup">DELETE</h4> + <p>Deletes the business group specified by the groupKey.</p> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e472">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e475">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e478">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e481">/groups/{groupKey}/configuration</h3> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>groupKey</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> + </table> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#postGroupConfiguration">POST</h4> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e581">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e485">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e589">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e592">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e602">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e487">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> - <div class="method"> - <h4 id="http://www.example.com#attachSinglePage">PUT</h4> - <p>This attaches a Single Page Element onto a given course. The element will - be inserted underneath the supplied parentNodeId. - </p> - <h6>request query parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>parentNodeId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>The node's id which will be the parent of this single - page - </p> - </td> - </tr> - <tr> - <td> - <p><strong>position</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> - </td> - <td> - <p>The node's position relative to its sibling nodes (optional)</p> - </td> - </tr> - <tr> - <td> - <p><strong>shortTitle</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> - </td> - <td> - <p>The node short title</p> - </td> - </tr> - <tr> - <td> - <p><strong>longTitle</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> - </td> - <td> - <p>The node long title</p> - </td> - </tr> - <tr> - <td> - <p><strong>objectives</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> - </td> - <td> - <p>The node learning objectives</p> - </td> - </tr> - <tr> - <td> - <p><strong>visibilityExpertRules</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>The rules to view the node (optional)</p> - </td> - </tr> - <tr> - <td> - <p><strong>accessExpertRules</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>The rules to access the node (optional)</p> - </td> - </tr> - <tr> - <td> - <p><strong>filename</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>The single page file name</p> - </td> - </tr> - <tr> - <td> - <p><strong>path</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td></td> - </tr> - </table> + </div> + </div> + <div class="resource"> + <h3 id="d2e488">/groups/{groupKey}/infos</h3> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>groupKey</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The key of the group</p> + </td> + </tr> + </table> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#getInformations">GET</h4> + <p>Returns the informations of the group specified by the groupKey.</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e635">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e638">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e648">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e496">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e499">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupInfoVO">ns3:groupInfoVO</abbr>)</a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e651">/repo/courses/{courseId}/elements/task/{nodeId}</h3> + <h3 id="d2e509">/groups/{groupKey}/owners</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -2515,47 +2733,65 @@ </tr> <tr> <td> - <p><strong>nodeId</strong></p> + <p><strong>groupKey</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The node's id of this task</p> + <p>The key of the group</p> </td> </tr> + </table> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#getTutors">GET</h4> + <p>Returns the list of owners of the group specified by the groupKey.</p> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e517">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e520">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>)</a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e530">/groups/{groupKey}/participants</h3> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> <tr> <td> - <p><strong>courseId</strong></p> + <p><strong>groupKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The course resourceable id</p> + <p>The key of the group</p> </td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#updateTask">POST</h4> - <p>This updates a Task Element onto a given course.</p> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e662">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> + <h4 id="http://www.example.com#getParticipants">GET</h4> + <p>Returns the list of participants of the group specified by the groupKey.</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e685">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e688">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e698">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e538">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e541">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>)</a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e701">/repo/courses/{courseId}/elements/task</h3> + <h3 id="d2e551">/groups/{groupKey}/owners/{identityKey}</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -2565,160 +2801,99 @@ </tr> <tr> <td> - <p><strong>courseId</strong></p> + <p><strong>groupKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The course resourceable id</p> + <p>The key of the group</p> + </td> + </tr> + <tr> + <td> + <p><strong>identityKey</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The user's id</p> </td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#attachTaskPost">POST</h4> - <p>This attaches a Task Element onto a given course. The element will be - inserted underneath the supplied parentNodeId. - </p> - <p><em>acceptable request representations:</em></p> + <h4 id="http://www.example.com#addTutor">PUT</h4> + <p>Adds an owner to the group.</p> + <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e709">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e562">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e565">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e568">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#removeTutor">DELETE</h4> + <p>Removes the owner from the group.</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e738">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e741">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e751">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e575">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e578">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e581">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e584">/groups/{groupKey}/owners/{identityKey}/new</h3> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>groupKey</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The key of the group</p> + </td> + </tr> + <tr> + <td> + <p><strong>identityKey</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The user's id</p> + </td> + </tr> + </table> + <h6>Methods</h6> + <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#attachTask">PUT</h4> - <p>This attaches a Task Element onto a given course. The element will be - inserted underneath the supplied parentNodeId. - </p> - <h6>request query parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>parentNodeId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>The node's id which will be the parent of this task</p> - </td> - </tr> - <tr> - <td> - <p><strong>position</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> - </td> - <td> - <p>The node's position relative to its sibling nodes (optional)</p> - </td> - </tr> - <tr> - <td> - <p><strong>shortTitle</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> - </td> - <td> - <p>The node short title</p> - </td> - </tr> - <tr> - <td> - <p><strong>longTitle</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> - </td> - <td> - <p>The node long title</p> - </td> - </tr> - <tr> - <td> - <p><strong>objectives</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> - </td> - <td> - <p>The node learning objectives</p> - </td> - </tr> - <tr> - <td> - <p><strong>visibilityExpertRules</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>The rules to view the node (optional)</p> - </td> - </tr> - <tr> - <td> - <p><strong>accessExpertRules</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>The rules to access the node (optional)</p> - </td> - </tr> - <tr> - <td> - <p><strong>text</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>The task node text</p> - </td> - </tr> - <tr> - <td> - <p><strong>points</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#float">float</a></em></p> - </td> - <td> - <p>The task node's possible points</p> - </td> - </tr> - </table> + <h4 id="http://www.example.com#addTutorPost">POST</h4> + <p>Fallback method for browser.</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e786">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e789">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e799">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e595">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e598">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e601">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e802">/repo/courses/{courseId}/elements/test/{nodeId}</h3> + <h3 id="d2e605">/groups/{groupKey}/owners/{identityKey}/delete</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -2728,43 +2903,43 @@ </tr> <tr> <td> - <p><strong>nodeId</strong></p> + <p><strong>groupKey</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The key of the group</p> </td> - <td></td> </tr> <tr> <td> - <p><strong>courseId</strong></p> + <p><strong>identityKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> - <td></td> + <td> + <p>The user's id</p> + </td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#updateTest">POST</h4> - <p>This updates a Test Element onto a given course.</p> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e809">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> + <h4 id="http://www.example.com#removeTutorPost">POST</h4> + <p>Fallback method for browser.</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e817">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e820">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e830">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e616">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e619">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e622">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e833">/repo/courses/{courseId}/elements/test</h3> + <h3 id="d2e625">/groups/{groupKey}/participants/{identityKey}</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -2774,151 +2949,53 @@ </tr> <tr> <td> - <p><strong>courseId</strong></p> + <p><strong>groupKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The course resourceable id</p> + <p>The key of the group</p> + </td> + </tr> + <tr> + <td> + <p><strong>identityKey</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The id of the user</p> </td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#attachTestPost">POST</h4> - <p>This attaches a Test Element onto a given course. The element will be - inserted underneath the supplied parentNodeId. - </p> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e841">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> + <h4 id="http://www.example.com#addParticipant">PUT</h4> + <p>Adds a participant to the group.</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e867">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e870">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e880">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e636">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e639">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e642">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#attachTest">PUT</h4> - <p>This attaches a Test Element onto a given course. The element will be - inserted underneath the supplied parentNodeId. - </p> - <h6>request query parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>parentNodeId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>The node's id which will be the parent of this test</p> - </td> - </tr> - <tr> - <td> - <p><strong>position</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> - </td> - <td> - <p>The test node's id which is retorned in the - response of the import test resource - </p> - </td> - </tr> - <tr> - <td> - <p><strong>shortTitle</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> - </td> - <td> - <p>The node's position relative to its sibling nodes (optional)</p> - </td> - </tr> - <tr> - <td> - <p><strong>longTitle</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> - </td> - <td> - <p>The node short title</p> - </td> - </tr> - <tr> - <td> - <p><strong>objectives</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> - </td> - <td> - <p>The node long title</p> - </td> - </tr> - <tr> - <td> - <p><strong>visibilityExpertRules</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>The node learning objectives</p> - </td> - </tr> - <tr> - <td> - <p><strong>accessExpertRules</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>The rules to view the node (optional)</p> - </td> - </tr> - <tr> - <td> - <p><strong>testResourceableId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The rules to access the node (optional)</p> - </td> - </tr> - </table> + <h4 id="http://www.example.com#removeParticipant">DELETE</h4> + <p>Removes a participant from the group.</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e912">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e915">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e925">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e649">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e652">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e655">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e929">/repo/courses/{courseId}/elements/assessment/{nodeId}</h3> + <h3 id="d2e658">/groups/{groupKey}/participants/{identityKey}/new</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -2928,47 +3005,43 @@ </tr> <tr> <td> - <p><strong>nodeId</strong></p> + <p><strong>groupKey</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The node's id of this assessment</p> + <p>The id of the group</p> </td> </tr> <tr> <td> - <p><strong>courseId</strong></p> + <p><strong>identityKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The course resourceable's id</p> + <p>The user's id</p> </td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#updateAssessment">POST</h4> - <p>Updates an assessment building block.</p> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e940">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> + <h4 id="http://www.example.com#addParticipantPost">POST</h4> + <p>Fallback method for browser.</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e957">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e960">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e970">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e669">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e672">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e675">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e973">/repo/courses/{courseId}/elements/assessment</h3> + <h3 id="d2e678">/groups/{groupKey}/participants/{identityKey}/delete</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -2978,35 +3051,108 @@ </tr> <tr> <td> - <p><strong>courseId</strong></p> + <p><strong>groupKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The course resourceable's id</p> + <p>The key of the group</p> + </td> + </tr> + <tr> + <td> + <p><strong>identityKey</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The id of the user</p> </td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#attachAssessmentPost">POST</h4> - <p>Attaches an assessment building block.</p> - <p><em>acceptable request representations:</em></p> + <h4 id="http://www.example.com#removeParticipantPost">POST</h4> + <p>Fallback method for browser.</p> + <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e981">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e689">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e692">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e695">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e698">/groups/{groupKey}/forum</h3> + <p>Description:<br> + Web service to manage a forum. + + <P> + Initial Date: 20 apr. 2010 <br> + </p> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>groupKey</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The key of the group</p> + </td> + </tr> + </table> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#getForum">GET</h4> + <p>Retrieves the forum.</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e1004">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1007">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e1017">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e708">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e711">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>)</a></li> + <li><a href="#d2e721">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e724">/groups/{groupKey}/forum/threads<span class="optional">?start</span><span class="optional">&limit</span><span class="optional">&orderBy</span><span class="optional">&asc</span></h3> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>groupKey</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The key of the group</p> + </td> + </tr> + </table> + <h6>Methods</h6> + <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#attachAssessment">PUT</h4> - <p>Attaches an assessment building block.</p> + <h4 id="http://www.example.com#getThreads">GET</h4> + <p>Retrieves the threads in the forum</p> <h6>request query parameters</h6> <table> <tr> @@ -3016,96 +3162,125 @@ </tr> <tr> <td> - <p><strong>parentNodeId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><strong>start</strong></p> </td> <td> - <p>The node's id which will be the parent of this assessment</p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> + <p>Default: <tt>0</tt></p> </td> + <td></td> </tr> <tr> <td> - <p><strong>position</strong></p> + <p><strong>limit</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> + <p>Default: <tt>25</tt></p> </td> - <td> - <p>The node's position relative to its sibling nodes (optional)</p> - </td> + <td></td> </tr> <tr> <td> - <p><strong>shortTitle</strong></p> + <p><strong>orderBy</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> + <p>Default: <tt>creationDate</tt></p> </td> <td> - <p>The node short title</p> + <p>(value name,creationDate)</p> </td> </tr> <tr> <td> - <p><strong>longTitle</strong></p> + <p><strong>asc</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>true</tt></p> </td> <td> - <p>The node long title</p> + <p>(value true/false)</p> </td> </tr> + </table> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e738">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e741">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> + <li><a href="#d2e751">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#newThreadToForum">PUT</h4> + <p>Creates a new thread in the forum of the course node</p> + <h6>request query parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> <tr> <td> - <p><strong>objectives</strong></p> + <p><strong>title</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> </td> <td> - <p>The node learning objectives</p> + <p>The title for the first post in the thread</p> </td> </tr> <tr> <td> - <p><strong>visibilityExpertRules</strong></p> + <p><strong>body</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> <td> - <p>The rules to view the node (optional)</p> + <p>The body for the first post in the thread</p> </td> </tr> <tr> <td> - <p><strong>accessExpertRules</strong></p> + <p><strong>authorKey</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The rules to access the node (optional)</p> + <p>The author user key (optional)</p> </td> </tr> </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e1046">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1049">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e1059">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e768">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e771">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e781">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#newThreadToForumPost">POST</h4> + <p>Creates a new thread in the forum of the course node</p> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e788">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e793">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e796">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e806">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e1062">/repo/courses/{courseId}/elements/wiki/{nodeId}</h3> + <h3 id="d2e809">/groups/{groupKey}/forum/posts/{threadKey}<span class="optional">?start</span><span class="optional">&limit</span><span class="optional">&orderBy</span><span class="optional">&asc</span></h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -3115,69 +3290,32 @@ </tr> <tr> <td> - <p><strong>nodeId</strong></p> + <p><strong>groupKey</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The node's id which of this wiki</p> + <p>The key of the group</p> </td> </tr> <tr> <td> - <p><strong>courseId</strong></p> + <p><strong>threadKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The course resourceable's id</p> - </td> - </tr> - </table> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#updateWiki">POST</h4> - <p>Attaches an wiki building block.</p> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e1073">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e1093">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1096">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e1106">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e1109">/repo/courses/{courseId}/elements/wiki<span class="optional">?parentNodeId</span><span class="optional">&position</span><span class="optional">&shortTitle</span><span class="optional">&longTitle</span><span class="optional">&objectives</span><span class="optional">&visibilityExpertRules</span><span class="optional">&accessExpertRules</span><span class="optional">&wikiResourceableId</span></h3> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>courseId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p>The key of the thread</p> </td> - <td></td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#attachWikiPost">POST</h4> - <p>Attaches an wiki building block.</p> + <h4 id="http://www.example.com#getMessages">GET</h4> + <p>Retrieves the messages in the thread</p> <h6>request query parameters</h6> <table> <tr> @@ -3187,90 +3325,124 @@ </tr> <tr> <td> - <p><strong>parentNodeId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>position</strong></p> + <p><strong>start</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> + <p>Default: <tt>0</tt></p> </td> <td></td> </tr> <tr> <td> - <p><strong>shortTitle</strong></p> + <p><strong>limit</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> + <p>Default: <tt>25</tt></p> </td> <td></td> </tr> <tr> <td> - <p><strong>longTitle</strong></p> + <p><strong>orderBy</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>objectives</strong></p> + <p>Default: <tt>creationDate</tt></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> + <p>(value name, creationDate)</p> </td> - <td></td> </tr> <tr> <td> - <p><strong>visibilityExpertRules</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><strong>asc</strong></p> </td> - <td></td> - </tr> - <tr> <td> - <p><strong>accessExpertRules</strong></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>true</tt></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>(value true/false)</p> </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>wikiResourceableId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td></td> </tr> </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e1124">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1127">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e1137">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e826">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e829">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> + <li><a href="#d2e839">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e842">/groups/{groupKey}/forum/posts/{messageKey}</h3> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>groupKey</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The key of the group</p> + </td> + </tr> + <tr> + <td> + <p><strong>messageKey</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The id of the reply message</p> + </td> + </tr> + </table> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#replyToPostPost">POST</h4> + <p>Creates a new reply in the forum of the course node</p> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e850">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e861">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e864">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e874">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#attachWiki">PUT</h4> - <p>Attaches an wiki building block.</p> + <h4 id="http://www.example.com#replyToPost">PUT</h4> + <p>Creates a new reply in the forum of the course node</p> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e881">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e882">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e884">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e887">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e897">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#replyToPost">PUT</h4> + <p>Creates a new reply in the forum of the course node</p> <h6>request query parameters</h6> <table> <tr> @@ -3280,91 +3452,49 @@ </tr> <tr> <td> - <p><strong>parentNodeId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>position</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>shortTitle</strong></p> + <p><strong>title</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>longTitle</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> + <p>The title for the first post in the thread</p> </td> - <td></td> </tr> <tr> <td> - <p><strong>objectives</strong></p> + <p><strong>body</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>visibilityExpertRules</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>The body for the first post in the thread</p> </td> - <td></td> </tr> <tr> <td> - <p><strong>accessExpertRules</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><strong>authorKey</strong></p> </td> - <td></td> - </tr> - <tr> <td> - <p><strong>wikiResourceableId</strong></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p>The author user key (optional)</p> </td> - <td></td> </tr> </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e1153">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1156">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e1166">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e914">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e917">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e927">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e1169">/repo/courses/{courseId}/elements/blog/{nodeId}</h3> + <h3 id="d2e930">/groups/{groupKey}/forum/posts/{messageKey}/attachments</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -3374,47 +3504,80 @@ </tr> <tr> <td> - <p><strong>nodeId</strong></p> + <p><strong>groupKey</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The node's id of this blog</p> + <p>The key of the group</p> </td> </tr> <tr> <td> - <p><strong>courseId</strong></p> + <p><strong>messageKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> - <td> - <p>The course resourceable's id</p> - </td> + <td></td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#updateBlog">POST</h4> - <p>Update an blog building block.</p> + <h4 id="http://www.example.com#getAttachments">GET</h4> + <p>Retrieves the attachments of the message</p> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e936">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e939">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#replyToPostAttachment">POST</h4> + <p>Upload the attachment of a message</p> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e946">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e950">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e953">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#replyToPostAttachment">POST</h4> + <p>Upload the attachment of a message</p> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e960">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e964">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e967">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#replyToPostAttachment">PUT</h4> + <p>Upload the attachment of a message</p> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e1180">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e974">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e975">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e1200">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1203">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e1213">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e977">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e980">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e1216">/repo/courses/{courseId}/elements/blog<span class="optional">?parentNodeId</span><span class="optional">&position</span><span class="optional">&shortTitle</span><span class="optional">&longTitle</span><span class="optional">&objectives</span><span class="optional">&visibilityExpertRules</span><span class="optional">&accessExpertRules</span><span class="optional">&repoEntry</span></h3> + <h3 id="d2e983">/groups/{groupKey}/forum/posts/{messageKey}/attachments/{filename}</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -3424,240 +3587,53 @@ </tr> <tr> <td> - <p><strong>courseId</strong></p> + <p><strong>groupKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The course resourceable's id</p> + <p>The key of the group</p> + </td> + </tr> + <tr> + <td> + <p><strong>filename</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The name of the attachment</p> + </td> + </tr> + <tr> + <td> + <p><strong>messageKey</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The identity key of the user being searched</p> </td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#attachBlogPost">POST</h4> - <p>Attaches an blog building block.</p> - <h6>request query parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>parentNodeId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>The node's id which will be the parent of this assessment</p> - </td> - </tr> - <tr> - <td> - <p><strong>position</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> - </td> - <td> - <p>The node's position relative to its sibling nodes (optional)</p> - </td> - </tr> - <tr> - <td> - <p><strong>shortTitle</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> - </td> - <td> - <p>The node short title</p> - </td> - </tr> - <tr> - <td> - <p><strong>longTitle</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> - </td> - <td> - <p>The node long title</p> - </td> - </tr> - <tr> - <td> - <p><strong>objectives</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> - </td> - <td> - <p>The node learning objectives</p> - </td> - </tr> - <tr> - <td> - <p><strong>visibilityExpertRules</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>The rules to view the node (optional)</p> - </td> - </tr> - <tr> - <td> - <p><strong>accessExpertRules</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>The rules to access the node (optional)</p> - </td> - </tr> - <tr> - <td> - <p><strong>repoEntry</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The softkey of the blog resourceable (optional)</p> - </td> - </tr> - </table> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e1249">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1252">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e1262">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#attachBlog">PUT</h4> - <p>Attaches an blog building block.</p> - <h6>request query parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>parentNodeId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>The node's id which will be the parent of this assessment</p> - </td> - </tr> - <tr> - <td> - <p><strong>position</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> - </td> - <td> - <p>The node's position relative to its sibling nodes (optional)</p> - </td> - </tr> - <tr> - <td> - <p><strong>shortTitle</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> - </td> - <td> - <p>The node short title</p> - </td> - </tr> - <tr> - <td> - <p><strong>longTitle</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> - </td> - <td> - <p>The node long title</p> - </td> - </tr> - <tr> - <td> - <p><strong>objectives</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> - </td> - <td> - <p>The node learning objectives</p> - </td> - </tr> - <tr> - <td> - <p><strong>visibilityExpertRules</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>The rules to view the node (optional)</p> - </td> - </tr> - <tr> - <td> - <p><strong>accessExpertRules</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>The rules to access the node (optional)</p> - </td> - </tr> - <tr> - <td> - <p><strong>repoEntry</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The softkey of the blog resourceable (optional)</p> - </td> - </tr> - </table> + <h4 id="http://www.example.com#getAttachment">GET</h4> + <p>Retrieves the attachment of the message</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e1294">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1297">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e1307">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e994">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e997">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e1310">/repo/courses/{courseId}/elements/survey/{nodeId}</h3> + <h3 id="d2e1000">/groups/{groupKey}/folder</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -3667,47 +3643,80 @@ </tr> <tr> <td> - <p><strong>nodeId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>The node's id which will be the parent of this assessment</p> - </td> - </tr> - <tr> - <td> - <p><strong>courseId</strong></p> + <p><strong>groupKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> - <td> - <p>The course resourceable's id</p> - </td> + <td></td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#attachSurveyPost">POST</h4> - <p>Attaches an survey building block.</p> + <h4 id="http://www.example.com#listFiles">GET</h4> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1004">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1005">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1006">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1007">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1008">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#postFileToRoot">POST</h4> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e1011">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1016">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1017">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#postFile64ToRoot">POST</h4> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e1020">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1025">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1026">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#putFileToRoot">PUT</h4> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e1029">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1034">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1035">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#putFile64VOToRoot">PUT</h4> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e1321">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1038">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1039">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e1341">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1344">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e1354">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1041">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1042">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e1357">/repo/courses/{courseId}/elements/survey<span class="optional">?parentNodeId</span><span class="optional">&position</span><span class="optional">&shortTitle</span><span class="optional">&longTitle</span><span class="optional">&objectives</span><span class="optional">&visibilityExpertRules</span><span class="optional">&accessExpertRules</span><span class="optional">&surveyResourceableId</span></h3> + <h3 id="d2e1043">/groups/{groupKey}/folder/{path:.*}</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -3717,124 +3726,200 @@ </tr> <tr> <td> - <p><strong>courseId</strong></p> + <p><strong>groupKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td></td> </tr> + <tr> + <td> + <p><strong>path</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#attachSurveyPost">POST</h4> - <p>Attaches an survey building block.</p> - <h6>request query parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>parentNodeId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>position</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>shortTitle</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> - </td> - <td> - <p>The node's position relative to its sibling nodes (optional)</p> - </td> - </tr> - <tr> - <td> - <p><strong>longTitle</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> - </td> - <td> - <p>The node short title</p> - </td> - </tr> - <tr> - <td> - <p><strong>objectives</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> - </td> - <td> - <p>The node long title</p> - </td> - </tr> - <tr> - <td> - <p><strong>visibilityExpertRules</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>The node learning objectives</p> - </td> - </tr> - <tr> - <td> - <p><strong>accessExpertRules</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>The rules to view the node (optional)</p> - </td> - </tr> - <tr> - <td> - <p><strong>surveyResourceableId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The rules to access the node (optional)</p> - </td> - </tr> - </table> + <h4 id="http://www.example.com#listFiles">GET</h4> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e1384">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1387">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e1397">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1047">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1048">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1049">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1050">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1051">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#attachSurvey">PUT</h4> - <p>Attaches an survey building block.</p> + <h4 id="http://www.example.com#postFileToFolder">POST</h4> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e1054">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1059">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1060">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1061">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#postFile64ToFolder">POST</h4> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e1064">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1069">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1070">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1071">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#putFileToFolder">PUT</h4> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e1074">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1079">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1080">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1081">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#putFile64ToFolder">PUT</h4> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e1084">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1085">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1087">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1088">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#putFolders">PUT</h4> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1091">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1092">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#deleteItem">DELETE</h4> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1095">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1096">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e1097">/groups/{groupKey}/folder/version</h3> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>groupKey</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> + </table> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#getVersion">GET</h4> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1100">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e1101">/groups/{groupKey}/wiki</h3> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>groupKey</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The key of the group</p> + </td> + </tr> + </table> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#exportWiki">GET</h4> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1107">application/zip<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1108">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e1109">/repo/courses/{courseId}/elements/folder</h3> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> + </table> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#getFolders">GET</h4> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1113">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1114">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#attachFolder">PUT</h4> <h6>request query parameters</h6> <table> <tr> @@ -3901,7 +3986,7 @@ </tr> <tr> <td> - <p><strong>accessExpertRules</strong></p> + <p><strong>downloadExpertRules</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> @@ -3910,25 +3995,36 @@ </tr> <tr> <td> - <p><strong>surveyResourceableId</strong></p> + <p><strong>uploadExpertRules</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> <td></td> </tr> </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e1413">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1416">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e1426">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1126">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1127">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#attachFolderPost">POST</h4> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e1130">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1140">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1141">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e1429">/repo/courses/{courseId}/elements/externalpage/{nodeId}</h3> + <h3 id="d2e1142">/repo/courses/{courseId}/elements/folder/{nodeId}</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -3938,14 +4034,21 @@ </tr> <tr> <td> - <p><strong>parentNodeId</strong></p> + <p><strong>courseId</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> + <td></td> + </tr> + <tr> <td> - <p>The node's id of this external page</p> + <p><strong>nodeId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> + <td></td> </tr> <tr> <td> @@ -3954,31 +4057,35 @@ <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> - <td> - <p>The course resourceable's id</p> - </td> + <td></td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#updateExternalPage">POST</h4> - <p>Update an external page building block.</p> + <h4 id="http://www.example.com#getFolder">GET</h4> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1147">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1148">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#updateFolder">POST</h4> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e1440">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1151">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e1460">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1463">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e1473">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1159">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1160">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e1476">/repo/courses/{courseId}/elements/externalpage<span class="optional">?parentNodeId</span><span class="optional">&position</span><span class="optional">&shortTitle</span><span class="optional">&longTitle</span><span class="optional">&objectives</span><span class="optional">&visibilityExpertRules</span><span class="optional">&accessExpertRules</span><span class="optional">&url</span></h3> + <h3 id="d2e1161">/repo/courses/{courseId}/elements/folder/{nodeId}/files</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -3993,33 +4100,306 @@ <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> + <td></td> + </tr> + <tr> <td> - <p>The course resourceable's id</p> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>nodeId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> + <td></td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#attachExternalPagePost">POST</h4> - <p>Attaches an external page building block.</p> - <h6>request query parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>parentNodeId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <h4 id="http://www.example.com#listFiles">GET</h4> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1166">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1167">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1168">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1169">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1170">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#postFileToRoot">POST</h4> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e1173">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1178">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1179">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#postFile64ToRoot">POST</h4> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e1182">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1187">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1188">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#putFileToRoot">PUT</h4> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e1191">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1196">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1197">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#putFile64VOToRoot">PUT</h4> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e1200">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1201">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1203">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1204">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e1205">/repo/courses/{courseId}/elements/folder/{nodeId}/files/{path:.*}</h3> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>nodeId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>path</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + </table> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#listFiles">GET</h4> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1209">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1210">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1211">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1212">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1213">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#postFileToFolder">POST</h4> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e1216">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1221">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1222">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1223">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#postFile64ToFolder">POST</h4> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e1226">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1231">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1232">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1233">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#putFileToFolder">PUT</h4> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e1236">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1241">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1242">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1243">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#putFile64ToFolder">PUT</h4> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e1246">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1247">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1249">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1250">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#putFolders">PUT</h4> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1253">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1254">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#deleteItem">DELETE</h4> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1257">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1258">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e1259">/repo/courses/{courseId}/elements/folder/{nodeId}/files/version</h3> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>nodeId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + </table> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#getVersion">GET</h4> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1262">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e1263">/repo/courses/{courseId}/elements/enrollment<span class="optional">?parentNodeId</span><span class="optional">&position</span><span class="optional">&shortTitle</span><span class="optional">&longTitle</span><span class="optional">&objectives</span><span class="optional">&visibilityExpertRules</span><span class="optional">&accessExpertRules</span><span class="optional">&groups</span><span class="optional">&cancelEnabled</span></h3> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> + </table> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#attachEnrolmment">PUT</h4> + <h6>request query parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>parentNodeId</strong></p> </td> <td> - <p>The node's id which will be the parent of this assessment</p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> + <td></td> </tr> <tr> <td> @@ -4028,9 +4408,7 @@ <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> </td> - <td> - <p>The node's position relative to its sibling nodes (optional)</p> - </td> + <td></td> </tr> <tr> <td> @@ -4040,9 +4418,7 @@ <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> <p>Default: <tt>undefined</tt></p> </td> - <td> - <p>The node short title</p> - </td> + <td></td> </tr> <tr> <td> @@ -4052,9 +4428,7 @@ <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> <p>Default: <tt>undefined</tt></p> </td> - <td> - <p>The node long title</p> - </td> + <td></td> </tr> <tr> <td> @@ -4064,9 +4438,7 @@ <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> <p>Default: <tt>undefined</tt></p> </td> - <td> - <p>The node learning objectives</p> - </td> + <td></td> </tr> <tr> <td> @@ -4075,9 +4447,7 @@ <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> - <td> - <p>The rules to view the node (optional)</p> - </td> + <td></td> </tr> <tr> <td> @@ -4086,32 +4456,109 @@ <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> - <td> - <p>The rules to access the node (optional)</p> - </td> + <td></td> </tr> <tr> <td> - <p><strong>url</strong></p> + <p><strong>groups</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> - <td> - <p>The URL of the external page</p> + <td></td> + </tr> + <tr> + <td> + <p><strong>cancelEnabled</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>false</tt></p> </td> + <td></td> </tr> </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e1509">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1512">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e1522">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1277">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1278">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#attachExternalPage">PUT</h4> - <p>Attaches an external page building block.</p> + <h4 id="http://www.example.com#attachEnrollmenetPost">POST</h4> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e1281">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1292">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1293">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e1294">/repo/courses/{courseId}/elements/enrollment/{nodeId}/groups</h3> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>nodeId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> + </table> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#getGroups">GET</h4> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1299">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1300">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e1301">/repo/courses/infos<span class="optional">?start</span><span class="optional">&limit</span></h3> + <p>Description:<br> + + <P> + Initial Date: 7 févr. 2012 <br> + </p> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#getCourseInfoList">GET</h4> + <p>Get courses informations viewable by the authenticated user</p> <h6>request query parameters</h6> <table> <tr> @@ -4121,108 +4568,205 @@ </tr> <tr> <td> - <p><strong>parentNodeId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><strong>start</strong></p> </td> <td> - <p>The node's id which will be the parent of this assessment</p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> + <p>Default: <tt>0</tt></p> </td> + <td></td> </tr> <tr> <td> - <p><strong>position</strong></p> + <p><strong>limit</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> + <p>Default: <tt>25</tt></p> </td> - <td> - <p>The node's position relative to its sibling nodes (optional)</p> - </td> + <td></td> </tr> + </table> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1311">Status Code 200 - application/xml, application/json, application/json;pagingspec=1.0 (<abbr title="{http://www.example.com} courseVO">ns3:courseVO</abbr>)</a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e1321">/users</h3> + <p>This web service handles functionalities related to <code>User</code>.</p> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#create">PUT</h4> + <p>Creates and persists a new user entity</p> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e1328">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1329">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1331">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1341">Status Code 406 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1351">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#getUserListQuery">GET</h4> + <p>Search users and return them in a simple form (without user properties). User properties + can be added two the query parameters. If the authUsername and the authProvider are set, + the search is made only with these two parameters because they are sufficient to return + a single user. + </p> + <h6>request query parameters</h6> + <table> <tr> - <td> - <p><strong>shortTitle</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> - </td> - <td> - <p>The node short title</p> - </td> + <th>parameter</th> + <th>value</th> + <th>description</th> </tr> <tr> <td> - <p><strong>longTitle</strong></p> + <p><strong>login</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> </td> <td> - <p>The node long title</p> + <p>The login (search with like)</p> </td> </tr> <tr> <td> - <p><strong>objectives</strong></p> + <p><strong>authProvider</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> </td> <td> - <p>The node learning objectives</p> + <p>An authentication provider (optional)</p> </td> </tr> <tr> <td> - <p><strong>visibilityExpertRules</strong></p> + <p><strong>authUsername</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> <td> - <p>The rules to view the node (optional)</p> + <p>An specific username from the authentication provider</p> </td> </tr> + </table> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1368">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>)</a></li> + <li><a href="#d2e1378">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e1381">/users/{identityKey}</h3> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>identityKey</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The user key identifier of the user being searched</p> + </td> + </tr> + </table> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#delete">DELETE</h4> + <p>Delete an user from the system</p> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1389">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1392">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1395">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#update">POST</h4> + <p>Update an user</p> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e1402">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1403">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1405">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1408">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>)</a></li> + <li><a href="#d2e1418">Status Code 406 - application/xml, application/json (<abbr title="{http://www.example.com} errorVO">ns3:errorVO</abbr>)</a></li> + <li><a href="#d2e1428">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#findById">GET</h4> + <p>Retrieves an user given its unique key identifier</p> + <h6>request query parameters</h6> + <table> <tr> - <td> - <p><strong>accessExpertRules</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>The rules to access the node (optional)</p> - </td> + <th>parameter</th> + <th>value</th> + <th>description</th> </tr> <tr> <td> - <p><strong>url</strong></p> + <p><strong>withPortrait</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>false</tt></p> </td> <td> - <p>The URL of the external page</p> + <p>If true return the portrait as Base64 (default false)</p> </td> </tr> </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e1554">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1557">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1560">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e1570">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1439">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1442">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1452">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e1455">/users/version</h3> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#getVersion">GET</h4> + <p>The version of the User Web Service</p> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1460">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e1573">/repo/courses/{courseId}/elements/task/{nodeId}/file</h3> + <h3 id="d2e1470">/users/{identityKey}/roles</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -4232,16 +4776,7 @@ </tr> <tr> <td> - <p><strong>nodeId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>courseId</strong></p> + <p><strong>identityKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> @@ -4252,38 +4787,32 @@ <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#attachTaskFilePost">POST</h4> - <p>This attaches a Task file onto a given task element.</p> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e1580">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> + <h4 id="http://www.example.com#getRoles">GET</h4> + <p>Retrieves the roles of a user given its unique key identifier</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e1585">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1588">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e1598">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1476">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1479">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1482">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#attachTaskFile">PUT</h4> - <p>This attaches a Task file onto a given task element.</p> + <h4 id="http://www.example.com#updateRoles">POST</h4> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e1605">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1487">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1488">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e1609">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1612">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e1622">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1625">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1490">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1491">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e1629">/repo/courses/{courseId}/elements/task/{nodeId}/configuration<span class="optional">?enableAssignment</span><span class="optional">&taskAssignmentType</span><span class="optional">&taskAssignmentText</span><span class="optional">&enableTaskPreview</span><span class="optional">&enableTaskDeselect</span><span class="optional">&onlyOneUserPerTask</span><span class="optional">&enableDropbox</span><span class="optional">&enableDropboxConfirmationMail</span><span class="optional">&dropboxConfirmationText</span><span class="optional">&enableReturnbox</span><span class="optional">&enableScoring</span><span class="optional">&grantScoring</span><span class="optional">&scoreMin</span><span class="optional">&scoreMax</span><span class="optional">&grantPassing</span><span class="optional">&scorePassingThreshold</span><span class="optional">&enableCommentField</span><span class="optional">&commentForUser</span><span class="optional">&commentForCoaches</span><span class="optional">&enableSolution</span><span class="optional">&accessExpertRuleTask</span><span class="optional">&accessExpertRuleDropbox</span><span class="optional">&accessExpertRuleReturnbox</span><span class="optional">&accessExpertRuleScoring</span><span class="optional">&accessExpertRuleSolution</span></h3> + <h3 id="d2e1492">/users/{identityKey}/delete</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -4293,16 +4822,104 @@ </tr> <tr> <td> - <p><strong>nodeId</strong></p> + <p><strong>identityKey</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> - <td></td> + <td> + <p>The user key identifier</p> + </td> + </tr> + </table> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#deletePost">POST</h4> + <p>Fallback method for browsers</p> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1500">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1503">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1506">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e1509">/users/{identityKey}/portrait</h3> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> </tr> <tr> <td> - <p><strong>courseId</strong></p> + <p><strong>identityKey</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The identity key identifier of the user being searched</p> + </td> + </tr> + </table> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#getPortrait">GET</h4> + <p>Retrieves the portrait of an user</p> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1517">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1520">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#postPortrait">POST</h4> + <p>Upload the portrait of an user</p> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e1527">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1535">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1538">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1541">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#deletePortrait">DELETE</h4> + <p>Deletes the portrait of an user</p> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1548">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1551">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e1554">/users/{identityKey}/groups<span class="optional">?start</span><span class="optional">&limit</span></h3> + <p>Description:<br> + + <P> + Initial Date: 18 oct. 2011 <br> + </p> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>identityKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> @@ -4313,8 +4930,8 @@ <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#addTaskConfigurationPost">POST</h4> - <p>This attaches the run-time configuration onto a given task element.</p> + <h4 id="http://www.example.com#getUserGroupList">GET</h4> + <p>Return all groups of a user</p> <h6>request query parameters</h6> <table> <tr> @@ -4324,498 +4941,402 @@ </tr> <tr> <td> - <p><strong>enableAssignment</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>taskAssignmentType</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>taskAssignmentText</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>enableTaskPreview</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>enableTaskDeselect</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>onlyOneUserPerTask</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>enableDropbox</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>enableDropboxConfirmationMail</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>dropboxConfirmationText</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><strong>start</strong></p> </td> - <td></td> - </tr> - <tr> <td> - <p><strong>enableReturnbox</strong></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> + <p>Default: <tt>0</tt></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>The first result</p> </td> - <td></td> </tr> <tr> <td> - <p><strong>enableScoring</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p><strong>limit</strong></p> </td> - <td></td> - </tr> - <tr> <td> - <p><strong>grantScoring</strong></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> + <p>Default: <tt>25</tt></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>The maximum results</p> </td> - <td></td> </tr> + </table> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1569">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1572">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>)</a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e1582">/users/{identityKey}/groups/infos<span class="optional">?start</span><span class="optional">&limit</span></h3> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>identityKey</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> + </table> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#getUserGroupInfosList">GET</h4> + <p>Return all groups with information of a user. Paging is mandatory!</p> + <h6>request query parameters</h6> + <table> <tr> - <td> - <p><strong>scoreMin</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#float">float</a></em></p> - </td> - <td></td> + <th>parameter</th> + <th>value</th> + <th>description</th> </tr> <tr> <td> - <p><strong>scoreMax</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#float">float</a></em></p> + <p><strong>start</strong></p> </td> - <td></td> - </tr> - <tr> <td> - <p><strong>grantPassing</strong></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> + <p>Default: <tt>0</tt></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>The first result</p> </td> - <td></td> </tr> <tr> <td> - <p><strong>scorePassingThreshold</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#float">float</a></em></p> + <p><strong>limit</strong></p> </td> - <td></td> - </tr> - <tr> <td> - <p><strong>enableCommentField</strong></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> + <p>Default: <tt>25</tt></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>The maximum results</p> </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>commentForUser</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>commentForCoaches</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td></td> </tr> + </table> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1594">Status Code 200 - application/xml;pagingspec=1.0, application/json;pagingspec=1.0 (<abbr title="{http://www.example.com} groupInfoVO">ns3:groupInfoVO</abbr>)</a></li> + <li><a href="#d2e1604">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e1607">/repo/courses/{courseId}</h3> + <p>Description:<br> + This web service will handle the functionality related to <code>Course</code> + and its contents. + + <P> + Initial Date: 27 apr. 2010 <br> + </p> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The course resourceable's id</p> + </td> + </tr> + </table> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#findById">GET</h4> + <p>Get the metadatas of the course by id</p> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1617">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1620">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseVO">ns3:courseVO</abbr>)</a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#deleteCourse">DELETE</h4> + <p>Delete a course by id</p> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1634">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1637">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1640">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e1643">/repo/courses/{courseId}/version</h3> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The course resourceable's id</p> + </td> + </tr> + </table> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#getVersion">GET</h4> + <p>The version of the Course Web Service</p> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1648">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e1658">/repo/courses/{courseId}/configuration</h3> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The course resourceable's id</p> + </td> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The course resourceable's id</p> + </td> + </tr> + </table> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#getConfiguration">GET</h4> + <p>Get the configuration of the course</p> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1666">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1669">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseConfigVO">ns3:courseConfigVO</abbr>)</a></li> + <li><a href="#d2e1679">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#updateConfiguration">POST</h4> + <p>Update the course configuration</p> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e1686">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1706">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1709">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseConfigVO">ns3:courseConfigVO</abbr>)</a></li> + <li><a href="#d2e1719">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e1722">/repo/courses/{courseId}/authors</h3> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The course resourceable's id</p> + </td> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The course resourceable's id</p> + </td> + </tr> + </table> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#getAuthors">GET</h4> + <p>Get all owners and authors of the course</p> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e1730">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1733">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>)</a></li> + <li><a href="#d2e1736">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e1739">/repo/courses/{courseId}/publish<span class="optional">?locale</span></h3> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The course resourceable's id</p> + </td> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The course resourceable's id</p> + </td> + </tr> + </table> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#publishCourse">POST</h4> + <p>Publish the course.</p> + <h6>request query parameters</h6> + <table> <tr> - <td> - <p><strong>enableSolution</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - </td> - <td></td> + <th>parameter</th> + <th>value</th> + <th>description</th> </tr> <tr> <td> - <p><strong>accessExpertRuleTask</strong></p> + <p><strong>locale</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>accessExpertRuleDropbox</strong></p> - </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>The course locale</p> </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>accessExpertRuleReturnbox</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>accessExpertRuleScoring</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>accessExpertRuleSolution</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td></td> </tr> </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e1664">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1667">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1670">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} surveyConfigVO">ns3:surveyConfigVO</abbr>)</a></li> - <li><a href="#d2e1680">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1683">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1751">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1754">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseVO">ns3:courseVO</abbr>)</a></li> + <li><a href="#d2e1764">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e1767">/repo/courses/{courseId}/file</h3> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The course resourceable's id</p> + </td> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> + </table> + <h6>Methods</h6> + <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#addTaskConfiguration">PUT</h4> - <p>This attaches the run-time configuration onto a given task element.</p> - <h6>request query parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>enableAssignment</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>taskAssignmentType</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>taskAssignmentText</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>enableTaskPreview</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>enableTaskDeselect</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>onlyOneUserPerTask</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>enableDropbox</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>enableDropboxConfirmationMail</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>dropboxConfirmationText</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>enableReturnbox</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>enableScoring</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>grantScoring</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>scoreMin</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#float">float</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>scoreMax</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#float">float</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>grantPassing</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>scorePassingThreshold</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#float">float</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>enableCommentField</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>commentForUser</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>commentForCoaches</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>enableSolution</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>accessExpertRuleTask</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>accessExpertRuleDropbox</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>accessExpertRuleReturnbox</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>accessExpertRuleScoring</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>accessExpertRuleSolution</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td></td> - </tr> - </table> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e1718">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1721">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1724">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} surveyConfigVO">ns3:surveyConfigVO</abbr>)</a></li> - <li><a href="#d2e1734">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1737">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#getTaskConfiguration">GET</h4> - <p>Retrieves configuration of the task course node</p> + <h4 id="http://www.example.com#getRepoFileById">GET</h4> + <p>Export the course</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e1744">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1747">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} surveyConfigVO">ns3:surveyConfigVO</abbr>)</a></li> - <li><a href="#d2e1757">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1773">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1776">Status Code 200 - application/zip<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1779">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e1760">/repo/courses/{courseId}/elements/survey/{nodeId}/configuration<span class="optional">?allowCancel</span><span class="optional">&allowNavigation</span><span class="optional">&allowSuspend</span><span class="optional">&sequencePresentation</span><span class="optional">&showNavigation</span><span class="optional">&showQuestionTitle</span><span class="optional">&showSectionsOnly</span></h3> + <h3 id="d2e1782">/repo/courses/{courseId}/runstructure</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -4825,12 +5346,14 @@ </tr> <tr> <td> - <p><strong>nodeId</strong></p> + <p><strong>courseId</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The course resourceable's id</p> </td> - <td></td> </tr> <tr> <td> @@ -4839,205 +5362,27 @@ <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> - <td></td> + <td> + <p>The course resourceable's id</p> + </td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#addSurveyConfigurationPost">POST</h4> - <p>This attaches the run-time configuration onto a given survey element.</p> - <h6>request query parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>allowCancel</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>false</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>allowNavigation</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>false</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>allowSuspend</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>false</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>sequencePresentation</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>itemPage</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>showNavigation</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>true</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>showQuestionTitle</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>true</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>showSectionsOnly</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>false</tt></p> - </td> - <td></td> - </tr> - </table> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e1775">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1778">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1781">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} surveyConfigVO">ns3:surveyConfigVO</abbr>)</a></li> - <li><a href="#d2e1791">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1794">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#addSurveyConfiguration">PUT</h4> - <p>This attaches the run-time configuration onto a given survey element.</p> - <h6>request query parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>allowCancel</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>false</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>allowNavigation</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>false</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>allowSuspend</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>false</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>sequencePresentation</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>itemPage</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>showNavigation</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>true</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>showQuestionTitle</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>true</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>showSectionsOnly</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>false</tt></p> - </td> - <td></td> - </tr> - </table> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e1809">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1812">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1815">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} surveyConfigVO">ns3:surveyConfigVO</abbr>)</a></li> - <li><a href="#d2e1825">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1828">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#getSurveyConfiguration">GET</h4> - <p>Retrieves configuration of the survey course node</p> + <h4 id="http://www.example.com#findRunStructureById">GET</h4> + <p>Get the runstructure of the course by id</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e1835">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1838">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} surveyConfigVO">ns3:surveyConfigVO</abbr>)</a></li> - <li><a href="#d2e1848">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1790">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1793">Status Code 200 - application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1796">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e1851">/repo/courses/{courseId}/elements/test/{nodeId}/configuration<span class="optional">?allowCancel</span><span class="optional">&allowNavigation</span><span class="optional">&allowSuspend</span><span class="optional">&numAttempts</span><span class="optional">&sequencePresentation</span><span class="optional">&showNavigation</span><span class="optional">&showQuestionTitle</span><span class="optional">&showResultsAfterFinish</span><span class="optional">&showResultsDependendOnDate</span><span class="optional">&showResultsOnHomepage</span><span class="optional">&showScoreInfo</span><span class="optional">&showQuestionProgress</span><span class="optional">&showScoreProgress</span><span class="optional">&showSectionsOnly</span><span class="optional">&summaryPresentation</span><span class="optional">&startDate</span><span class="optional">&endDate</span></h3> + <h3 id="d2e1799">/repo/courses/{courseId}/editortreemodel</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -5047,12 +5392,14 @@ </tr> <tr> <td> - <p><strong>nodeId</strong></p> + <p><strong>courseId</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The course resourceable's id</p> </td> - <td></td> </tr> <tr> <td> @@ -5061,452 +5408,110 @@ <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> - <td></td> + <td> + <p>The course resourceable's id</p> + </td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#addTestConfigurationPost">POST</h4> - <p>This attaches the run-time configuration onto a given test element.</p> - <h6>request query parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>allowCancel</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>false</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>allowNavigation</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>false</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>allowSuspend</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>false</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>numAttempts</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> - <p>Default: <tt>0</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>sequencePresentation</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>itemPage</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>showNavigation</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>true</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>showQuestionTitle</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>true</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>showResultsAfterFinish</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>true</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>showResultsDependendOnDate</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>false</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>showResultsOnHomepage</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>false</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>showScoreInfo</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>true</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>showQuestionProgress</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>true</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>showScoreProgress</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>true</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>showSectionsOnly</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>false</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>summaryPresentation</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>summaryCompact</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>startDate</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>endDate</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td></td> - </tr> - </table> + <h4 id="http://www.example.com#findEditorTreeModelById">GET</h4> + <p>Get the editor tree model of the course by id</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e1877">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1880">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1883">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} testConfigVO">ns3:testConfigVO</abbr>)</a></li> - <li><a href="#d2e1893">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1896">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1807">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1810">Status Code 200 - application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1813">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e1817">/repo/courses/{courseId}/authors/{identityKey}</h3> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The course resourceable's id</p> + </td> + </tr> + <tr> + <td> + <p><strong>identityKey</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The user identifier</p> + </td> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The course resourceable's id</p> + </td> + </tr> + </table> + <h6>Methods</h6> + <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#addTestConfiguration">PUT</h4> - <p>This attaches the run-time configuration onto a given test element.</p> - <h6>request query parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>allowCancel</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>false</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>allowNavigation</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>false</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>allowSuspend</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>false</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>numAttempts</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> - <p>Default: <tt>0</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>sequencePresentation</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>itemPage</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>showNavigation</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>true</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>showQuestionTitle</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>true</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>showResultsAfterFinish</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>true</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>showResultsDependendOnDate</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>false</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>showResultsOnHomepage</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>false</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>showScoreInfo</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>true</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>showQuestionProgress</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>true</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>showScoreProgress</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>true</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>showSectionsOnly</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>false</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>summaryPresentation</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>summaryCompact</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>startDate</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>endDate</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td></td> - </tr> - </table> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e1922">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1925">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1928">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} testConfigVO">ns3:testConfigVO</abbr>)</a></li> - <li><a href="#d2e1938">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1941">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#getTestConfiguration">GET</h4> - <p>Retrieves configuration of the test course node</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e1948">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1951">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} testConfigVO">ns3:testConfigVO</abbr>)</a></li> - <li><a href="#d2e1961">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e1964">/groups</h3> - <p>Description:<br> - This handles the learning groups. - - <P> - Initial Date: 23 mar. 2010 <br> - </p> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#createGroup">PUT</h4> - <p>Create a group.</p> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e1971">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1972">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> + <h4 id="http://www.example.com#getAuthor">GET</h4> + <p>Get this specific author and owner of the course</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e1974">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e1977">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>)</a></li> - <li><a href="#d2e1987">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1828">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1831">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>)</a></li> + <li><a href="#d2e1834">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#getGroupList">GET</h4> - <p>Return the list of all groups if you have group manager permission, or all - learning group that you particip with or owne. - </p> + <h4 id="http://www.example.com#addAuthor">PUT</h4> + <p>Add an owner and author to the course</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e1994">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>)</a></li> + <li><a href="#d2e1841">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1844">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1847">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e2004">/groups/version</h3> - <h6>Methods</h6> - <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getVersion">GET</h4> - <p>Retrieves the version of the Group Web Service.</p> + <h4 id="http://www.example.com#removeAuthor">DELETE</h4> + <p>Remove an owner and author to the course</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2009">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1854">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1857">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1860">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e2019">/groups/{groupKey}</h3> + <h3 id="d2e1863">/repo/courses/{courseId}/groups</h3> + <p>Description:<br> + CourseGroupWebService + + <P> + Initial Date: 7 apr. 2010 <br> + </p> <h6>resource-wide template parameters</h6> <table> <tr> @@ -5516,55 +5521,54 @@ </tr> <tr> <td> - <p><strong>groupKey</strong></p> + <p><strong>courseId</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The key of the group</p> + <p>The course resourceable's id</p> + </td> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> + <td></td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#findById">GET</h4> - <p>Return the group specified by the key of the group.</p> + <h4 id="http://www.example.com#getGroupList">GET</h4> + <p>Lists all learn groups of the specified course.</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2027">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>)</a></li> + <li><a href="#d2e1871">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1874">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>)</a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#postGroup">POST</h4> - <p>Updates a group.</p> + <h4 id="http://www.example.com#putNewGroup">PUT</h4> + <p>Creates a new group for the course.</p> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e2041">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2042">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e2044">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2047">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>)</a></li> - <li><a href="#d2e2057">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1888">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1889">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#deleteGroup">DELETE</h4> - <p>Deletes the business group specified by the groupKey.</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2064">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2067">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2070">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1891">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>)</a></li> + <li><a href="#d2e1901">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e2073">/groups/{groupKey}/infos</h3> + <h3 id="d2e1904">/repo/courses/{courseId}/groups/version</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -5574,31 +5578,39 @@ </tr> <tr> <td> - <p><strong>groupKey</strong></p> + <p><strong>courseId</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The key of the group</p> + <p>The course resourceable's id</p> + </td> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> + <td></td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getInformations">GET</h4> - <p>Returns the informations of the group specified by the groupKey.</p> + <h4 id="http://www.example.com#getVersion">GET</h4> + <p>Retrieves the version of the Course Group Web Service.</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2081">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2084">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupInfoVO">ns3:groupInfoVO</abbr>)</a></li> + <li><a href="#d2e1909">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e2094">/groups/{groupKey}/owners</h3> + <h3 id="d2e1919">/repo/courses/{courseId}/groups/{groupKey}</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -5606,6 +5618,26 @@ <th>value</th> <th>description</th> </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The course resourceable's id</p> + </td> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> <tr> <td> <p><strong>groupKey</strong></p> @@ -5614,115 +5646,49 @@ <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The key of the group</p> + <p>The group's id</p> </td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getTutors">GET</h4> - <p>Returns the list of owners of the group specified by the groupKey.</p> + <h4 id="http://www.example.com#deleteGroup">DELETE</h4> + <p>Deletes the business group specified by the key of the group.</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2102">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2105">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>)</a></li> + <li><a href="#d2e1927">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1930">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1933">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e2115">/groups/{groupKey}/participants</h3> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>groupKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The key of the group</p> - </td> - </tr> - </table> - <h6>Methods</h6> - <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getParticipants">GET</h4> - <p>Returns the list of participants of the group specified by the groupKey.</p> + <h4 id="http://www.example.com#getGroup">GET</h4> + <p>Retrieves the metadata of the specified group.</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2123">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2126">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>)</a></li> + <li><a href="#d2e1940">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1943">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>)</a></li> </ul> </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e2136">/groups/{groupKey}/owners/{identityKey}</h3> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>groupKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The key of the group</p> - </td> - </tr> - <tr> - <td> - <p><strong>identityKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The user's id</p> - </td> - </tr> - </table> - <h6>Methods</h6> - <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#addTutor">PUT</h4> - <p>Adds an owner to the group.</p> - <p><em>available response representations:</em></p> + <h4 id="http://www.example.com#updateGroup">POST</h4> + <p>Updates the metadata for the specified group.</p> + <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e2147">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2150">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2153">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1957">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#removeTutor">DELETE</h4> - <p>Removes the owner from the group.</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2160">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2163">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2166">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1959">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1962">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>)</a></li> + <li><a href="#d2e1972">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e2169">/groups/{groupKey}/owners/{identityKey}/new</h3> + <h3 id="d2e1975">/repo/courses/{courseId}/groups/new</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -5732,89 +5698,50 @@ </tr> <tr> <td> - <p><strong>groupKey</strong></p> + <p><strong>courseId</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The key of the group</p> + <p>The course resourceable's id</p> </td> </tr> <tr> <td> - <p><strong>identityKey</strong></p> + <p><strong>courseId</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> - <td> - <p>The user's id</p> - </td> + <td></td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#addTutorPost">POST</h4> - <p>Fallback method for browser.</p> - <p><em>available response representations:</em></p> + <h4 id="http://www.example.com#postNewGroup">POST</h4> + <p>Fallback method for the browser.</p> + <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e2180">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2183">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2186">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1980">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e2189">/groups/{groupKey}/owners/{identityKey}/delete</h3> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>groupKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The key of the group</p> - </td> - </tr> - <tr> - <td> - <p><strong>identityKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The user's id</p> - </td> - </tr> - </table> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#removeTutorPost">POST</h4> - <p>Fallback method for browser.</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2200">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2203">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2206">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e1982">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>)</a></li> + <li><a href="#d2e1992">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e2210">/groups/{groupKey}/participants/{identityKey}</h3> + <h3 id="d2e1995">/repo/courses/{courseId}/groups/{groupKey}/forum</h3> + <p>Description:<br> + Web service to manage a forum. + + <P> + Initial Date: 20 apr. 2010 <br> + </p> <h6>resource-wide template parameters</h6> <table> <tr> @@ -5824,59 +5751,23 @@ </tr> <tr> <td> - <p><strong>groupKey</strong></p> + <p><strong>courseId</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The key of the group</p> + <p>The course resourceable's id</p> </td> </tr> <tr> <td> - <p><strong>identityKey</strong></p> + <p><strong>courseId</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> - <td> - <p>The id of the user</p> - </td> - </tr> - </table> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#addParticipant">PUT</h4> - <p>Adds a participant to the group.</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e2221">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2224">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2227">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#removeParticipant">DELETE</h4> - <p>Removes a participant from the group.</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e2234">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2237">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2240">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e2243">/groups/{groupKey}/participants/{identityKey}/new</h3> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> + <td></td> </tr> <tr> <td> @@ -5886,37 +5777,26 @@ <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The id of the group</p> - </td> - </tr> - <tr> - <td> - <p><strong>identityKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The user's id</p> + <p>The key of the group</p> </td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#addParticipantPost">POST</h4> - <p>Fallback method for browser.</p> + <h4 id="http://www.example.com#getForum">GET</h4> + <p>Retrieves the forum.</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2254">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2257">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2260">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2005">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2008">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>)</a></li> + <li><a href="#d2e2018">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e2263">/groups/{groupKey}/participants/{identityKey}/delete</h3> + <h3 id="d2e2021">/repo/courses/{courseId}/groups/{groupKey}/forum/threads<span class="optional">?start</span><span class="optional">&limit</span><span class="optional">&orderBy</span><span class="optional">&asc</span></h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -5926,90 +5806,23 @@ </tr> <tr> <td> - <p><strong>groupKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The key of the group</p> - </td> - </tr> - <tr> - <td> - <p><strong>identityKey</strong></p> + <p><strong>courseId</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The id of the user</p> + <p>The course resourceable's id</p> </td> </tr> - </table> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#removeParticipantPost">POST</h4> - <p>Fallback method for browser.</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e2274">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2277">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2280">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e2283">/groups/{groupKey}/forum</h3> - <p>Description:<br> - Web service to manage a forum. - - <P> - Initial Date: 20 apr. 2010 <br> - </p> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> <tr> <td> - <p><strong>groupKey</strong></p> + <p><strong>courseId</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> - <td> - <p>The key of the group</p> - </td> - </tr> - </table> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getForum">GET</h4> - <p>Retrieves the forum.</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e2293">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2296">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>)</a></li> - <li><a href="#d2e2306">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e2309">/groups/{groupKey}/forum/threads<span class="optional">?start</span><span class="optional">&limit</span><span class="optional">&orderBy</span><span class="optional">&asc</span></h3> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> + <td></td> </tr> <tr> <td> @@ -6082,9 +5895,9 @@ </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2323">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2326">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> - <li><a href="#d2e2336">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2035">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2038">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> + <li><a href="#d2e2048">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> @@ -6133,9 +5946,9 @@ </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2353">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2356">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e2366">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2065">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2068">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e2078">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> @@ -6143,19 +5956,19 @@ <p>Creates a new thread in the forum of the course node</p> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e2373">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2085">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2378">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2381">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e2391">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2090">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2093">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e2103">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e2394">/groups/{groupKey}/forum/posts/{threadKey}<span class="optional">?start</span><span class="optional">&limit</span><span class="optional">&orderBy</span><span class="optional">&asc</span></h3> + <h3 id="d2e2106">/repo/courses/{courseId}/groups/{groupKey}/forum/posts/{threadKey}<span class="optional">?start</span><span class="optional">&limit</span><span class="optional">&orderBy</span><span class="optional">&asc</span></h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -6163,6 +5976,26 @@ <th>value</th> <th>description</th> </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The course resourceable's id</p> + </td> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> <tr> <td> <p><strong>groupKey</strong></p> @@ -6245,15 +6078,15 @@ </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2411">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2414">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> - <li><a href="#d2e2424">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2123">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2126">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> + <li><a href="#d2e2136">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e2427">/groups/{groupKey}/forum/posts/{messageKey}</h3> + <h3 id="d2e2139">/repo/courses/{courseId}/groups/{groupKey}/forum/posts/{messageKey}</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -6261,6 +6094,26 @@ <th>value</th> <th>description</th> </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The course resourceable's id</p> + </td> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> <tr> <td> <p><strong>groupKey</strong></p> @@ -6291,13 +6144,28 @@ <p>Creates a new reply in the forum of the course node</p> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e2435">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2147">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e2158">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2161">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e2171">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#replyToPost">PUT</h4> + <p>Creates a new reply in the forum of the course node</p> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e2178">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2179">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2446">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2449">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e2459">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2181">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2184">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e2194">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> @@ -6346,30 +6214,15 @@ </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2476">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2479">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e2489">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#replyToPost">PUT</h4> - <p>Creates a new reply in the forum of the course node</p> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e2496">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2497">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e2499">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2502">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e2512">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2211">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2214">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e2224">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e2515">/groups/{groupKey}/forum/posts/{messageKey}/attachments</h3> + <h3 id="d2e2227">/repo/courses/{courseId}/groups/{groupKey}/forum/posts/{messageKey}/attachments</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -6377,6 +6230,26 @@ <th>value</th> <th>description</th> </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The course resourceable's id</p> + </td> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> <tr> <td> <p><strong>groupKey</strong></p> @@ -6405,22 +6278,21 @@ <p>Retrieves the attachments of the message</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2521">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2524">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2233">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2236">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#replyToPostAttachment">PUT</h4> + <h4 id="http://www.example.com#replyToPostAttachment">POST</h4> <p>Upload the attachment of a message</p> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e2531">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2532">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2243">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2534">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2537">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2247">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2250">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> @@ -6428,31 +6300,32 @@ <p>Upload the attachment of a message</p> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e2544">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2257">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2548">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2551">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2261">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2264">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#replyToPostAttachment">POST</h4> + <h4 id="http://www.example.com#replyToPostAttachment">PUT</h4> <p>Upload the attachment of a message</p> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e2558">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2271">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2272">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2562">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2565">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2274">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2277">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e2568">/groups/{groupKey}/forum/posts/{messageKey}/attachments/{filename}</h3> + <h3 id="d2e2280">/repo/courses/{courseId}/groups/{groupKey}/forum/posts/{messageKey}/attachments/{filename}</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -6460,6 +6333,26 @@ <th>value</th> <th>description</th> </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The course resourceable's id</p> + </td> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> <tr> <td> <p><strong>groupKey</strong></p> @@ -6501,14 +6394,14 @@ <p>Retrieves the attachment of the message</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2579">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2582">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2291">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2294">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e2585">/groups/{groupKey}/folder</h3> + <h3 id="d2e2297">/repo/courses/{courseId}/groups/{groupKey}/folder</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -6516,6 +6409,26 @@ <th>value</th> <th>description</th> </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The course resourceable's id</p> + </td> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> <tr> <td> <p><strong>groupKey</strong></p> @@ -6532,66 +6445,66 @@ <h4 id="http://www.example.com#listFiles">GET</h4> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2589">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2590">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2591">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2592">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2593">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2301">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2302">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2303">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2304">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2305">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> <h4 id="http://www.example.com#postFileToRoot">POST</h4> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e2596">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2308">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2601">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2602">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2313">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2314">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> <h4 id="http://www.example.com#postFile64ToRoot">POST</h4> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e2605">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2317">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2610">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2611">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2322">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2323">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> <h4 id="http://www.example.com#putFileToRoot">PUT</h4> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e2614">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2326">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2619">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2620">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2331">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2332">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> <h4 id="http://www.example.com#putFile64VOToRoot">PUT</h4> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e2623">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2624">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2335">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2336">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2626">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2627">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2338">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2339">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e2628">/groups/{groupKey}/folder/{path:.*}</h3> + <h3 id="d2e2340">/repo/courses/{courseId}/groups/{groupKey}/folder/{path:.*}</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -6599,6 +6512,26 @@ <th>value</th> <th>description</th> </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The course resourceable's id</p> + </td> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> <tr> <td> <p><strong>groupKey</strong></p> @@ -6624,85 +6557,85 @@ <h4 id="http://www.example.com#listFiles">GET</h4> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2632">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2633">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2634">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2635">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2636">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2344">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2345">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2346">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2347">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2348">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> <h4 id="http://www.example.com#postFileToFolder">POST</h4> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e2639">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2351">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2644">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2645">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2646">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2356">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2357">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2358">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> <h4 id="http://www.example.com#postFile64ToFolder">POST</h4> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e2649">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2361">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2654">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2655">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2656">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2366">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2367">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2368">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> <h4 id="http://www.example.com#putFileToFolder">PUT</h4> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e2659">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2371">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2664">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2665">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2666">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2376">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2377">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2378">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> <h4 id="http://www.example.com#putFile64ToFolder">PUT</h4> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e2669">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2670">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2381">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2382">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2672">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2673">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2384">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2385">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> <h4 id="http://www.example.com#putFolders">PUT</h4> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2676">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2677">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2388">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2389">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> <h4 id="http://www.example.com#deleteItem">DELETE</h4> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2680">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2681">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2392">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2393">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e2682">/groups/{groupKey}/folder/version</h3> + <h3 id="d2e2394">/repo/courses/{courseId}/groups/{groupKey}/folder/version</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -6712,33 +6645,23 @@ </tr> <tr> <td> - <p><strong>groupKey</strong></p> + <p><strong>courseId</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> - <td></td> + <td> + <p>The course resourceable's id</p> + </td> </tr> - </table> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getVersion">GET</h4> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e2685">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e2686">/groups/{groupKey}/wiki</h3> - <h6>resource-wide template parameters</h6> - <table> <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> </tr> <tr> <td> @@ -6747,91 +6670,142 @@ <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> - <td> - <p>The key of the group</p> - </td> + <td></td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#exportWiki">GET</h4> + <h4 id="http://www.example.com#getVersion">GET</h4> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2692">application/zip<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2693">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2397">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e2694">/repo/forums</h3> + <h3 id="d2e2398">/contacts<span class="optional">?start</span><span class="optional">&limit</span></h3> <p>Description:<br> - Web service to manage forums. <P> - Initial Date: 26 aug. 2010 <br> + Initial Date: 21 oct. 2011 <br> + </p> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#getMyContacts">GET</h4> + <p>Retrieve the contacts of the logged in identity.</p> + <h6>request query parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>start</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> + <p>Default: <tt>0</tt></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>limit</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> + <p>Default: <tt>25</tt></p> + </td> + <td></td> + </tr> + </table> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e2408">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e2411">/system</h3> + <p><h3>Description:</h3> + <p> + Initial Date: 18 jun. 2010 <br> </p> <h6>Methods</h6> <div class="methods"></div> </div> <div class="resource"> - <h3 id="d2e2697">/repo/forums/version</h3> + <h3 id="d2e2414">/system/environment</h3> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getVersion">GET</h4> - <p>The version of the Forum Web Service</p> + <h4 id="http://www.example.com#getEnvironnementXml">GET</h4> + <p>Return some informations about the environment.</p> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e2419">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} environmentVO">ns3:environmentVO</abbr>)</a></li> + <li><a href="#d2e2429">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e2432">/system/release</h3> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#getReleaseInfos">GET</h4> + <p>Return the version of the instance.</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2702">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2437">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} releaseVO">ns3:releaseVO</abbr>)</a></li> + <li><a href="#d2e2447">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e2712">/repo/forums/{forumKey}</h3> + <h3 id="d2e2450">/system/log</h3> <p>Description:<br> - Web service to manage a forum. + This web service returns logFiles <P> - Initial Date: 20 apr. 2010 <br> + Initial Date: 23.12.2011 <br> </p> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>forumKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The key of the forum</p> - </td> - </tr> - </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getForum">GET</h4> - <p>Retrieves the forum.</p> + <h4 id="http://www.example.com#getCurrentLogFile">GET</h4> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2722">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2725">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>)</a></li> - <li><a href="#d2e2735">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2455">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2456">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e2738">/repo/forums/{forumKey}/threads<span class="optional">?start</span><span class="optional">&limit</span><span class="optional">&orderBy</span><span class="optional">&asc</span></h3> + <h3 id="d2e2457">/system/log/version</h3> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#getVersion">GET</h4> + <p>The version of the Log Web Service</p> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e2462">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e2472">/system/log/{date}</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -6841,296 +6815,255 @@ </tr> <tr> <td> - <p><strong>forumKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p><strong>date</strong></p> </td> <td> - <p>The key of the forum</p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> + <td></td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getThreads">GET</h4> - <p>Retrieves the threads in the forum</p> - <h6>request query parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>start</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> - <p>Default: <tt>0</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>limit</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> - <p>Default: <tt>25</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>orderBy</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>creationDate</tt></p> - </td> - <td> - <p>(value name,creationDate)</p> - </td> - </tr> - <tr> - <td> - <p><strong>asc</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>true</tt></p> - </td> - <td> - <p>(value true/false)</p> - </td> - </tr> - </table> + <h4 id="http://www.example.com#getLogFileByDate">GET</h4> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2752">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2755">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> - <li><a href="#d2e2765">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2476">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2477">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e2478">/system/monitoring</h3> + <h6>Methods</h6> + <div class="methods"></div> + </div> + <div class="resource"> + <h3 id="d2e2479">/system/monitoring/configuration</h3> + <h6>Methods</h6> + <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#newThreadToForum">PUT</h4> - <p>Creates a new thread in the forum of the course node</p> - <h6>request query parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>title</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>The title for the first post in the thread</p> - </td> - </tr> - <tr> - <td> - <p><strong>body</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>The body for the first post in the thread</p> - </td> - </tr> - <tr> - <td> - <p><strong>authorKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The author user key (optional)</p> - </td> - </tr> - </table> + <h4 id="http://www.example.com#getImplementedProbes">GET</h4> + <p>Return the configuration of the monitoring, which probes are available, + which dependency... + </p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2782">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2785">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e2795">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2484">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} releaseVO">ns3:releaseVO</abbr>)</a></li> + <li><a href="#d2e2494">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e2497">/system/monitoring/runtime</h3> + <h6>Methods</h6> + <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#newThreadToForumPost">POST</h4> - <p>Creates a new thread in the forum of the course node</p> - <p><em>acceptable request representations:</em></p> + <h4 id="http://www.example.com#getSystemSummaryVO">GET</h4> + <p>Return the statistics about runtime: uptime, classes loaded, memory + summary, threads count... + </p> + <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2802">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2502">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} runtimeVO">ns3:runtimeVO</abbr>)</a></li> + <li><a href="#d2e2512">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e2515">/system/monitoring/runtime/classes</h3> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#getCompilationXml">GET</h4> + <p>Return some informations about the number of Java classes...</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2807">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2810">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e2820">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2520">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} classesVO">ns3:classesVO</abbr>)</a></li> + <li><a href="#d2e2530">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e2823">/repo/forums/{forumKey}/posts/{threadKey}<span class="optional">?start</span><span class="optional">&limit</span><span class="optional">&orderBy</span><span class="optional">&asc</span></h3> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>forumKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The key of the forum</p> - </td> - </tr> - <tr> - <td> - <p><strong>threadKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The key of the thread</p> - </td> - </tr> - </table> + <h3 id="d2e2533">/system/monitoring/runtime/memory</h3> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getMessages">GET</h4> - <p>Retrieves the messages in the thread</p> - <h6>request query parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>start</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> - <p>Default: <tt>0</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>limit</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> - <p>Default: <tt>25</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>orderBy</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>creationDate</tt></p> - </td> - <td> - <p>(value name, creationDate)</p> - </td> - </tr> - <tr> - <td> - <p><strong>asc</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>true</tt></p> - </td> - <td> - <p>(value true/false)</p> - </td> - </tr> - </table> + <h4 id="http://www.example.com#getMemoryStatistics">GET</h4> + <p>Return the statistics about memory</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2840">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2843">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> - <li><a href="#d2e2853">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2538">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} runtimeVO">ns3:runtimeVO</abbr>)</a></li> + <li><a href="#d2e2548">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e2856">/repo/forums/{forumKey}/posts/{messageKey}</h3> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>forumKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The key of the forum</p> - </td> - </tr> - <tr> - <td> - <p><strong>messageKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The id of the reply message</p> - </td> - </tr> - </table> + <h3 id="d2e2551">/system/monitoring/runtime/threads</h3> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#replyToPostPost">POST</h4> - <p>Creates a new reply in the forum of the course node</p> - <p><em>acceptable request representations:</em></p> + <h4 id="http://www.example.com#getThreadStatistics">GET</h4> + <p>Return the statistics about threads</p> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e2556">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} runtimeVO">ns3:runtimeVO</abbr>)</a></li> + <li><a href="#d2e2566">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e2569">/system/monitoring/database</h3> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#getDatabaseStatistics">GET</h4> + <p>Return the statistics about database and hibernate</p> + <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2864">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2574">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} runtimeVO">ns3:runtimeVO</abbr>)</a></li> + <li><a href="#d2e2584">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e2587">/system/monitoring/openolat</h3> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#getStatistics">GET</h4> + <p>Return the statistics about OpenOLAT, users count, courses count...</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2875">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2878">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e2888">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2592">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} releaseVO">ns3:releaseVO</abbr>)</a></li> + <li><a href="#d2e2602">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e2605">/system/monitoring/openolat/users</h3> + <h6>Methods</h6> + <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#replyToPost">PUT</h4> - <p>Creates a new reply in the forum of the course node</p> + <h4 id="http://www.example.com#getUserStatistics">GET</h4> + <p>Return the statistics about OpenOLAT users</p> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e2610">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} releaseVO">ns3:releaseVO</abbr>)</a></li> + <li><a href="#d2e2620">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e2623">/system/monitoring/openolat/repository</h3> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#getRepositoryStatistics">GET</h4> + <p>Return the statistics about the repository, courses count, published courses...</p> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e2628">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} releaseVO">ns3:releaseVO</abbr>)</a></li> + <li><a href="#d2e2638">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e2641">/system/monitoring/openolat/indexer</h3> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#getIndexerStatistics">GET</h4> + <p>Return the statistics about the indexer</p> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e2646">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} releaseVO">ns3:releaseVO</abbr>)</a></li> + <li><a href="#d2e2656">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e2659">/system/monitoring/openolat/sessions</h3> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#getSessions">GET</h4> + <p>Return some statistics about session.</p> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e2664">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} sessionVO">ns3:sessionVO</abbr>)</a></li> + <li><a href="#d2e2674">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e2677">/system/monitoring/memory</h3> + <p><h3>Description:</h3> + + Initial Date: 21 juin 2010 <br> + </p> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#getMemory">GET</h4> + <p>Return informations about memory.</p> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e2684">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2687">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#getMemoryXml">GET</h4> + <p>Return some informations about memory.</p> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e2694">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} memoryVO">ns3:memoryVO</abbr>)</a></li> + <li><a href="#d2e2704">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e2707">/system/monitoring/memory/pools</h3> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#getMemoryPools">GET</h4> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e2710">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#getMemoryPoolsXml">GET</h4> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e2713">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2714">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e2715">/system/monitoring/memory/samples<span class="optional">?from</span><span class="optional">&to</span><span class="optional">&lastSamples</span></h3> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#getSamplesXml">GET</h4> <h6>request query parameters</h6> <table> <tr> @@ -7140,64 +7073,87 @@ </tr> <tr> <td> - <p><strong>title</strong></p> + <p><strong>from</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> - <td> - <p>The title for the first post in the thread</p> - </td> + <td></td> </tr> <tr> <td> - <p><strong>body</strong></p> + <p><strong>to</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> - <td> - <p>The body for the first post in the thread</p> - </td> + <td></td> </tr> <tr> <td> - <p><strong>authorKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p><strong>lastSamples</strong></p> </td> <td> - <p>The author user key (optional)</p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> </td> + <td></td> </tr> </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2905">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2908">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e2918">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2722">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2723">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e2724">/system/monitoring/threads</h3> + <p><h3>Description:</h3> + + Initial Date: 21 juin 2010 <br> + </p> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#getThreads">GET</h4> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e2729">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#replyToPost">PUT</h4> - <p>Creates a new reply in the forum of the course node</p> - <p><em>acceptable request representations:</em></p> + <h4 id="http://www.example.com#getThreadsXml">GET</h4> + <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2925">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2926">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2732">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2733">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e2734">/system/monitoring/threads/cpu</h3> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#getThreadsCpu">GET</h4> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2928">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2931">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e2941">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2737">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2738">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e2944">/repo/forums/{forumKey}/posts/{messageKey}/attachments</h3> + <h3 id="d2e2739">/repo/courses/{courseId}/elements/forum</h3> + <p>Description:<br> + REST API implementation for forum course node + + <P> + Initial Date: 20.12.2010 <br> + </p> <h6>resource-wide template parameters</h6> <table> <tr> @@ -7207,18 +7163,7 @@ </tr> <tr> <td> - <p><strong>forumKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The key of the forum</p> - </td> - </tr> - <tr> - <td> - <p><strong>messageKey</strong></p> + <p><strong>courseId</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> @@ -7229,124 +7174,247 @@ <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getAttachments">GET</h4> - <p>Retrieves the attachments of the message</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e2950">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2953">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#replyToPostAttachment">PUT</h4> - <p>Upload the attachment of a message</p> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e2960">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2961">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> + <h4 id="http://www.example.com#getForums">GET</h4> + <p>Retrieves metadata of the published course node</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2963">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2966">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2747">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2750">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVOes">ns3:forumVOes</abbr>)</a></li> + <li><a href="#d2e2760">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#replyToPostAttachment">POST</h4> - <p>Upload the attachment of a message</p> + <h4 id="http://www.example.com#attachForumPost">POST</h4> + <p>This attaches a Forum Element onto a given course. The element will be + inserted underneath the supplied parentNodeId. + </p> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e2973">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2767">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e2977">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2980">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2779">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2782">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e2792">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#replyToPostAttachment">POST</h4> - <p>Upload the attachment of a message</p> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e2987">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e2991">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e2994">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e2997">/repo/forums/{forumKey}/posts/{messageKey}/attachments/{filename}</h3> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> + <h4 id="http://www.example.com#attachForum">PUT</h4> + <p>This attaches a Forum Element onto a given course. The element will be + inserted underneath the supplied parentNodeId. + </p> + <h6>request query parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>parentNodeId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>position</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>shortTitle</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>longTitle</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>objectives</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>visibilityExpertRules</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>accessExpertRules</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>moderatorExpertRules</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>posterExpertRules</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>readerExpertRules</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + </table> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e2810">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2813">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e2823">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e2826">/repo/courses/{courseId}/elements/forum/{nodeId}</h3> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> <th>value</th> <th>description</th> </tr> <tr> <td> - <p><strong>forumKey</strong></p> + <p><strong>courseId</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> - <td> - <p>The key of the forum</p> - </td> + <td></td> </tr> <tr> <td> - <p><strong>filename</strong></p> + <p><strong>nodeId</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> <td> - <p>The name of the attachment</p> + <p>The node's id</p> </td> </tr> <tr> <td> - <p><strong>messageKey</strong></p> + <p><strong>courseId</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The identity key of the user being searched</p> + <p>The course resourceable's id</p> </td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getAttachment">GET</h4> - <p>Retrieves the attachment of the message</p> + <h4 id="http://www.example.com#getForum">GET</h4> + <p>Retrieves metadata of the published course node</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e3008">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3011">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2837">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2840">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>)</a></li> + <li><a href="#d2e2850">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e3014">/repo/courses/infos<span class="optional">?start</span><span class="optional">&limit</span></h3> - <p>Description:<br> - - <P> - Initial Date: 7 févr. 2012 <br> - </p> + <h3 id="d2e2853">/repo/courses/{courseId}/elements/forum/{nodeId}/thread<span class="optional">?title</span><span class="optional">&body</span><span class="optional">&identityName</span><span class="optional">&sticky</span></h3> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>nodeId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The id of the course node.</p> + </td> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The id of the course.</p> + </td> + </tr> + </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getCourseInfoList">GET</h4> - <p>Get courses informations viewable by the authenticated user</p> + <h4 id="http://www.example.com#newThreadToForum">PUT</h4> + <p>Creates a new thread in the forum of the course node</p> <h6>request query parameters</h6> <table> <tr> @@ -7356,107 +7424,173 @@ </tr> <tr> <td> - <p><strong>start</strong></p> + <p><strong>title</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> - <p>Default: <tt>0</tt></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The title for the first post in the thread</p> </td> - <td></td> </tr> <tr> <td> - <p><strong>limit</strong></p> + <p><strong>body</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> - <p>Default: <tt>25</tt></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The body for the first post in the thread</p> + </td> + </tr> + <tr> + <td> + <p><strong>identityName</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The author identity name (optional)</p> + </td> + </tr> + <tr> + <td> + <p><strong>sticky</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + </td> + <td> + <p>Creates sticky thread.</p> </td> - <td></td> </tr> </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e3024">Status Code 200 - application/xml, application/json, application/json;pagingspec=1.0 (<abbr title="{http://www.example.com} courseVO">ns3:courseVO</abbr>)</a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e3034">/system</h3> - <p><h3>Description:</h3> - <p> - Initial Date: 18 jun. 2010 <br> - </p> - <h6>Methods</h6> - <div class="methods"></div> - </div> - <div class="resource"> - <h3 id="d2e3037">/system/environment</h3> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getEnvironnementXml">GET</h4> - <p>Return some informations about the environment.</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e3042">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} environmentVO">ns3:environmentVO</abbr>)</a></li> - <li><a href="#d2e3052">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e3055">/system/release</h3> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getReleaseInfos">GET</h4> - <p>Return the version of the instance.</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e3060">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} releaseVO">ns3:releaseVO</abbr>)</a></li> - <li><a href="#d2e3070">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2877">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2880">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e2890">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e3073">/system/log</h3> - <p>Description:<br> - This web service returns logFiles - - <P> - Initial Date: 23.12.2011 <br> - </p> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getCurrentLogFile">GET</h4> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e3078">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3079">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e3080">/system/log/version</h3> + <h3 id="d2e2893">/repo/courses/{courseId}/elements/forum/{nodeId}/message<span class="optional">?parentMessageId</span><span class="optional">&title</span><span class="optional">&body</span><span class="optional">&identityName</span></h3> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>nodeId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The id of the course node.</p> + </td> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The id of the course.</p> + </td> + </tr> + </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getVersion">GET</h4> - <p>The version of the Log Web Service</p> + <h4 id="http://www.example.com#newMessageToForum">PUT</h4> + <p>Creates a new forum message in the forum of the course node</p> + <h6>request query parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>parentMessageId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The id of the parent message.</p> + </td> + </tr> + <tr> + <td> + <p><strong>title</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The title for the first post in the thread</p> + </td> + </tr> + <tr> + <td> + <p><strong>body</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The body for the first post in the thread</p> + </td> + </tr> + <tr> + <td> + <p><strong>identityName</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The author identity name (optional)</p> + </td> + </tr> + </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e3085">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2917">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2920">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e2930">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e3095">/system/log/{date}</h3> + <h3 id="d2e2933">/repo/courses/{courseId}/elements/forum/{nodeId}/forum</h3> + <p>Description:<br> + Web service to manage a forum. + + <P> + Initial Date: 20 apr. 2010 <br> + </p> <h6>resource-wide template parameters</h6> <table> <tr> @@ -7466,7 +7600,25 @@ </tr> <tr> <td> - <p><strong>date</strong></p> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>nodeId</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> @@ -7477,244 +7629,121 @@ <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getLogFileByDate">GET</h4> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e3099">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3100">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e3101">/system/monitoring</h3> - <h6>Methods</h6> - <div class="methods"></div> - </div> - <div class="resource"> - <h3 id="d2e3102">/system/monitoring/configuration</h3> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getImplementedProbes">GET</h4> - <p>Return the configuration of the monitoring, which probes are available, - which dependency... - </p> + <h4 id="http://www.example.com#getForum">GET</h4> + <p>Retrieves the forum.</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e3107">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} releaseVO">ns3:releaseVO</abbr>)</a></li> - <li><a href="#d2e3117">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2942">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2945">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>)</a></li> + <li><a href="#d2e2955">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e3120">/system/monitoring/runtime</h3> + <h3 id="d2e2958">/repo/courses/{courseId}/elements/forum/{nodeId}/forum/threads<span class="optional">?start</span><span class="optional">&limit</span><span class="optional">&orderBy</span><span class="optional">&asc</span></h3> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>nodeId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getSystemSummaryVO">GET</h4> - <p>Return the statistics about runtime: uptime, classes loaded, memory - summary, threads count... - </p> + <h4 id="http://www.example.com#getThreads">GET</h4> + <p>Retrieves the threads in the forum</p> + <h6>request query parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>start</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> + <p>Default: <tt>0</tt></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>limit</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> + <p>Default: <tt>25</tt></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>orderBy</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>creationDate</tt></p> + </td> + <td> + <p>(value name,creationDate)</p> + </td> + </tr> + <tr> + <td> + <p><strong>asc</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>true</tt></p> + </td> + <td> + <p>(value true/false)</p> + </td> + </tr> + </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e3125">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} runtimeVO">ns3:runtimeVO</abbr>)</a></li> - <li><a href="#d2e3135">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2972">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e2975">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> + <li><a href="#d2e2985">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e3138">/system/monitoring/runtime/classes</h3> - <h6>Methods</h6> - <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getCompilationXml">GET</h4> - <p>Return some informations about the number of Java classes...</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e3143">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} classesVO">ns3:classesVO</abbr>)</a></li> - <li><a href="#d2e3153">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e3156">/system/monitoring/runtime/memory</h3> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getMemoryStatistics">GET</h4> - <p>Return the statistics about memory</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e3161">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} runtimeVO">ns3:runtimeVO</abbr>)</a></li> - <li><a href="#d2e3171">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e3174">/system/monitoring/runtime/threads</h3> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getThreadStatistics">GET</h4> - <p>Return the statistics about threads</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e3179">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} runtimeVO">ns3:runtimeVO</abbr>)</a></li> - <li><a href="#d2e3189">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e3192">/system/monitoring/database</h3> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getDatabaseStatistics">GET</h4> - <p>Return the statistics about database and hibernate</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e3197">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} runtimeVO">ns3:runtimeVO</abbr>)</a></li> - <li><a href="#d2e3207">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e3210">/system/monitoring/openolat</h3> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getStatistics">GET</h4> - <p>Return the statistics about OpenOLAT, users count, courses count...</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e3215">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} releaseVO">ns3:releaseVO</abbr>)</a></li> - <li><a href="#d2e3225">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e3228">/system/monitoring/openolat/users</h3> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getUserStatistics">GET</h4> - <p>Return the statistics about OpenOLAT users</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e3233">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} releaseVO">ns3:releaseVO</abbr>)</a></li> - <li><a href="#d2e3243">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e3246">/system/monitoring/openolat/repository</h3> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getRepositoryStatistics">GET</h4> - <p>Return the statistics about the repository, courses count, published courses...</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e3251">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} releaseVO">ns3:releaseVO</abbr>)</a></li> - <li><a href="#d2e3261">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e3264">/system/monitoring/openolat/indexer</h3> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getIndexerStatistics">GET</h4> - <p>Return the statistics about the indexer</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e3269">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} releaseVO">ns3:releaseVO</abbr>)</a></li> - <li><a href="#d2e3279">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e3282">/system/monitoring/openolat/sessions</h3> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getSessions">GET</h4> - <p>Return some statistics about session.</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e3287">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} sessionVO">ns3:sessionVO</abbr>)</a></li> - <li><a href="#d2e3297">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e3300">/system/monitoring/memory</h3> - <p><h3>Description:</h3> - - Initial Date: 21 juin 2010 <br> - </p> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getMemory">GET</h4> - <p>Return informations about memory.</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e3307">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3310">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#getMemoryXml">GET</h4> - <p>Return some informations about memory.</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e3317">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} memoryVO">ns3:memoryVO</abbr>)</a></li> - <li><a href="#d2e3327">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e3330">/system/monitoring/memory/pools</h3> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getMemoryPools">GET</h4> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e3333">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#getMemoryPoolsXml">GET</h4> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e3336">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3337">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e3338">/system/monitoring/memory/samples<span class="optional">?from</span><span class="optional">&to</span><span class="optional">&lastSamples</span></h3> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getSamplesXml">GET</h4> + <h4 id="http://www.example.com#newThreadToForum">PUT</h4> + <p>Creates a new thread in the forum of the course node</p> <h6>request query parameters</h6> <table> <tr> @@ -7724,91 +7753,114 @@ </tr> <tr> <td> - <p><strong>from</strong></p> + <p><strong>title</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> - <td></td> + <td> + <p>The title for the first post in the thread</p> + </td> </tr> <tr> <td> - <p><strong>to</strong></p> + <p><strong>body</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> - <td></td> + <td> + <p>The body for the first post in the thread</p> + </td> </tr> <tr> <td> - <p><strong>lastSamples</strong></p> + <p><strong>authorKey</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The author user key (optional)</p> </td> - <td></td> </tr> </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e3345">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3346">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e3347">/system/monitoring/threads</h3> - <p><h3>Description:</h3> - - Initial Date: 21 juin 2010 <br> - </p> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getThreads">GET</h4> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e3352">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3002">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3005">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e3015">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#getThreadsXml">GET</h4> - <p><em>available response representations:</em></p> + <h4 id="http://www.example.com#newThreadToForumPost">POST</h4> + <p>Creates a new thread in the forum of the course node</p> + <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e3355">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3356">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3022">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e3357">/system/monitoring/threads/cpu</h3> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getThreadsCpu">GET</h4> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e3360">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3361">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3027">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3030">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e3040">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e3362">/contacts<span class="optional">?start</span><span class="optional">&limit</span></h3> - <p>Description:<br> - - <P> - Initial Date: 21 oct. 2011 <br> - </p> + <h3 id="d2e3043">/repo/courses/{courseId}/elements/forum/{nodeId}/forum/posts/{threadKey}<span class="optional">?start</span><span class="optional">&limit</span><span class="optional">&orderBy</span><span class="optional">&asc</span></h3> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>nodeId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>threadKey</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The key of the thread</p> + </td> + </tr> + </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getMyContacts">GET</h4> - <p>Retrieve the contacts of the logged in identity.</p> + <h4 id="http://www.example.com#getMessages">GET</h4> + <p>Retrieves the messages in the thread</p> <h6>request query parameters</h6> <table> <tr> @@ -7836,17 +7888,42 @@ </td> <td></td> </tr> - </table> - <p><em>available response representations:</em></p> + <tr> + <td> + <p><strong>orderBy</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>creationDate</tt></p> + </td> + <td> + <p>(value name, creationDate)</p> + </td> + </tr> + <tr> + <td> + <p><strong>asc</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>true</tt></p> + </td> + <td> + <p>(value true/false)</p> + </td> + </tr> + </table> + <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e3372">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3060">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3063">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> + <li><a href="#d2e3073">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e3375">/users/{username}/auth</h3> - <p>This web service handles functionalities related to authentication credentials of users.</p> + <h3 id="d2e3076">/repo/courses/{courseId}/elements/forum/{nodeId}/forum/posts/{messageKey}</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -7856,47 +7933,129 @@ </tr> <tr> <td> - <p><strong>username</strong></p> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>nodeId</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>messageKey</strong></p> + </td> <td> - <p>The username of the user to retrieve authentication</p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The id of the reply message</p> </td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#create">PUT</h4> - <p>Creates and persists an authentication</p> + <h4 id="http://www.example.com#replyToPostPost">POST</h4> + <p>Creates a new reply in the forum of the course node</p> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e3385">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3386">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3084">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e3388">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3391">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} authenticationVO">ns3:authenticationVO</abbr>)</a></li> - <li><a href="#d2e3401">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3095">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3098">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e3108">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#getAuthenticationTokenList">GET</h4> - <p>Returns all user authentications</p> + <h4 id="http://www.example.com#replyToPost">PUT</h4> + <p>Creates a new reply in the forum of the course node</p> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e3115">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3116">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e3118">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3121">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e3131">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#replyToPost">PUT</h4> + <p>Creates a new reply in the forum of the course node</p> + <h6>request query parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>title</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The title for the first post in the thread</p> + </td> + </tr> + <tr> + <td> + <p><strong>body</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The body for the first post in the thread</p> + </td> + </tr> + <tr> + <td> + <p><strong>authorKey</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The author user key (optional)</p> + </td> + </tr> + </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e3408">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3411">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} authenticationVO">ns3:authenticationVO</abbr>)</a></li> - <li><a href="#d2e3421">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3148">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3151">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e3161">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e3424">/users/{username}/auth/{authKey}</h3> + <h3 id="d2e3164">/repo/courses/{courseId}/elements/forum/{nodeId}/forum/posts/{messageKey}/attachments</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -7906,54 +8065,96 @@ </tr> <tr> <td> - <p><strong>username</strong></p> + <p><strong>courseId</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> </td> <td> - <p>The username of the user to retrieve authentication</p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> + <td></td> </tr> <tr> <td> - <p><strong>username</strong></p> + <p><strong>nodeId</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> - <td> - <p>The username of the user</p> - </td> + <td></td> </tr> <tr> <td> - <p><strong>authKey</strong></p> + <p><strong>messageKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> - <td> - <p>The authentication key identifier</p> - </td> + <td></td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#delete">DELETE</h4> - <p>Deletes an authentication from the system</p> + <h4 id="http://www.example.com#getAttachments">GET</h4> + <p>Retrieves the attachments of the message</p> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e3170">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3173">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#replyToPostAttachment">POST</h4> + <p>Upload the attachment of a message</p> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e3180">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e3184">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3187">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#replyToPostAttachment">POST</h4> + <p>Upload the attachment of a message</p> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e3194">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e3198">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3201">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#replyToPostAttachment">PUT</h4> + <p>Upload the attachment of a message</p> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e3208">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3209">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e3435">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3438">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3441">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3211">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3214">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e3444">/users/{username}/auth/version</h3> + <h3 id="d2e3217">/repo/courses/{courseId}/elements/forum/{nodeId}/forum/posts/{messageKey}/attachments/{filename}</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -7963,30 +8164,75 @@ </tr> <tr> <td> - <p><strong>username</strong></p> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>nodeId</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> + <td></td> + </tr> + <tr> <td> - <p>The username of the user to retrieve authentication</p> + <p><strong>filename</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The name of the attachment</p> + </td> + </tr> + <tr> + <td> + <p><strong>messageKey</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The identity key of the user being searched</p> </td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getVersion">GET</h4> - <p>The version of the User Authentication Web Service</p> + <h4 id="http://www.example.com#getAttachment">GET</h4> + <p>Retrieves the attachment of the message</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e3449">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3228">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3231">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e3459">/users/{username}/auth/new</h3> + <h3 id="d2e3235">/repo/courses/{courseId}/assessments</h3> + <p>Description:<br> + Retrieve and import course assessments + + <P> + Initial Date: 7 apr. 2010 <br> + </p> <h6>resource-wide template parameters</h6> <table> <tr> @@ -7996,48 +8242,32 @@ </tr> <tr> <td> - <p><strong>username</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>The username of the user to retrieve authentication</p> - </td> - </tr> - <tr> - <td> - <p><strong>username</strong></p> + <p><strong>courseId</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The username of the user</p> + <p>The course resourceable's id</p> </td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#createPost">POST</h4> - <p>Fallback method for browsers</p> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e3467">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3468">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> + <h4 id="http://www.example.com#getCourseResults">GET</h4> + <p>Returns the results of the course.</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e3470">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3473">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} authenticationVO">ns3:authenticationVO</abbr>)</a></li> - <li><a href="#d2e3483">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3245">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3248">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} assessableResultsVO">ns3:assessableResultsVO</abbr>)</a></li> + <li><a href="#d2e3258">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e3486">/users/{username}/auth/{authKey}/delete</h3> + <h3 id="d2e3261">/repo/courses/{courseId}/assessments/version</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -8047,60 +8277,87 @@ </tr> <tr> <td> - <p><strong>username</strong></p> + <p><strong>courseId</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The username of the user to retrieve authentication</p> + <p>The course resourceable's id</p> </td> </tr> + </table> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#getVersion">GET</h4> + <p>Retireves the version of the Course Assessment Web Service.</p> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e3266">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e3276">/repo/courses/{courseId}/assessments/users/{identityKey}</h3> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> <tr> <td> - <p><strong>username</strong></p> + <p><strong>courseId</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The username of the user</p> + <p>The course resourceable's id</p> </td> </tr> <tr> <td> - <p><strong>authKey</strong></p> + <p><strong>identityKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The authentication key identifier</p> + <p>The id of the user</p> + </td> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The course resourceable's id</p> </td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#deletePost">POST</h4> - <p>Fallback method for browsers</p> + <h4 id="http://www.example.com#getCourseResultsOf">GET</h4> + <p>Returns the results of the course.</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e3497">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3500">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3503">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3287">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3290">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} assessableResultsVO">ns3:assessableResultsVO</abbr>)</a></li> + <li><a href="#d2e3300">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e3506">/repo/courses/{courseId}/elements/forum</h3> - <p>Description:<br> - REST API implementation for forum course node - - <P> - Initial Date: 20.12.2010 <br> - </p> + <h3 id="d2e3303">/repo/courses/{courseId}/assessments/{nodeId}</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -8115,154 +8372,64 @@ <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> - <td></td> + <td> + <p>The course resourceable's id</p> + </td> + </tr> + <tr> + <td> + <p><strong>nodeId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The id of the course building block</p> + </td> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The resourceable id of the course</p> + </td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getForums">GET</h4> - <p>Retrieves metadata of the published course node</p> + <h4 id="http://www.example.com#getAssessableResults">GET</h4> + <p>Exports results for an assessable course node for all students.</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e3514">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3517">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVOes">ns3:forumVOes</abbr>)</a></li> - <li><a href="#d2e3527">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3314">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3317">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} assessableResultsVO">ns3:assessableResultsVO</abbr>)</a></li> + <li><a href="#d2e3327">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#attachForumPost">POST</h4> - <p>This attaches a Forum Element onto a given course. The element will be - inserted underneath the supplied parentNodeId. - </p> + <h4 id="http://www.example.com#postAssessableResults">POST</h4> + <p>Imports results for an assessable course node for the authenticated student.</p> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e3534">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e3546">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3549">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e3559">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3334">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3335">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#attachForum">PUT</h4> - <p>This attaches a Forum Element onto a given course. The element will be - inserted underneath the supplied parentNodeId. - </p> - <h6>request query parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>parentNodeId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>position</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>shortTitle</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>longTitle</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>objectives</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>visibilityExpertRules</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>accessExpertRules</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>moderatorExpertRules</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>posterExpertRules</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>readerExpertRules</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td></td> - </tr> - </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e3577">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3580">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> - <li><a href="#d2e3590">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3337">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3340">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3343">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e3593">/repo/courses/{courseId}/elements/forum/{nodeId}</h3> + <h3 id="d2e3346">/repo/courses/{courseId}/assessments/{nodeId}/users/{identityKey}</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -8277,17 +8444,30 @@ <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> - <td></td> + <td> + <p>The course resourceable's id</p> + </td> </tr> <tr> <td> <p><strong>nodeId</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The node's id</p> + <p>The ident of the course building block</p> + </td> + </tr> + <tr> + <td> + <p><strong>identityKey</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The id of the user</p> </td> </tr> <tr> @@ -8305,19 +8485,44 @@ <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getForum">GET</h4> - <p>Retrieves metadata of the published course node</p> + <h4 id="http://www.example.com#getCourseNodeResultsForNode">GET</h4> + <p>Returns the results of a student at a specific assessable node</p> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e3360">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3363">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} assessableResultsVO">ns3:assessableResultsVO</abbr>)</a></li> + <li><a href="#d2e3373">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e3376">/auth</h3> + <p>Description:<br> + Authenticate against OLAT Provider + + <P> + Initial Date: 7 apr. 2010 <br> + </p> + <h6>Methods</h6> + <div class="methods"></div> + </div> + <div class="resource"> + <h3 id="d2e3379">/auth/version</h3> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#getVersion">GET</h4> + <p>Retrieves the version of the User Authentication Web Service</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e3604">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3607">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>)</a></li> - <li><a href="#d2e3617">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3384">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e3620">/repo/courses/{courseId}/elements/forum/{nodeId}/thread<span class="optional">?title</span><span class="optional">&body</span><span class="optional">&identityName</span><span class="optional">&sticky</span></h3> + <h3 id="d2e3394">/auth/{username}<span class="optional">?password</span></h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -8327,41 +8532,25 @@ </tr> <tr> <td> - <p><strong>courseId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>nodeId</strong></p> + <p><strong>username</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> <td> - <p>The id of the course node.</p> - </td> - </tr> - <tr> - <td> - <p><strong>courseId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The id of the course.</p> + <p>The username</p> </td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#newThreadToForum">PUT</h4> - <p>Creates a new thread in the forum of the course node</p> + <h4 id="http://www.example.com#login">GET</h4> + <p>Authenticates against OLAT Provider and provides a security token if + authentication is successful. The security token is returned as + a header named X-OLAT-TOKEN. Given that the password is sent in clear text and not encrypted, it is not advisable + to use this service over a none secure connection (https). + </p> <h6>request query parameters</h6> <table> <tr> @@ -8371,60 +8560,183 @@ </tr> <tr> <td> - <p><strong>title</strong></p> + <p><strong>password</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> <td> - <p>The title for the first post in the thread</p> + <p>The password (the password is in clear text, not encrypted)</p> + </td> + </tr> + </table> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e3406">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3409">Status Code 200 - text/plain, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3419">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e3422">/repo/courses<span class="optional">?start</span><span class="optional">&limit</span></h3> + <p>Description:<br> + This web service handles the courses. + + <P> + Initial Date: 27 apr. 2010 <br> + </p> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#getCourseList">GET</h4> + <p>Get all courses viewable by the authenticated user</p> + <h6>request query parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>start</strong></p> </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> + <p>Default: <tt>0</tt></p> + </td> + <td></td> </tr> <tr> <td> - <p><strong>body</strong></p> + <p><strong>limit</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> + <p>Default: <tt>25</tt></p> + </td> + <td></td> + </tr> + </table> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e3432">Status Code 200 - application/xml, application/json, application/json;pagingspec=1.0 (<abbr title="{http://www.example.com} courseVO">ns3:courseVO</abbr>)</a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#createEmptyCourse">PUT</h4> + <p>Creates an empty course, or a copy from a course if the parameter copyFrom is set.</p> + <h6>request query parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>shortTitle</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> <td> - <p>The body for the first post in the thread</p> + <p>The short title</p> </td> </tr> <tr> <td> - <p><strong>identityName</strong></p> + <p><strong>title</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> <td> - <p>The author identity name (optional)</p> + <p>The title</p> </td> </tr> <tr> <td> - <p><strong>sticky</strong></p> + <p><strong>sharedFolderSoftKey</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> <td> - <p>Creates sticky thread.</p> + <p>The repository entry key of a shared folder (optional)</p> + </td> + </tr> + <tr> + <td> + <p><strong>copyFrom</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The cours key to make a copy from (optional)</p> </td> </tr> </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e3644">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3647">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e3657">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3459">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseVO">ns3:courseVO</abbr>)</a></li> + <li><a href="#d2e3469">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#importCourse">POST</h4> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e3474">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3475">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e3476">/repo/courses/version</h3> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#getVersion">GET</h4> + <p>The version of the Course Web Service</p> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e3481">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e3491">/i18n</h3> + <p>Description:<br> + This handles translations from the i18n module of OLAT. + + <P> + Initial Date: 14 apr. 2010 <br> + </p> + <h6>Methods</h6> + <div class="methods"></div> + </div> + <div class="resource"> + <h3 id="d2e3494">/i18n/version</h3> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#getVersion">GET</h4> + <p>Retrieves the version of the i18n Web Service.</p> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e3499">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e3660">/repo/courses/{courseId}/elements/forum/{nodeId}/message<span class="optional">?parentMessageId</span><span class="optional">&title</span><span class="optional">&body</span><span class="optional">&identityName</span></h3> + <h3 id="d2e3509">/i18n/{package}/{key}<span class="optional">?locale</span></h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -8434,41 +8746,34 @@ </tr> <tr> <td> - <p><strong>courseId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>nodeId</strong></p> + <p><strong>package</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> <td> - <p>The id of the course node.</p> + <p>The name of the package</p> </td> </tr> <tr> <td> - <p><strong>courseId</strong></p> + <p><strong>key</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> <td> - <p>The id of the course.</p> + <p>The key to translate</p> </td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#newMessageToForum">PUT</h4> - <p>Creates a new forum message in the forum of the course node</p> + <h4 id="http://www.example.com#getTranslation">GET</h4> + <p>Return the translation of the key. If the "locale" parameter is not specified, the method + try to use the "locale" of the user and if it hasn't, take the default locale. + </p> <h6>request query parameters</h6> <table> <tr> @@ -8478,65 +8783,29 @@ </tr> <tr> <td> - <p><strong>parentMessageId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The id of the parent message.</p> - </td> - </tr> - <tr> - <td> - <p><strong>title</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>The title for the first post in the thread</p> - </td> - </tr> - <tr> - <td> - <p><strong>body</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>The body for the first post in the thread</p> - </td> - </tr> - <tr> - <td> - <p><strong>identityName</strong></p> + <p><strong>locale</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> <td> - <p>The author identity name (optional)</p> + <p>The locale (optional)</p> </td> </tr> </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e3684">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3687">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e3697">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3524">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e3700">/repo/courses/{courseId}/elements/forum/{nodeId}/forum</h3> + <h3 id="d2e3534">/users/{identityKey}/forums</h3> <p>Description:<br> - Web service to manage a forum. <P> - Initial Date: 20 apr. 2010 <br> + Initial Date: 6 déc. 2011 <br> </p> <h6>resource-wide template parameters</h6> <table> @@ -8547,48 +8816,40 @@ </tr> <tr> <td> - <p><strong>courseId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>courseId</strong></p> + <p><strong>identityKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>nodeId</strong></p> - </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>The key of the user (IdentityImpl)</p> </td> - <td></td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getForum">GET</h4> - <p>Retrieves the forum.</p> + <h4 id="http://www.example.com#getForums">GET</h4> + <p>Retrieves a list of forums on a user base. All forums of groups + where the user is participant/tutor + all forums in course where + the user is a participant (owner, tutor or participant) + </p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e3709">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3712">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>)</a></li> - <li><a href="#d2e3722">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3544">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>)</a></li> + <li><a href="#d2e3554">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e3725">/repo/courses/{courseId}/elements/forum/{nodeId}/forum/threads<span class="optional">?start</span><span class="optional">&limit</span><span class="optional">&orderBy</span><span class="optional">&asc</span></h3> + <h3 id="d2e3557">/users/{identityKey}/forums/group/{groupKey}</h3> + <p>Description:<br> + Web service to manage a forum. + + <P> + Initial Date: 20 apr. 2010 <br> + </p> <h6>resource-wide template parameters</h6> <table> <tr> @@ -8598,28 +8859,65 @@ </tr> <tr> <td> - <p><strong>courseId</strong></p> + <p><strong>identityKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> - <td></td> + <td> + <p>The key of the user (IdentityImpl)</p> + </td> </tr> <tr> <td> - <p><strong>courseId</strong></p> + <p><strong>groupKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td></td> </tr> + </table> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#getForum">GET</h4> + <p>Retrieves the forum.</p> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e3565">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3568">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>)</a></li> + <li><a href="#d2e3578">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e3581">/users/{identityKey}/forums/group/{groupKey}/threads<span class="optional">?start</span><span class="optional">&limit</span><span class="optional">&orderBy</span><span class="optional">&asc</span></h3> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> <tr> <td> - <p><strong>nodeId</strong></p> + <p><strong>identityKey</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The key of the user (IdentityImpl)</p> + </td> + </tr> + <tr> + <td> + <p><strong>groupKey</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td></td> </tr> @@ -8683,9 +8981,9 @@ </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e3739">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3742">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> - <li><a href="#d2e3752">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3595">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3598">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> + <li><a href="#d2e3608">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> @@ -8734,9 +9032,9 @@ </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e3769">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3772">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e3782">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3625">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3628">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e3638">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> @@ -8744,19 +9042,19 @@ <p>Creates a new thread in the forum of the course node</p> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e3789">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3645">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e3794">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3797">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e3807">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3650">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3653">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e3663">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e3810">/repo/courses/{courseId}/elements/forum/{nodeId}/forum/posts/{threadKey}<span class="optional">?start</span><span class="optional">&limit</span><span class="optional">&orderBy</span><span class="optional">&asc</span></h3> + <h3 id="d2e3666">/users/{identityKey}/forums/group/{groupKey}/posts/{threadKey}<span class="optional">?start</span><span class="optional">&limit</span><span class="optional">&orderBy</span><span class="optional">&asc</span></h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -8766,28 +9064,21 @@ </tr> <tr> <td> - <p><strong>courseId</strong></p> + <p><strong>identityKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>courseId</strong></p> - </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p>The key of the user (IdentityImpl)</p> </td> - <td></td> </tr> <tr> <td> - <p><strong>nodeId</strong></p> + <p><strong>groupKey</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td></td> </tr> @@ -8862,15 +9153,15 @@ </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e3827">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3830">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> - <li><a href="#d2e3840">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3683">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3686">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> + <li><a href="#d2e3696">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e3843">/repo/courses/{courseId}/elements/forum/{nodeId}/forum/posts/{messageKey}</h3> + <h3 id="d2e3699">/users/{identityKey}/forums/group/{groupKey}/posts/{messageKey}</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -8880,28 +9171,21 @@ </tr> <tr> <td> - <p><strong>courseId</strong></p> + <p><strong>identityKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>courseId</strong></p> - </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p>The key of the user (IdentityImpl)</p> </td> - <td></td> </tr> <tr> <td> - <p><strong>nodeId</strong></p> + <p><strong>groupKey</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td></td> </tr> @@ -8924,13 +9208,28 @@ <p>Creates a new reply in the forum of the course node</p> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e3851">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3707">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e3718">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3721">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e3731">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#replyToPost">PUT</h4> + <p>Creates a new reply in the forum of the course node</p> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e3738">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3739">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e3862">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3865">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e3875">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3741">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3744">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e3754">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> @@ -8979,30 +9278,15 @@ </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e3892">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3895">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e3905">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#replyToPost">PUT</h4> - <p>Creates a new reply in the forum of the course node</p> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e3912">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3913">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e3915">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3918">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e3928">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3771">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3774">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e3784">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e3931">/repo/courses/{courseId}/elements/forum/{nodeId}/forum/posts/{messageKey}/attachments</h3> + <h3 id="d2e3787">/users/{identityKey}/forums/group/{groupKey}/posts/{messageKey}/attachments</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -9012,28 +9296,21 @@ </tr> <tr> <td> - <p><strong>courseId</strong></p> + <p><strong>identityKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>courseId</strong></p> - </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p>The key of the user (IdentityImpl)</p> </td> - <td></td> </tr> <tr> <td> - <p><strong>nodeId</strong></p> + <p><strong>groupKey</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td></td> </tr> @@ -9054,22 +9331,21 @@ <p>Retrieves the attachments of the message</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e3937">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3940">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3793">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3796">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#replyToPostAttachment">PUT</h4> + <h4 id="http://www.example.com#replyToPostAttachment">POST</h4> <p>Upload the attachment of a message</p> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e3947">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3948">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3803">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e3950">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3953">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3807">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3810">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> @@ -9077,31 +9353,32 @@ <p>Upload the attachment of a message</p> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e3960">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3817">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e3964">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3967">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3821">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3824">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#replyToPostAttachment">POST</h4> + <h4 id="http://www.example.com#replyToPostAttachment">PUT</h4> <p>Upload the attachment of a message</p> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e3974">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3831">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3832">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e3978">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3981">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3834">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3837">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e3984">/repo/courses/{courseId}/elements/forum/{nodeId}/forum/posts/{messageKey}/attachments/{filename}</h3> + <h3 id="d2e3840">/users/{identityKey}/forums/group/{groupKey}/posts/{messageKey}/attachments/{filename}</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -9111,28 +9388,21 @@ </tr> <tr> <td> - <p><strong>courseId</strong></p> + <p><strong>identityKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>courseId</strong></p> - </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p>The key of the user (IdentityImpl)</p> </td> - <td></td> </tr> <tr> <td> - <p><strong>nodeId</strong></p> + <p><strong>groupKey</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td></td> </tr> @@ -9166,41 +9436,20 @@ <p>Retrieves the attachment of the message</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e3995">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e3998">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3851">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3854">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e4001">/repo/courses/{courseId}/resourcefolders</h3> + <h3 id="d2e3857">/users/{identityKey}/forums/course/{courseKey}/{courseNodeId}</h3> <p>Description:<br> - This will handle the resources folders in the course: the course storage folder - and the shared folder. The course folder has a read-write access but the shared - folder can only be read. + Web service to manage a forum. <P> - Initial Date: 26 apr. 2010 <br> + Initial Date: 20 apr. 2010 <br> </p> - <h6>Methods</h6> - <div class="methods"></div> - </div> - <div class="resource"> - <h3 id="d2e4004">/repo/courses/{courseId}/resourcefolders/version</h3> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getVersion">GET</h4> - <p>The version of the resources folders Web Service</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e4009">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e4019">/repo/courses/{courseId}/resourcefolders/sharedfolder</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -9210,76 +9459,50 @@ </tr> <tr> <td> - <p><strong>courseId</strong></p> + <p><strong>identityKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The course resourceable's id</p> + <p>The key of the user (IdentityImpl)</p> </td> </tr> - </table> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getSharedFiles">GET</h4> - <p>This retrieves the files in the shared folder</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e4027">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4030">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4033">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e4036">/repo/courses/{courseId}/resourcefolders/sharedfolder/{path:.*}</h3> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> <tr> <td> - <p><strong>path</strong></p> + <p><strong>courseKey</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td></td> </tr> <tr> <td> - <p><strong>courseId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p><strong>courseNodeId</strong></p> </td> <td> - <p>The course resourceable's id</p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> + <td></td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getSharedFiles">GET</h4> - <p>This retrieves the files in the shared folder</p> + <h4 id="http://www.example.com#getForum">GET</h4> + <p>Retrieves the forum.</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4045">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4048">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4051">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3866">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3869">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>)</a></li> + <li><a href="#d2e3879">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e4054">/repo/courses/{courseId}/resourcefolders/coursefolder</h3> + <h3 id="d2e3882">/users/{identityKey}/forums/course/{courseKey}/{courseNodeId}/threads<span class="optional">?start</span><span class="optional">&limit</span><span class="optional">&orderBy</span><span class="optional">&asc</span></h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -9289,82 +9512,30 @@ </tr> <tr> <td> - <p><strong>courseId</strong></p> + <p><strong>identityKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> - <td></td> - </tr> - </table> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getCourseFiles">GET</h4> - <p>This retrieves the files in the course folder</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e4060">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4063">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4066">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#attachFileToFolderPost">POST</h4> - <p>This attaches the uploaded file(s) to the supplied folder id.</p> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e4073">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e4081">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4084">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4087">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4090">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#attachFileToFolder">PUT</h4> - <p>This attaches the uploaded file(s) to the supplied folder id at the root level</p> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e4097">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e4101">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4104">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4107">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4110">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e4113">/repo/courses/{courseId}/resourcefolders/coursefolder/{path:.*}</h3> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> + <td> + <p>The key of the user (IdentityImpl)</p> + </td> </tr> <tr> <td> - <p><strong>path</strong></p> + <p><strong>courseKey</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td></td> </tr> <tr> <td> - <p><strong>courseId</strong></p> + <p><strong>courseNodeId</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> <td></td> </tr> @@ -9372,60 +9543,8 @@ <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getCourseFiles">GET</h4> - <p>This retrieves the files in the course folder</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e4120">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4123">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4126">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#attachFileToFolderPost">POST</h4> - <p>This attaches the uploaded file(s) to the supplied folder id.</p> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e4133">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e4141">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4144">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4147">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4150">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#attachFileToFolder">PUT</h4> - <p>This attaches the uploaded file(s) to the supplied folder id at the root level</p> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e4157">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e4161">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4164">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4167">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4170">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e4174">/repo/courses<span class="optional">?start</span><span class="optional">&limit</span></h3> - <p>Description:<br> - This web service handles the courses. - - <P> - Initial Date: 27 apr. 2010 <br> - </p> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getCourseList">GET</h4> - <p>Get all courses viewable by the authenticated user</p> + <h4 id="http://www.example.com#getThreads">GET</h4> + <p>Retrieves the threads in the forum</p> <h6>request query parameters</h6> <table> <tr> @@ -9453,109 +9572,41 @@ </td> <td></td> </tr> - </table> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e4184">Status Code 200 - application/xml, application/json, application/json;pagingspec=1.0 (<abbr title="{http://www.example.com} courseVO">ns3:courseVO</abbr>)</a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#createEmptyCourse">PUT</h4> - <p>Creates an empty course, or a copy from a course if the parameter copyFrom is set.</p> - <h6>request query parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>shortTitle</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>The short title</p> - </td> - </tr> <tr> <td> - <p><strong>title</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>The title</p> - </td> - </tr> - <tr> - <td> - <p><strong>sharedFolderSoftKey</strong></p> + <p><strong>orderBy</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>creationDate</tt></p> </td> <td> - <p>The repository entry key of a shared folder (optional)</p> + <p>(value name,creationDate)</p> </td> </tr> <tr> <td> - <p><strong>copyFrom</strong></p> + <p><strong>asc</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>true</tt></p> </td> <td> - <p>The cours key to make a copy from (optional)</p> + <p>(value true/false)</p> </td> </tr> </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4211">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseVO">ns3:courseVO</abbr>)</a></li> - <li><a href="#d2e4221">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#importCourse">POST</h4> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e4226">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4227">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e4228">/repo/courses/version</h3> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getVersion">GET</h4> - <p>The version of the Course Web Service</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e4233">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3896">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3899">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> + <li><a href="#d2e3909">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e4243">/notifications<span class="optional">?date</span><span class="optional">&type</span></h3> - <p><h3>Description:</h3> - REST API for notifications - <p> - Initial Date: 25 aug 2010 <br> - </p> - <h6>Methods</h6> - <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getNotifications">GET</h4> - <p>Retrieves the notification of the logged in user.</p> + <h4 id="http://www.example.com#newThreadToForum">PUT</h4> + <p>Creates a new thread in the forum of the course node</p> <h6>request query parameters</h6> <table> <tr> @@ -9565,37 +9616,63 @@ </tr> <tr> <td> - <p><strong>date</strong></p> + <p><strong>title</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> <td> - <p>The date (optional)</p> + <p>The title for the first post in the thread</p> </td> </tr> <tr> <td> - <p><strong>type</strong></p> + <p><strong>body</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> <td> - <p>The type of notifications (User, Forum...) (optional)</p> + <p>The body for the first post in the thread</p> + </td> + </tr> + <tr> + <td> + <p><strong>authorKey</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The author user key (optional)</p> </td> </tr> </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4257">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4260">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3926">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3929">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e3939">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#newThreadToForumPost">POST</h4> + <p>Creates a new thread in the forum of the course node</p> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e3946">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e3951">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3954">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e3964">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e4270">/repo/courses/{courseId}/elements/folder</h3> + <h3 id="d2e3967">/users/{identityKey}/forums/course/{courseKey}/{courseNodeId}/posts/{threadKey}<span class="optional">?start</span><span class="optional">&limit</span><span class="optional">&orderBy</span><span class="optional">&asc</span></h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -9605,26 +9682,50 @@ </tr> <tr> <td> - <p><strong>courseId</strong></p> + <p><strong>identityKey</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The key of the user (IdentityImpl)</p> + </td> + </tr> + <tr> + <td> + <p><strong>courseKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td></td> </tr> + <tr> + <td> + <p><strong>courseNodeId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>threadKey</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The key of the thread</p> + </td> + </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getFolders">GET</h4> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e4274">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4275">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#attachFolder">PUT</h4> + <h4 id="http://www.example.com#getMessages">GET</h4> + <p>Retrieves the messages in the thread</p> <h6>request query parameters</h6> <table> <tr> @@ -9634,102 +9735,60 @@ </tr> <tr> <td> - <p><strong>parentNodeId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>position</strong></p> + <p><strong>start</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> + <p>Default: <tt>0</tt></p> </td> <td></td> </tr> <tr> <td> - <p><strong>shortTitle</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>longTitle</strong></p> + <p><strong>limit</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> + <p>Default: <tt>25</tt></p> </td> <td></td> </tr> <tr> <td> - <p><strong>objectives</strong></p> + <p><strong>orderBy</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>visibilityExpertRules</strong></p> + <p>Default: <tt>creationDate</tt></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>(value name, creationDate)</p> </td> - <td></td> </tr> <tr> <td> - <p><strong>downloadExpertRules</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><strong>asc</strong></p> </td> - <td></td> - </tr> - <tr> <td> - <p><strong>uploadExpertRules</strong></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>true</tt></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>(value true/false)</p> </td> - <td></td> </tr> </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4287">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4288">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#attachFolderPost">POST</h4> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e4291">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e4301">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4302">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3984">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e3987">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> + <li><a href="#d2e3997">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e4303">/repo/courses/{courseId}/elements/folder/{nodeId}</h3> + <h3 id="d2e4000">/users/{identityKey}/forums/course/{courseKey}/{courseNodeId}/posts/{messageKey}</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -9739,7 +9798,18 @@ </tr> <tr> <td> - <p><strong>courseId</strong></p> + <p><strong>identityKey</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The key of the user (IdentityImpl)</p> + </td> + </tr> + <tr> + <td> + <p><strong>courseKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> @@ -9748,7 +9818,7 @@ </tr> <tr> <td> - <p><strong>nodeId</strong></p> + <p><strong>courseNodeId</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> @@ -9757,40 +9827,102 @@ </tr> <tr> <td> - <p><strong>courseId</strong></p> + <p><strong>messageKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> - <td></td> + <td> + <p>The id of the reply message</p> + </td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getFolder">GET</h4> + <h4 id="http://www.example.com#replyToPostPost">POST</h4> + <p>Creates a new reply in the forum of the course node</p> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e4008">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4308">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4309">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4019">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4022">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e4032">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#updateFolder">POST</h4> + <h4 id="http://www.example.com#replyToPost">PUT</h4> + <p>Creates a new reply in the forum of the course node</p> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e4312">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4039">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4040">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4320">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4321">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4042">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4045">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e4055">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#replyToPost">PUT</h4> + <p>Creates a new reply in the forum of the course node</p> + <h6>request query parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>title</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The title for the first post in the thread</p> + </td> + </tr> + <tr> + <td> + <p><strong>body</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The body for the first post in the thread</p> + </td> + </tr> + <tr> + <td> + <p><strong>authorKey</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The author user key (optional)</p> + </td> + </tr> + </table> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e4072">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4075">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e4085">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e4322">/repo/courses/{courseId}/elements/folder/{nodeId}/files</h3> + <h3 id="d2e4088">/users/{identityKey}/forums/course/{courseKey}/{courseNodeId}/posts/{messageKey}/attachments</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -9800,16 +9932,18 @@ </tr> <tr> <td> - <p><strong>courseId</strong></p> + <p><strong>identityKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> - <td></td> + <td> + <p>The key of the user (IdentityImpl)</p> + </td> </tr> <tr> <td> - <p><strong>courseId</strong></p> + <p><strong>courseKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> @@ -9818,80 +9952,78 @@ </tr> <tr> <td> - <p><strong>nodeId</strong></p> + <p><strong>courseNodeId</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> <td></td> </tr> + <tr> + <td> + <p><strong>messageKey</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#listFiles">GET</h4> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e4327">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4328">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4329">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4330">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4331">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#postFileToRoot">POST</h4> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e4334">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> + <h4 id="http://www.example.com#getAttachments">GET</h4> + <p>Retrieves the attachments of the message</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4339">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4340">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4094">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4097">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#postFile64ToRoot">POST</h4> + <h4 id="http://www.example.com#replyToPostAttachment">POST</h4> + <p>Upload the attachment of a message</p> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e4343">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4104">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4348">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4349">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4108">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4111">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#putFileToRoot">PUT</h4> + <h4 id="http://www.example.com#replyToPostAttachment">POST</h4> + <p>Upload the attachment of a message</p> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e4352">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4118">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4357">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4358">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4122">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4125">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#putFile64VOToRoot">PUT</h4> + <h4 id="http://www.example.com#replyToPostAttachment">PUT</h4> + <p>Upload the attachment of a message</p> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e4361">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4362">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4132">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4133">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4364">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4365">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4135">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4138">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e4366">/repo/courses/{courseId}/elements/folder/{nodeId}/files/{path:.*}</h3> + <h3 id="d2e4141">/users/{identityKey}/forums/course/{courseKey}/{courseNodeId}/posts/{messageKey}/attachments/{filename}</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -9901,16 +10033,18 @@ </tr> <tr> <td> - <p><strong>courseId</strong></p> + <p><strong>identityKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> - <td></td> + <td> + <p>The key of the user (IdentityImpl)</p> + </td> </tr> <tr> <td> - <p><strong>courseId</strong></p> + <p><strong>courseKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> @@ -9919,7 +10053,7 @@ </tr> <tr> <td> - <p><strong>nodeId</strong></p> + <p><strong>courseNodeId</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> @@ -9928,189 +10062,62 @@ </tr> <tr> <td> - <p><strong>path</strong></p> + <p><strong>filename</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> - <td></td> - </tr> - </table> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#listFiles">GET</h4> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e4370">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4371">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4372">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4373">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4374">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#postFileToFolder">POST</h4> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e4377">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e4382">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4383">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4384">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#postFile64ToFolder">POST</h4> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e4387">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e4392">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4393">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4394">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#putFileToFolder">PUT</h4> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e4397">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e4402">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4403">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4404">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#putFile64ToFolder">PUT</h4> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e4407">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4408">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e4410">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4411">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#putFolders">PUT</h4> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e4414">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4415">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#deleteItem">DELETE</h4> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e4418">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4419">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e4420">/repo/courses/{courseId}/elements/folder/{nodeId}/files/version</h3> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>courseId</strong></p> - </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p>The name of the attachment</p> </td> - <td></td> </tr> <tr> <td> - <p><strong>courseId</strong></p> + <p><strong>messageKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>nodeId</strong></p> - </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>The identity key of the user being searched</p> </td> - <td></td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getVersion">GET</h4> + <h4 id="http://www.example.com#getAttachment">GET</h4> + <p>Retrieves the attachment of the message</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4423">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4152">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4155">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e4424">/users/{identityKey}/folders</h3> + <h3 id="d2e4158">/catalog</h3> <p>Description:<br> + A web service for the catalog <P> - Initial Date: 16 déc. 2011 <br> + Initial Date: 5 may 2010 <br> </p> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>identityKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The key of the user (IdentityImpl)</p> - </td> - </tr> - </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getFolders">GET</h4> - <p>Retrieves a list of folders on a user base. All folders of groups - where the user is participant/tutor + all folders in course where - the user is a participant (owner, tutor or participant) - </p> + <h4 id="http://www.example.com#getRoots">GET</h4> + <p>Returns the list of root catalog entries.</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4434">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} folderVOes">ns3:folderVOes</abbr>)</a></li> - <li><a href="#d2e4444">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4165">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>)</a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e4447">/users/{identityKey}/folders/personal</h3> + <h3 id="d2e4175">/catalog/{path:.*}/owners/{identityKey}</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -10120,13 +10127,13 @@ </tr> <tr> <td> - <p><strong>identityKey</strong></p> + <p><strong>path</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> <td> - <p>The key of the user (IdentityImpl)</p> + <p>The path</p> </td> </tr> <tr> @@ -10136,75 +10143,61 @@ <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> - <td></td> + <td> + <p>The id of the user</p> + </td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#listFiles">GET</h4> + <h4 id="http://www.example.com#getOwner">GET</h4> + <p>Retrieves data of an owner of the local sub tree</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4451">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4452">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4453">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4454">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4455">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4186">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4189">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>)</a></li> + <li><a href="#d2e4199">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#postFileToRoot">POST</h4> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e4458">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> + <h4 id="http://www.example.com#addOwner">PUT</h4> + <p>Add an owner of the local sub tree</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4463">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4464">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4206">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4209">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>)</a></li> + <li><a href="#d2e4219">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#postFile64ToRoot">POST</h4> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e4467">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> + <h4 id="http://www.example.com#removeOwner">DELETE</h4> + <p>Remove an owner of the local sub tree</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4472">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4473">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#putFileToRoot">PUT</h4> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e4476">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e4481">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4482">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4226">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4229">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>)</a></li> + <li><a href="#d2e4239">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e4242">/catalog/version</h3> + <h6>Methods</h6> + <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#putFile64VOToRoot">PUT</h4> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e4485">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4486">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> + <h4 id="http://www.example.com#getVersion">GET</h4> + <p>Retrieves the version of the Catalog Web Service.</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4488">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4489">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4247">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e4490">/users/{identityKey}/folders/personal/{path:.*}</h3> + <h3 id="d2e4257">/catalog/{path:.*}/children<span class="optional">?start</span><span class="optional">&limit</span></h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -10214,23 +10207,65 @@ </tr> <tr> <td> - <p><strong>identityKey</strong></p> + <p><strong>path</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> <td> - <p>The key of the user (IdentityImpl)</p> + <p>The path</p> </td> </tr> + </table> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#getChildren">GET</h4> + <p>Returns a list of catalog entries.</p> + <h6>request query parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>start</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> + <p>Default: <tt>0</tt></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>limit</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> + <p>Default: <tt>25</tt></p> + </td> + <td></td> + </tr> + </table> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e4268">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4271">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>)</a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e4281">/catalog/{path:.*}</h3> + <h6>resource-wide template parameters</h6> + <table> <tr> - <td> - <p><strong>identityKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td></td> + <th>parameter</th> + <th>value</th> + <th>description</th> </tr> <tr> <td> @@ -10239,94 +10274,204 @@ <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> - <td></td> + <td> + <p>The path</p> + </td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#listFiles">GET</h4> + <h4 id="http://www.example.com#getCatalogEntry">GET</h4> + <p>Returns the metadata of the catalog entry.</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4494">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4495">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4496">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4497">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4498">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4289">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>)</a></li> + <li><a href="#d2e4299">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#postFileToFolder">POST</h4> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e4501">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> + <h4 id="http://www.example.com#addCatalogEntry">PUT</h4> + <p>Adds a catalog entry under the path specified in the URL.</p> + <h6>request query parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>name</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The name</p> + </td> + </tr> + <tr> + <td> + <p><strong>description</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The description</p> + </td> + </tr> + <tr> + <td> + <p><strong>type</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> + </td> + <td> + <p>The type (leaf or node)</p> + </td> + </tr> + <tr> + <td> + <p><strong>repoEntryKey</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The id of the repository entry</p> + </td> + </tr> + </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4506">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4507">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4508">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4319">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4322">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>)</a></li> + <li><a href="#d2e4332">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#postFile64ToFolder">POST</h4> + <h4 id="http://www.example.com#addCatalogEntry">PUT</h4> + <p>Adds a catalog entry under the path specified in the URL.</p> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e4511">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4339">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4340">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4516">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4517">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4518">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4342">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4345">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>)</a></li> + <li><a href="#d2e4355">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#putFileToFolder">PUT</h4> + <h4 id="http://www.example.com#updatePostCatalogEntry">POST</h4> + <p>Updates the catalog entry under the path specified in the URL.</p> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e4521">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4362">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4526">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4527">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4528">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4373">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4376">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>)</a></li> + <li><a href="#d2e4386">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#putFile64ToFolder">PUT</h4> + <h4 id="http://www.example.com#updateCatalogEntry">POST</h4> + <p>Updates the catalog entry with the path specified in the URL.</p> + <h6>request query parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>newParentKey</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> + </table> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e4531">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4532">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4394">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4395">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4534">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4535">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4397">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4400">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>)</a></li> + <li><a href="#d2e4410">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#putFolders">PUT</h4> + <h4 id="http://www.example.com#updateCatalogEntry">POST</h4> + <p>Updates the catalog entry with the path specified in the URL.</p> + <h6>request query parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>name</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>description</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>newParentKey</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> + </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4538">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4539">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4421">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4424">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>)</a></li> + <li><a href="#d2e4434">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#deleteItem">DELETE</h4> + <h4 id="http://www.example.com#deleteCatalogEntry">DELETE</h4> + <p>Deletes the catalog entry with the path specified in the URL.</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4542">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4543">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4441">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4444">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>)</a></li> + <li><a href="#d2e4454">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e4544">/users/{identityKey}/folders/personal/version</h3> + <h3 id="d2e4457">/catalog/{path:.*}/owners</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -10336,132 +10481,109 @@ </tr> <tr> <td> - <p><strong>identityKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The key of the user (IdentityImpl)</p> + <p><strong>path</strong></p> </td> - </tr> - <tr> <td> - <p><strong>identityKey</strong></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p>The path</p> </td> - <td></td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getVersion">GET</h4> + <h4 id="http://www.example.com#getOwners">GET</h4> + <p>Get the owners of the local sub tree</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4547">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4465">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4468">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>)</a></li> + <li><a href="#d2e4478">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e4548">/users/{identityKey}/folders/group/{groupKey}</h3> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>identityKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The key of the user (IdentityImpl)</p> - </td> - </tr> - <tr> - <td> - <p><strong>groupKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td></td> - </tr> - </table> + <h3 id="d2e4481">/notifications<span class="optional">?date</span><span class="optional">&type</span></h3> + <p><h3>Description:</h3> + REST API for notifications + <p> + Initial Date: 25 aug 2010 <br> + </p> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#listFiles">GET</h4> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e4552">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4553">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4554">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4555">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4556">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#postFileToRoot">POST</h4> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e4559">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e4564">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4565">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#postFile64ToRoot">POST</h4> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e4568">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e4573">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4574">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#putFileToRoot">PUT</h4> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e4577">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> + <h4 id="http://www.example.com#getNotifications">GET</h4> + <p>Retrieves the notification of the logged in user.</p> + <h6>request query parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>date</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The date (optional)</p> + </td> + </tr> + <tr> + <td> + <p><strong>type</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The type of notifications (User, Forum...) (optional)</p> + </td> + </tr> + </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4582">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4583">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4495">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4498">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e4508">/repo/courses/{courseId}/resourcefolders</h3> + <p>Description:<br> + This will handle the resources folders in the course: the course storage folder + and the shared folder. The course folder has a read-write access but the shared + folder can only be read. + + <P> + Initial Date: 26 apr. 2010 <br> + </p> + <h6>Methods</h6> + <div class="methods"></div> + </div> + <div class="resource"> + <h3 id="d2e4511">/repo/courses/{courseId}/resourcefolders/version</h3> + <h6>Methods</h6> + <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#putFile64VOToRoot">PUT</h4> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e4586">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4587">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> + <h4 id="http://www.example.com#getVersion">GET</h4> + <p>The version of the resources folders Web Service</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4589">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4590">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4516">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e4591">/users/{identityKey}/folders/group/{groupKey}/{path:.*}</h3> + <h3 id="d2e4526">/repo/courses/{courseId}/resourcefolders/sharedfolder</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -10471,119 +10593,32 @@ </tr> <tr> <td> - <p><strong>identityKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The key of the user (IdentityImpl)</p> - </td> - </tr> - <tr> - <td> - <p><strong>groupKey</strong></p> + <p><strong>courseId</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>path</strong></p> - </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>The course resourceable's id</p> </td> - <td></td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#listFiles">GET</h4> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e4595">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4596">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4597">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4598">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4599">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#postFileToFolder">POST</h4> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e4602">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e4607">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4608">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4609">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#postFile64ToFolder">POST</h4> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e4612">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e4617">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4618">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4619">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#putFileToFolder">PUT</h4> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e4622">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e4627">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4628">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4629">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#putFile64ToFolder">PUT</h4> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e4632">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4633">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e4635">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4636">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#putFolders">PUT</h4> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e4639">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4640">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#deleteItem">DELETE</h4> + <h4 id="http://www.example.com#getSharedFiles">GET</h4> + <p>This retrieves the files in the shared folder</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4643">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4644">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4534">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4537">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4540">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e4645">/users/{identityKey}/folders/group/{groupKey}/version</h3> + <h3 id="d2e4543">/repo/courses/{courseId}/resourcefolders/sharedfolder/{path:.*}</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -10593,38 +10628,41 @@ </tr> <tr> <td> - <p><strong>identityKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p><strong>path</strong></p> </td> <td> - <p>The key of the user (IdentityImpl)</p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> + <td></td> </tr> <tr> <td> - <p><strong>groupKey</strong></p> + <p><strong>courseId</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> - <td></td> + <td> + <p>The course resourceable's id</p> + </td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getVersion">GET</h4> + <h4 id="http://www.example.com#getSharedFiles">GET</h4> + <p>This retrieves the files in the shared folder</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4648">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4552">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4555">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4558">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e4649">/users/{identityKey}/folders/course/{courseKey}/{courseNodeId}</h3> + <h3 id="d2e4561">/repo/courses/{courseId}/resourcefolders/coursefolder</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -10634,100 +10672,60 @@ </tr> <tr> <td> - <p><strong>identityKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The key of the user (IdentityImpl)</p> - </td> - </tr> - <tr> - <td> - <p><strong>courseKey</strong></p> + <p><strong>courseId</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td></td> </tr> - <tr> - <td> - <p><strong>courseNodeId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td></td> - </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#listFiles">GET</h4> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e4654">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4655">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4656">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4657">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4658">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#postFileToRoot">POST</h4> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e4661">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e4666">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4667">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#postFile64ToRoot">POST</h4> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e4670">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> + <h4 id="http://www.example.com#getCourseFiles">GET</h4> + <p>This retrieves the files in the course folder</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4675">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4676">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4567">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4570">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4573">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#putFileToRoot">PUT</h4> + <h4 id="http://www.example.com#attachFileToFolderPost">POST</h4> + <p>This attaches the uploaded file(s) to the supplied folder id.</p> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e4679">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4580">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4684">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4685">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4588">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4591">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4594">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4597">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#putFile64VOToRoot">PUT</h4> + <h4 id="http://www.example.com#attachFileToFolder">PUT</h4> + <p>This attaches the uploaded file(s) to the supplied folder id at the root level</p> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e4688">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4689">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4604">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4691">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4692">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4608">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4611">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4614">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4617">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e4693">/users/{identityKey}/folders/course/{courseKey}/{courseNodeId}/{path:.*}</h3> + <h3 id="d2e4620">/repo/courses/{courseId}/resourcefolders/coursefolder/{path:.*}</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -10737,27 +10735,7 @@ </tr> <tr> <td> - <p><strong>identityKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The key of the user (IdentityImpl)</p> - </td> - </tr> - <tr> - <td> - <p><strong>courseKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>courseNodeId</strong></p> + <p><strong>path</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> @@ -10766,10 +10744,10 @@ </tr> <tr> <td> - <p><strong>path</strong></p> + <p><strong>courseId</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td></td> </tr> @@ -10777,172 +10755,87 @@ <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#listFiles">GET</h4> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e4697">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4698">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4699">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4700">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4701">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#postFileToFolder">POST</h4> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e4704">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e4709">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4710">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4711">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#postFile64ToFolder">POST</h4> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e4714">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> + <h4 id="http://www.example.com#getCourseFiles">GET</h4> + <p>This retrieves the files in the course folder</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4719">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4720">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4721">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4627">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4630">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4633">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#putFileToFolder">PUT</h4> + <h4 id="http://www.example.com#attachFileToFolderPost">POST</h4> + <p>This attaches the uploaded file(s) to the supplied folder id.</p> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e4724">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4640">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4729">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4730">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4731">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4648">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4651">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4654">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4657">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#putFile64ToFolder">PUT</h4> + <h4 id="http://www.example.com#attachFileToFolder">PUT</h4> + <p>This attaches the uploaded file(s) to the supplied folder id at the root level</p> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e4734">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4735">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e4737">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4738">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#putFolders">PUT</h4> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e4741">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4742">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#deleteItem">DELETE</h4> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e4745">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4746">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4664">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e4747">/users/{identityKey}/folders/course/{courseKey}/{courseNodeId}/version</h3> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>identityKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The key of the user (IdentityImpl)</p> - </td> - </tr> - <tr> - <td> - <p><strong>courseKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>courseNodeId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td></td> - </tr> - </table> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getVersion">GET</h4> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4750">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4668">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4671">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4674">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4677">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e4751">/ping</h3> + <h3 id="d2e4680">/api</h3> <p>Description:<br> - Ping to test the presence of the REST Api + Service for general informations on the OLAT REST Api. <P> - Initial Date: 7 apr. 2010 <br> + Initial Date: 14 apr. 2010 <br> </p> <h6>Methods</h6> + <div class="methods"></div> + </div> + <div class="resource"> + <h3 id="d2e4683">/api/version</h3> + <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#ping">GET</h4> - <p>Return a string</p> + <h4 id="http://www.example.com#getVersion">GET</h4> + <p>Version number of the whole REST API of OLAT.</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4758">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4688">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e4768">/ping/version</h3> + <h3 id="d2e4698">/api/doc</h3> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getVersion">GET</h4> - <p>The version of the Ping Web Service</p> + <h4 id="http://www.example.com#getHtmlDoc">GET</h4> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4773">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4701">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e4783">/ping/{name}</h3> + <h3 id="d2e4702">/api/doc/{filename}</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -10952,7 +10845,7 @@ </tr> <tr> <td> - <p><strong>name</strong></p> + <p><strong>filename</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> @@ -10963,22 +10856,17 @@ <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#ping">POST</h4> - <p>Return a string</p> + <h4 id="http://www.example.com#getImage1">GET</h4> + <p>Returns images for the documentation of OLAT.</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4789">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4708">Status Code 200 - image/jpeg<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e4799">/users/{identityKey}/forums</h3> - <p>Description:<br> - - <P> - Initial Date: 6 déc. 2011 <br> - </p> + <h3 id="d2e4711">/api/{filename}</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -10988,135 +10876,61 @@ </tr> <tr> <td> - <p><strong>identityKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p><strong>filename</strong></p> </td> <td> - <p>The key of the user (IdentityImpl)</p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> + <td></td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getForums">GET</h4> - <p>Retrieves a list of forums on a user base. All forums of groups - where the user is participant/tutor + all forums in course where - the user is a participant (owner, tutor or participant) - </p> + <h4 id="http://www.example.com#getImage2">GET</h4> + <p>Returns images for the documentation of OLAT.</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4809">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>)</a></li> - <li><a href="#d2e4819">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4717">Status Code 200 - image/jpeg<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e4822">/users/{identityKey}/forums/course/{courseKey}/{courseNodeId}</h3> - <p>Description:<br> - Web service to manage a forum. - - <P> - Initial Date: 20 apr. 2010 <br> - </p> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>identityKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The key of the user (IdentityImpl)</p> - </td> - </tr> - <tr> - <td> - <p><strong>courseKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>courseNodeId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td></td> - </tr> - </table> + <h3 id="d2e4720">/api/copyright</h3> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getForum">GET</h4> - <p>Retrieves the forum.</p> + <h4 id="http://www.example.com#getCopyrightXhtml">GET</h4> + <p>Returns the copyright of OLAT.</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4831">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4834">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>)</a></li> - <li><a href="#d2e4844">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4725">Status Code 200 - text/html, application/xhtml+xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#getCopyrightPlainText">GET</h4> + <p>Returns the copyright of OLAT.</p> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e4732">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e4847">/users/{identityKey}/forums/course/{courseKey}/{courseNodeId}/threads<span class="optional">?start</span><span class="optional">&limit</span><span class="optional">&orderBy</span><span class="optional">&asc</span></h3> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>identityKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The key of the user (IdentityImpl)</p> - </td> - </tr> - <tr> - <td> - <p><strong>courseKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>courseNodeId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td></td> - </tr> - </table> + <h3 id="d2e4735">/repo/entries<span class="optional">?start</span><span class="optional">&limit</span></h3> + <p>Description:<br> + This handles the repository entries + + <P> + Initial Date: 19.05.2009 <br> + </p> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getThreads">GET</h4> - <p>Retrieves the threads in the forum</p> + <h4 id="http://www.example.com#getEntries">GET</h4> + <p>List all entries in the OLAT repository</p> <h6>request query parameters</h6> <table> <tr> @@ -11144,43 +10958,54 @@ </td> <td></td> </tr> - <tr> - <td> - <p><strong>orderBy</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>creationDate</tt></p> - </td> - <td> - <p>(value name,creationDate)</p> - </td> - </tr> - <tr> - <td> - <p><strong>asc</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>true</tt></p> - </td> - <td> - <p>(value true/false)</p> - </td> - </tr> </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4861">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4864">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> - <li><a href="#d2e4874">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4745">Status Code 200 - text/plain, text/html, application/xml, application/json (<abbr title="{http://www.example.com} repositoryEntryVO">ns3:repositoryEntryVO</abbr>)</a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#newThreadToForum">PUT</h4> - <p>Creates a new thread in the forum of the course node</p> - <h6>request query parameters</h6> - <table> + <h4 id="http://www.example.com#getEntriesText">GET</h4> + <p>List all entries in the OLAT repository</p> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e4759">Status Code 200 - text/plain, text/html, application/xml, application/json (<abbr title="{http://www.example.com} repositoryEntryVO">ns3:repositoryEntryVO</abbr>)</a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#putResource">PUT</h4> + <p>Import a resource in the repository</p> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e4773">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} repositoryEntryVO">ns3:repositoryEntryVO</abbr>)</a></li> + <li><a href="#d2e4783">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e4786">/repo/entries/version</h3> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#getVersion">GET</h4> + <p>The version number of this web service</p> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e4791">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e4792">/repo/entries/search<span class="optional">?type</span><span class="optional">&author</span><span class="optional">&name</span><span class="optional">&myentries</span></h3> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#searchEntries">GET</h4> + <p>Search for repository entries, possible search attributes are name, author and type</p> + <h6>request query parameters</h6> + <table> <tr> <th>parameter</th> <th>value</th> @@ -11188,63 +11013,125 @@ </tr> <tr> <td> - <p><strong>title</strong></p> + <p><strong>type</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> <td> - <p>The title for the first post in the thread</p> + <p>Filter by the file resource type of the repository entry</p> </td> </tr> <tr> <td> - <p><strong>body</strong></p> + <p><strong>author</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>*</tt></p> </td> <td> - <p>The body for the first post in the thread</p> + <p>Filter by the author's username</p> </td> </tr> <tr> <td> - <p><strong>authorKey</strong></p> + <p><strong>name</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>*</tt></p> </td> <td> - <p>The author user key (optional)</p> + <p>Filter by name of repository entry</p> + </td> + </tr> + <tr> + <td> + <p><strong>myentries</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>false</tt></p> + </td> + <td> + <p>Only search entries the requester owns</p> </td> </tr> </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4891">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4894">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e4904">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4810">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} repositoryEntryVO">ns3:repositoryEntryVO</abbr>)</a></li> + <li><a href="#d2e4820">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e4823">/repo/entries/{repoEntryKey}</h3> + <p>Description:<br> + Repository entry resource + + <P> + Initial Date: 19.05.2009 <br> + </p> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>repoEntryKey</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + </table> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#deleteCourse">DELETE</h4> + <p>Delete a course by id</p> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e4831">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4834">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4837">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#newThreadToForumPost">POST</h4> - <p>Creates a new thread in the forum of the course node</p> + <h4 id="http://www.example.com#getById">GET</h4> + <p>get a resource in the repository</p> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e4844">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4847">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} repositoryEntryVO">ns3:repositoryEntryVO</abbr>)</a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#replaceResource">POST</h4> + <p>Replace a resource in the repository and update its display name. The implementation is + limited to CP. + </p> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e4911">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4861">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4916">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4919">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e4929">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4867">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} repositoryEntryVO">ns3:repositoryEntryVO</abbr>)</a></li> + <li><a href="#d2e4877">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e4932">/users/{identityKey}/forums/course/{courseKey}/{courseNodeId}/posts/{threadKey}<span class="optional">?start</span><span class="optional">&limit</span><span class="optional">&orderBy</span><span class="optional">&asc</span></h3> + <h3 id="d2e4880">/repo/entries/{repoEntryKey}/file</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -11254,113 +11141,92 @@ </tr> <tr> <td> - <p><strong>identityKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The key of the user (IdentityImpl)</p> - </td> - </tr> - <tr> - <td> - <p><strong>courseKey</strong></p> + <p><strong>repoEntryKey</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> <td></td> </tr> <tr> <td> - <p><strong>courseNodeId</strong></p> + <p><strong>repoEntryKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> <td></td> </tr> + </table> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#getRepoFileById">GET</h4> + <p>Download the export zip file of a repository entry.</p> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e4886">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4889">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4892">Status Code 200 - application/zip<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4902">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4905">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e4908">/users/{username}/auth</h3> + <p>This web service handles functionalities related to authentication credentials of users.</p> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> <tr> <td> - <p><strong>threadKey</strong></p> + <p><strong>username</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> <td> - <p>The key of the thread</p> + <p>The username of the user to retrieve authentication</p> </td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getMessages">GET</h4> - <p>Retrieves the messages in the thread</p> - <h6>request query parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>start</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> - <p>Default: <tt>0</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>limit</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> - <p>Default: <tt>25</tt></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>orderBy</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>creationDate</tt></p> - </td> - <td> - <p>(value name, creationDate)</p> - </td> - </tr> - <tr> - <td> - <p><strong>asc</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>true</tt></p> - </td> - <td> - <p>(value true/false)</p> - </td> - </tr> - </table> + <h4 id="http://www.example.com#create">PUT</h4> + <p>Creates and persists an authentication</p> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e4918">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4919">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e4921">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4924">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} authenticationVO">ns3:authenticationVO</abbr>)</a></li> + <li><a href="#d2e4934">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#getAuthenticationTokenList">GET</h4> + <p>Returns all user authentications</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4949">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4952">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> - <li><a href="#d2e4962">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4941">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4944">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} authenticationVO">ns3:authenticationVO</abbr>)</a></li> + <li><a href="#d2e4954">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e4965">/users/{identityKey}/forums/course/{courseKey}/{courseNodeId}/posts/{messageKey}</h3> + <h3 id="d2e4957">/users/{username}/auth/{authKey}</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -11370,131 +11236,54 @@ </tr> <tr> <td> - <p><strong>identityKey</strong></p> + <p><strong>username</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> <td> - <p>The key of the user (IdentityImpl)</p> + <p>The username of the user to retrieve authentication</p> </td> </tr> <tr> <td> - <p><strong>courseKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p><strong>username</strong></p> </td> - <td></td> - </tr> - <tr> <td> - <p><strong>courseNodeId</strong></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>The username of the user</p> </td> - <td></td> </tr> <tr> <td> - <p><strong>messageKey</strong></p> + <p><strong>authKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The id of the reply message</p> + <p>The authentication key identifier</p> </td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#replyToPostPost">POST</h4> - <p>Creates a new reply in the forum of the course node</p> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e4973">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> + <h4 id="http://www.example.com#delete">DELETE</h4> + <p>Deletes an authentication from the system</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e4984">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e4987">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e4997">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#replyToPost">PUT</h4> - <p>Creates a new reply in the forum of the course node</p> - <h6>request query parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>title</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>The title for the first post in the thread</p> - </td> - </tr> - <tr> - <td> - <p><strong>body</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>The body for the first post in the thread</p> - </td> - </tr> - <tr> - <td> - <p><strong>authorKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The author user key (optional)</p> - </td> - </tr> - </table> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e5014">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5017">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e5027">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#replyToPost">PUT</h4> - <p>Creates a new reply in the forum of the course node</p> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e5034">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5035">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e5037">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5040">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e5050">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4968">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4971">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e4974">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e5053">/users/{identityKey}/forums/course/{courseKey}/{courseNodeId}/posts/{messageKey}/attachments</h3> + <h3 id="d2e4977">/users/{username}/auth/version</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -11504,98 +11293,81 @@ </tr> <tr> <td> - <p><strong>identityKey</strong></p> + <p><strong>username</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> <td> - <p>The key of the user (IdentityImpl)</p> + <p>The username of the user to retrieve authentication</p> </td> </tr> + </table> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#getVersion">GET</h4> + <p>The version of the User Authentication Web Service</p> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e4982">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e4992">/users/{username}/auth/new</h3> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> <tr> <td> - <p><strong>courseKey</strong></p> + <p><strong>username</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The username of the user to retrieve authentication</p> </td> - <td></td> </tr> <tr> <td> - <p><strong>courseNodeId</strong></p> + <p><strong>username</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>messageKey</strong></p> - </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p>The username of the user</p> </td> - <td></td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getAttachments">GET</h4> - <p>Retrieves the attachments of the message</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e5059">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5062">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#replyToPostAttachment">PUT</h4> - <p>Upload the attachment of a message</p> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e5069">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5070">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e5072">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5075">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#replyToPostAttachment">POST</h4> - <p>Upload the attachment of a message</p> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e5082">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e5086">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5089">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#replyToPostAttachment">POST</h4> - <p>Upload the attachment of a message</p> + <h4 id="http://www.example.com#createPost">POST</h4> + <p>Fallback method for browsers</p> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e5096">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5000">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5001">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e5100">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5103">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5003">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5006">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} authenticationVO">ns3:authenticationVO</abbr>)</a></li> + <li><a href="#d2e5016">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e5106">/users/{identityKey}/forums/course/{courseKey}/{courseNodeId}/posts/{messageKey}/attachments/{filename}</h3> + <h3 id="d2e5019">/users/{username}/auth/{authKey}/delete</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -11605,71 +11377,144 @@ </tr> <tr> <td> - <p><strong>identityKey</strong></p> + <p><strong>username</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> <td> - <p>The key of the user (IdentityImpl)</p> + <p>The username of the user to retrieve authentication</p> </td> </tr> <tr> <td> - <p><strong>courseKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p><strong>username</strong></p> </td> - <td></td> - </tr> - <tr> <td> - <p><strong>courseNodeId</strong></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>The username of the user</p> </td> - <td></td> </tr> <tr> <td> - <p><strong>filename</strong></p> + <p><strong>authKey</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The name of the attachment</p> + <p>The authentication key identifier</p> </td> </tr> + </table> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#deletePost">POST</h4> + <p>Fallback method for browsers</p> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e5030">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5033">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5036">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e5040">/ping</h3> + <p>Description:<br> + Ping to test the presence of the REST Api + + <P> + Initial Date: 7 apr. 2010 <br> + </p> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#ping">GET</h4> + <p>Return a string</p> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e5047">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e5057">/ping/version</h3> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#getVersion">GET</h4> + <p>The version of the Ping Web Service</p> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e5062">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e5072">/ping/{name}</h3> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> <tr> <td> - <p><strong>messageKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p><strong>name</strong></p> </td> <td> - <p>The identity key of the user being searched</p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> + <td></td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getAttachment">GET</h4> - <p>Retrieves the attachment of the message</p> + <h4 id="http://www.example.com#ping">POST</h4> + <p>Return a string</p> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e5078">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e5088">/repo/forums</h3> + <p>Description:<br> + Web service to manage forums. + + <P> + Initial Date: 26 aug. 2010 <br> + </p> + <h6>Methods</h6> + <div class="methods"></div> + </div> + <div class="resource"> + <h3 id="d2e5091">/repo/forums/version</h3> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#getVersion">GET</h4> + <p>The version of the Forum Web Service</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e5117">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5120">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5096">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e5123">/users/{identityKey}/forums/group/{groupKey}</h3> + <h3 id="d2e5106">/repo/forums/{forumKey}</h3> <p>Description:<br> Web service to manage a forum. @@ -11685,23 +11530,14 @@ </tr> <tr> <td> - <p><strong>identityKey</strong></p> + <p><strong>forumKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The key of the user (IdentityImpl)</p> - </td> - </tr> - <tr> - <td> - <p><strong>groupKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p>The key of the forum</p> </td> - <td></td> </tr> </table> <h6>Methods</h6> @@ -11711,15 +11547,15 @@ <p>Retrieves the forum.</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e5131">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5134">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>)</a></li> - <li><a href="#d2e5144">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5116">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5119">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>)</a></li> + <li><a href="#d2e5129">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e5147">/users/{identityKey}/forums/group/{groupKey}/threads<span class="optional">?start</span><span class="optional">&limit</span><span class="optional">&orderBy</span><span class="optional">&asc</span></h3> + <h3 id="d2e5132">/repo/forums/{forumKey}/threads<span class="optional">?start</span><span class="optional">&limit</span><span class="optional">&orderBy</span><span class="optional">&asc</span></h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -11729,24 +11565,15 @@ </tr> <tr> <td> - <p><strong>identityKey</strong></p> + <p><strong>forumKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The key of the user (IdentityImpl)</p> + <p>The key of the forum</p> </td> </tr> - <tr> - <td> - <p><strong>groupKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td></td> - </tr> </table> <h6>Methods</h6> <div class="methods"> @@ -11807,9 +11634,9 @@ </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e5161">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5164">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> - <li><a href="#d2e5174">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5146">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5149">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> + <li><a href="#d2e5159">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> @@ -11858,9 +11685,9 @@ </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e5191">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5194">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e5204">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5176">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5179">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e5189">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> @@ -11868,19 +11695,19 @@ <p>Creates a new thread in the forum of the course node</p> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e5211">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5196">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e5216">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5219">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e5229">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5201">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5204">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e5214">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e5232">/users/{identityKey}/forums/group/{groupKey}/posts/{threadKey}<span class="optional">?start</span><span class="optional">&limit</span><span class="optional">&orderBy</span><span class="optional">&asc</span></h3> + <h3 id="d2e5217">/repo/forums/{forumKey}/posts/{threadKey}<span class="optional">?start</span><span class="optional">&limit</span><span class="optional">&orderBy</span><span class="optional">&asc</span></h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -11890,23 +11717,14 @@ </tr> <tr> <td> - <p><strong>identityKey</strong></p> + <p><strong>forumKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The key of the user (IdentityImpl)</p> - </td> - </tr> - <tr> - <td> - <p><strong>groupKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p>The key of the forum</p> </td> - <td></td> </tr> <tr> <td> @@ -11979,15 +11797,15 @@ </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e5249">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5252">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> - <li><a href="#d2e5262">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5234">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5237">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> + <li><a href="#d2e5247">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e5265">/users/{identityKey}/forums/group/{groupKey}/posts/{messageKey}</h3> + <h3 id="d2e5250">/repo/forums/{forumKey}/posts/{messageKey}</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -11997,23 +11815,14 @@ </tr> <tr> <td> - <p><strong>identityKey</strong></p> + <p><strong>forumKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The key of the user (IdentityImpl)</p> - </td> - </tr> - <tr> - <td> - <p><strong>groupKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p>The key of the forum</p> </td> - <td></td> </tr> <tr> <td> @@ -12034,13 +11843,28 @@ <p>Creates a new reply in the forum of the course node</p> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e5273">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5258">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e5269">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5272">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e5282">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#replyToPost">PUT</h4> + <p>Creates a new reply in the forum of the course node</p> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e5289">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5290">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e5284">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5287">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e5297">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5292">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5295">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e5305">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> @@ -12089,30 +11913,15 @@ </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e5314">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5317">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e5327">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#replyToPost">PUT</h4> - <p>Creates a new reply in the forum of the course node</p> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e5334">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5335">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e5337">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5340">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e5350">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5322">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5325">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> + <li><a href="#d2e5335">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e5353">/users/{identityKey}/forums/group/{groupKey}/posts/{messageKey}/attachments</h3> + <h3 id="d2e5338">/repo/forums/{forumKey}/posts/{messageKey}/attachments</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -12122,23 +11931,14 @@ </tr> <tr> <td> - <p><strong>identityKey</strong></p> + <p><strong>forumKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The key of the user (IdentityImpl)</p> - </td> - </tr> - <tr> - <td> - <p><strong>groupKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p>The key of the forum</p> </td> - <td></td> </tr> <tr> <td> @@ -12157,22 +11957,21 @@ <p>Retrieves the attachments of the message</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e5359">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5362">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5344">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5347">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#replyToPostAttachment">PUT</h4> + <h4 id="http://www.example.com#replyToPostAttachment">POST</h4> <p>Upload the attachment of a message</p> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e5369">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5370">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5354">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e5372">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5375">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5358">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5361">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> @@ -12180,31 +11979,32 @@ <p>Upload the attachment of a message</p> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e5382">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5368">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e5386">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5389">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5372">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5375">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#replyToPostAttachment">POST</h4> + <h4 id="http://www.example.com#replyToPostAttachment">PUT</h4> <p>Upload the attachment of a message</p> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e5396">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5382">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5383">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e5400">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5403">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5385">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5388">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e5406">/users/{identityKey}/forums/group/{groupKey}/posts/{messageKey}/attachments/{filename}</h3> + <h3 id="d2e5391">/repo/forums/{forumKey}/posts/{messageKey}/attachments/{filename}</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -12214,23 +12014,14 @@ </tr> <tr> <td> - <p><strong>identityKey</strong></p> + <p><strong>forumKey</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The key of the user (IdentityImpl)</p> - </td> - </tr> - <tr> - <td> - <p><strong>groupKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p>The key of the forum</p> </td> - <td></td> </tr> <tr> <td> @@ -12262,39 +12053,37 @@ <p>Retrieves the attachment of the message</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e5417">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5420">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5402">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5405">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e5423">/i18n</h3> - <p>Description:<br> - This handles translations from the i18n module of OLAT. - - <P> - Initial Date: 14 apr. 2010 <br> + <h3 id="d2e5408">/repo/courses/{courseId}/elements</h3> + <p>This interface provides course building capabilities from our REST API. + <p> + Initial Date: Feb 8, 2010 Time: 3:45:50 PM<br> </p> <h6>Methods</h6> <div class="methods"></div> </div> <div class="resource"> - <h3 id="d2e5426">/i18n/version</h3> + <h3 id="d2e5411">/repo/courses/{courseId}/elements/version</h3> <h6>Methods</h6> <div class="methods"> <div class="method"> <h4 id="http://www.example.com#getVersion">GET</h4> - <p>Retrieves the version of the i18n Web Service.</p> + <p>The version of the Course Elements Web Service</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e5431">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5416">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e5441">/i18n/{package}/{key}<span class="optional">?locale</span></h3> + <h3 id="d2e5426">/repo/courses/{courseId}/elements/{nodeId}</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -12304,138 +12093,94 @@ </tr> <tr> <td> - <p><strong>package</strong></p> + <p><strong>nodeId</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> <td> - <p>The name of the package</p> + <p>The node's id</p> </td> </tr> <tr> <td> - <p><strong>key</strong></p> + <p><strong>courseId</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The key to translate</p> + <p>The course resourceable's id</p> </td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getTranslation">GET</h4> - <p>Return the translation of the key. If the "locale" parameter is not specified, the method - try to use the "locale" of the user and if it hasn't, take the default locale. - </p> - <h6>request query parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>locale</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>The locale (optional)</p> - </td> - </tr> - </table> + <h4 id="http://www.example.com#getCourseNode">GET</h4> + <p>Retrieves metadata of the course node</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e5456">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5437">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5440">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e5450">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e5466">/users</h3> - <p>This web service handles functionalities related to <code>User</code>.</p> + <h3 id="d2e5453">/repo/courses/{courseId}/elements/structure/{nodeId}</h3> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>nodeId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The node's id of this structure</p> + </td> + </tr> + <tr> + <td> + <p><strong>courseId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The course resourceable's id</p> + </td> + </tr> + </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#create">PUT</h4> - <p>Creates and persists a new user entity</p> + <h4 id="http://www.example.com#updateStructure">POST</h4> + <p>This updates a Structure Element onto a given course.</p> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e5473">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5474">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e5476">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5486">Status Code 406 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5496">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5464">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5489">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#getUserListQuery">GET</h4> - <p>Search users and return them in a simple form (without user properties). User properties - can be added two the query parameters. If the authUsername and the authProvider are set, - the search is made only with these two parameters because they are sufficient to return - a single user. - </p> - <h6>request query parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>login</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>The login (search with like)</p> - </td> - </tr> - <tr> - <td> - <p><strong>authProvider</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>An authentication provider (optional)</p> - </td> - </tr> - <tr> - <td> - <p><strong>authUsername</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>An specific username from the authentication provider</p> - </td> - </tr> - </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e5513">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>)</a></li> - <li><a href="#d2e5523">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5515">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5518">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e5528">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e5526">/users/{identityKey}</h3> + <h3 id="d2e5531">/repo/courses/{courseId}/elements/structure</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -12445,47 +12190,37 @@ </tr> <tr> <td> - <p><strong>identityKey</strong></p> + <p><strong>courseId</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> - <td> - <p>The user key identifier of the user being searched</p> - </td> + <td></td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#delete">DELETE</h4> - <p>Delete an user from the system</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e5534">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5537">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5540">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#update">POST</h4> - <p>Update an user</p> + <h4 id="http://www.example.com#attachStructurePost">POST</h4> + <p>This attaches a Structure Element onto a given course. The element will be + inserted underneath the supplied parentNodeId. + </p> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e5547">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5548">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5537">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e5550">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5553">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>)</a></li> - <li><a href="#d2e5563">Status Code 406 - application/xml, application/json (<abbr title="{http://www.example.com} errorVO">ns3:errorVO</abbr>)</a></li> - <li><a href="#d2e5573">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5549">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5552">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e5562">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#findById">GET</h4> - <p>Retrieves an user given its unique key identifier</p> + <h4 id="http://www.example.com#attachStructure">PUT</h4> + <p>This attaches a Structure Element onto a given course. The element will be + inserted underneath the supplied parentNodeId. + </p> <h6>request query parameters</h6> <table> <tr> @@ -12495,98 +12230,92 @@ </tr> <tr> <td> - <p><strong>withPortrait</strong></p> + <p><strong>parentNodeId</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>false</tt></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> + <td></td> + </tr> + <tr> <td> - <p>If true return the portrait as Base64 (default false)</p> + <p><strong>position</strong></p> </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>shortTitle</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>longTitle</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>objectives</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>visibilityExpertRules</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>accessExpertRules</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>displayType</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>toc</tt></p> + </td> + <td></td> </tr> </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e5584">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5587">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5597">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e5600">/users/version</h3> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getVersion">GET</h4> - <p>The version of the User Web Service</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e5605">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e5615">/users/new</h3> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#createPost">POST</h4> - <p>Fallback method for browser</p> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e5620">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5621">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e5623">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5633">Status Code 406 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5643">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e5646">/users/{identityKey}/delete</h3> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>identityKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The user key identifier</p> - </td> - </tr> - </table> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#deletePost">POST</h4> - <p>Fallback method for browsers</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e5654">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5657">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5660">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5578">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5581">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e5591">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e5663">/users/{identityKey}/portrait</h3> + <h3 id="d2e5594">/repo/courses/{courseId}/elements/singlepage/{nodeId}<span class="optional">?shortTitle</span><span class="optional">&longTitle</span><span class="optional">&objectives</span><span class="optional">&visibilityExpertRules</span><span class="optional">&accessExpertRules</span></h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -12596,69 +12325,16 @@ </tr> <tr> <td> - <p><strong>identityKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p><strong>nodeId</strong></p> </td> <td> - <p>The identity key identifier of the user being searched</p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> - </tr> - </table> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getPortrait">GET</h4> - <p>Retrieves the portrait of an user</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e5671">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5674">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#postPortrait">POST</h4> - <p>Upload the portrait of an user</p> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e5681">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e5689">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5692">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5695">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#deletePortrait">DELETE</h4> - <p>Deletes the portrait of an user</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e5702">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5705">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e5708">/users/{identityKey}/groups<span class="optional">?start</span><span class="optional">&limit</span></h3> - <p>Description:<br> - - <P> - Initial Date: 18 oct. 2011 <br> - </p> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> + <td></td> </tr> <tr> <td> - <p><strong>identityKey</strong></p> + <p><strong>courseId</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> @@ -12669,8 +12345,8 @@ <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getUserGroupList">GET</h4> - <p>Return all groups of a user</p> + <h4 id="http://www.example.com#updateSinglePage">POST</h4> + <p>This updates a Single Page Element onto a given course.</p> <h6>request query parameters</h6> <table> <tr> @@ -12680,39 +12356,68 @@ </tr> <tr> <td> - <p><strong>start</strong></p> + <p><strong>shortTitle</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> - <p>Default: <tt>0</tt></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>longTitle</strong></p> </td> <td> - <p>The first result</p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> </td> + <td></td> </tr> <tr> <td> - <p><strong>limit</strong></p> + <p><strong>objectives</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> - <p>Default: <tt>25</tt></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>visibilityExpertRules</strong></p> </td> <td> - <p>The maximum results</p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>accessExpertRules</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> + <td></td> </tr> </table> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e5606">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e5723">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5726">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>)</a></li> + <li><a href="#d2e5610">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5613">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e5623">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e5736">/users/{identityKey}/groups/infos<span class="optional">?start</span><span class="optional">&limit</span></h3> + <h3 id="d2e5626">/repo/courses/{courseId}/elements/singlepage</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -12722,19 +12427,55 @@ </tr> <tr> <td> - <p><strong>identityKey</strong></p> + <p><strong>courseId</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> - <td></td> + <td> + <p>The course resourceable's id</p> + </td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getUserGroupInfosList">GET</h4> - <p>Return all groups with information of a user. Paging is mandatory!</p> + <h4 id="http://www.example.com#attachSinglePagePost">POST</h4> + <p>This attaches a Single Page Element onto a given course. The element will + be inserted underneath the supplied parentNodeId. + </p> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e5634">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e5663">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5666">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e5676">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#attachSinglePagePost">POST</h4> + <p>This attaches a Single Page Element onto a given course. The element will + be inserted underneath the supplied parentNodeId. + </p> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e5683">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e5710">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5713">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e5723">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#attachSinglePage">PUT</h4> + <p>This attaches a Single Page Element onto a given course. The element will + be inserted underneath the supplied parentNodeId. + </p> <h6>request query parameters</h6> <table> <tr> @@ -12744,46 +12485,224 @@ </tr> <tr> <td> - <p><strong>start</strong></p> + <p><strong>parentNodeId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The node's id which will be the parent of this single + page + </p> + </td> + </tr> + <tr> + <td> + <p><strong>position</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> - <p>Default: <tt>0</tt></p> </td> <td> - <p>The first result</p> + <p>The node's position relative to its sibling nodes (optional)</p> </td> </tr> <tr> <td> - <p><strong>limit</strong></p> + <p><strong>shortTitle</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> + </td> + <td> + <p>The node short title</p> + </td> + </tr> + <tr> + <td> + <p><strong>longTitle</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> + </td> + <td> + <p>The node long title</p> + </td> + </tr> + <tr> + <td> + <p><strong>objectives</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> + </td> + <td> + <p>The node learning objectives</p> + </td> + </tr> + <tr> + <td> + <p><strong>visibilityExpertRules</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The rules to view the node (optional)</p> + </td> + </tr> + <tr> + <td> + <p><strong>accessExpertRules</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The rules to access the node (optional)</p> + </td> + </tr> + </table> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e5751">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e5759">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5762">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e5772">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#attachSinglePage">PUT</h4> + <p>This attaches a Single Page Element onto a given course. The element will + be inserted underneath the supplied parentNodeId. + </p> + <h6>request query parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>parentNodeId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The node's id which will be the parent of this single + page + </p> + </td> + </tr> + <tr> + <td> + <p><strong>position</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> - <p>Default: <tt>25</tt></p> </td> <td> - <p>The maximum results</p> + <p>The node's position relative to its sibling nodes (optional)</p> + </td> + </tr> + <tr> + <td> + <p><strong>shortTitle</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> + </td> + <td> + <p>The node short title</p> + </td> + </tr> + <tr> + <td> + <p><strong>longTitle</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> + </td> + <td> + <p>The node long title</p> + </td> + </tr> + <tr> + <td> + <p><strong>objectives</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> + </td> + <td> + <p>The node learning objectives</p> + </td> + </tr> + <tr> + <td> + <p><strong>visibilityExpertRules</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The rules to view the node (optional)</p> + </td> + </tr> + <tr> + <td> + <p><strong>accessExpertRules</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The rules to access the node (optional)</p> + </td> + </tr> + <tr> + <td> + <p><strong>filename</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The single page file name</p> + </td> + </tr> + <tr> + <td> + <p><strong>path</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> + <td></td> </tr> </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e5748">Status Code 200 - application/xml;pagingspec=1.0, application/json;pagingspec=1.0 (<abbr title="{http://www.example.com} groupInfoVO">ns3:groupInfoVO</abbr>)</a></li> - <li><a href="#d2e5758">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5805">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5808">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e5818">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e5761">/repo/courses/{courseId}</h3> - <p>Description:<br> - This web service will handle the functionality related to <code>Course</code> - and its contents. - - <P> - Initial Date: 27 apr. 2010 <br> - </p> + <h3 id="d2e5821">/repo/courses/{courseId}/elements/task/{nodeId}</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -12793,48 +12712,15 @@ </tr> <tr> <td> - <p><strong>courseId</strong></p> + <p><strong>nodeId</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> <td> - <p>The course resourceable's id</p> + <p>The node's id of this task</p> </td> </tr> - </table> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#findById">GET</h4> - <p>Get the metadatas of the course by id</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e5771">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5774">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseVO">ns3:courseVO</abbr>)</a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#deleteCourse">DELETE</h4> - <p>Delete a course by id</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e5788">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5791">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5794">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e5797">/repo/courses/{courseId}/version</h3> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> <tr> <td> <p><strong>courseId</strong></p> @@ -12843,24 +12729,30 @@ <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The course resourceable's id</p> + <p>The course resourceable id</p> </td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getVersion">GET</h4> - <p>The version of the Course Web Service</p> + <h4 id="http://www.example.com#updateTask">POST</h4> + <p>This updates a Task Element onto a given course.</p> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e5832">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e5802">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5855">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5858">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e5868">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e5812">/repo/courses/{courseId}/configuration</h3> + <h3 id="d2e5871">/repo/courses/{courseId}/elements/task</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -12876,132 +12768,33 @@ <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The course resourceable's id</p> - </td> - </tr> - <tr> - <td> - <p><strong>courseId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The course resourceable's id</p> + <p>The course resourceable id</p> </td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getConfiguration">GET</h4> - <p>Get the configuration of the course</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e5820">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5823">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseConfigVO">ns3:courseConfigVO</abbr>)</a></li> - <li><a href="#d2e5833">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#updateConfiguration">POST</h4> - <p>Update the course configuration</p> + <h4 id="http://www.example.com#attachTaskPost">POST</h4> + <p>This attaches a Task Element onto a given course. The element will be + inserted underneath the supplied parentNodeId. + </p> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e5840">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e5860">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5863">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseConfigVO">ns3:courseConfigVO</abbr>)</a></li> - <li><a href="#d2e5873">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5879">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e5876">/repo/courses/{courseId}/authors</h3> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>courseId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The course resourceable's id</p> - </td> - </tr> - <tr> - <td> - <p><strong>courseId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The course resourceable's id</p> - </td> - </tr> - </table> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getAuthors">GET</h4> - <p>Get all owners and authors of the course</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e5884">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5887">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>)</a></li> - <li><a href="#d2e5890">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5908">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5911">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e5921">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e5893">/repo/courses/{courseId}/publish<span class="optional">?locale</span></h3> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>courseId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The course resourceable's id</p> - </td> - </tr> - <tr> - <td> - <p><strong>courseId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The course resourceable's id</p> - </td> - </tr> - </table> - <h6>Methods</h6> - <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#publishCourse">POST</h4> - <p>Publish the course.</p> + <h4 id="http://www.example.com#attachTask">PUT</h4> + <p>This attaches a Task Element onto a given course. The element will be + inserted underneath the supplied parentNodeId. + </p> <h6>request query parameters</h6> <table> <tr> @@ -13011,27 +12804,118 @@ </tr> <tr> <td> - <p><strong>locale</strong></p> + <p><strong>parentNodeId</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> <td> - <p>The course locale</p> + <p>The node's id which will be the parent of this task</p> + </td> + </tr> + <tr> + <td> + <p><strong>position</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> + </td> + <td> + <p>The node's position relative to its sibling nodes (optional)</p> + </td> + </tr> + <tr> + <td> + <p><strong>shortTitle</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> + </td> + <td> + <p>The node short title</p> + </td> + </tr> + <tr> + <td> + <p><strong>longTitle</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> + </td> + <td> + <p>The node long title</p> + </td> + </tr> + <tr> + <td> + <p><strong>objectives</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> + </td> + <td> + <p>The node learning objectives</p> + </td> + </tr> + <tr> + <td> + <p><strong>visibilityExpertRules</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The rules to view the node (optional)</p> + </td> + </tr> + <tr> + <td> + <p><strong>accessExpertRules</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The rules to access the node (optional)</p> + </td> + </tr> + <tr> + <td> + <p><strong>text</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The task node text</p> + </td> + </tr> + <tr> + <td> + <p><strong>points</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#float">float</a></em></p> + </td> + <td> + <p>The task node's possible points</p> </td> </tr> </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e5905">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5908">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseVO">ns3:courseVO</abbr>)</a></li> - <li><a href="#d2e5918">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5956">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5959">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e5969">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e5921">/repo/courses/{courseId}/file</h3> + <h3 id="d2e5972">/repo/courses/{courseId}/elements/test/{nodeId}</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -13041,14 +12925,12 @@ </tr> <tr> <td> - <p><strong>courseId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p><strong>nodeId</strong></p> </td> <td> - <p>The course resourceable's id</p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> + <td></td> </tr> <tr> <td> @@ -13063,19 +12945,23 @@ <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getRepoFileById">GET</h4> - <p>Export the course</p> + <h4 id="http://www.example.com#updateTest">POST</h4> + <p>This updates a Test Element onto a given course.</p> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e5979">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e5927">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5930">Status Code 200 - application/zip<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5933">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5987">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e5990">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e6000">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e5936">/repo/courses/{courseId}/runstructure</h3> + <h3 id="d2e6003">/repo/courses/{courseId}/elements/test</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -13091,83 +12977,145 @@ <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The course resourceable's id</p> - </td> - </tr> - <tr> - <td> - <p><strong>courseId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The course resourceable's id</p> + <p>The course resourceable id</p> </td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#findRunStructureById">GET</h4> - <p>Get the runstructure of the course by id</p> + <h4 id="http://www.example.com#attachTestPost">POST</h4> + <p>This attaches a Test Element onto a given course. The element will be + inserted underneath the supplied parentNodeId. + </p> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e6011">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e5944">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5947">Status Code 200 - application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5950">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6037">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6040">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e6050">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e5953">/repo/courses/{courseId}/editortreemodel</h3> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>courseId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The course resourceable's id</p> - </td> - </tr> - <tr> - <td> - <p><strong>courseId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The course resourceable's id</p> - </td> - </tr> - </table> - <h6>Methods</h6> - <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#findEditorTreeModelById">GET</h4> - <p>Get the editor tree model of the course by id</p> + <h4 id="http://www.example.com#attachTest">PUT</h4> + <p>This attaches a Test Element onto a given course. The element will be + inserted underneath the supplied parentNodeId. + </p> + <h6>request query parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>parentNodeId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The node's id which will be the parent of this test</p> + </td> + </tr> + <tr> + <td> + <p><strong>position</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> + </td> + <td> + <p>The test node's id which is retorned in the + response of the import test resource + </p> + </td> + </tr> + <tr> + <td> + <p><strong>shortTitle</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> + </td> + <td> + <p>The node's position relative to its sibling nodes (optional)</p> + </td> + </tr> + <tr> + <td> + <p><strong>longTitle</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> + </td> + <td> + <p>The node short title</p> + </td> + </tr> + <tr> + <td> + <p><strong>objectives</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> + </td> + <td> + <p>The node long title</p> + </td> + </tr> + <tr> + <td> + <p><strong>visibilityExpertRules</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The node learning objectives</p> + </td> + </tr> + <tr> + <td> + <p><strong>accessExpertRules</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The rules to view the node (optional)</p> + </td> + </tr> + <tr> + <td> + <p><strong>testResourceableId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The rules to access the node (optional)</p> + </td> + </tr> + </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e5961">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5964">Status Code 200 - application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5967">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6082">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6085">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e6095">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e5971">/repo/courses/{courseId}/authors/{identityKey}</h3> + <h3 id="d2e6099">/repo/courses/{courseId}/elements/assessment/{nodeId}</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -13177,24 +13125,13 @@ </tr> <tr> <td> - <p><strong>courseId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The course resourceable's id</p> - </td> - </tr> - <tr> - <td> - <p><strong>identityKey</strong></p> + <p><strong>nodeId</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> <td> - <p>The user identifier</p> + <p>The node's id of this assessment</p> </td> </tr> <tr> @@ -13212,45 +13149,23 @@ <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getAuthor">GET</h4> - <p>Get this specific author and owner of the course</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e5982">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5985">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>)</a></li> - <li><a href="#d2e5988">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#addAuthor">PUT</h4> - <p>Add an owner and author to the course</p> - <p><em>available response representations:</em></p> + <h4 id="http://www.example.com#updateAssessment">POST</h4> + <p>Updates an assessment building block.</p> + <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e5995">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e5998">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6001">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6110">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#removeAuthor">DELETE</h4> - <p>Remove an owner and author to the course</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e6008">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6011">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6014">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6127">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6130">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e6140">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e6017">/repo/courses/{courseId}/groups</h3> - <p>Description:<br> - CourseGroupWebService - - <P> - Initial Date: 7 apr. 2010 <br> - </p> + <h3 id="d2e6143">/repo/courses/{courseId}/elements/assessment</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -13269,165 +13184,125 @@ <p>The course resourceable's id</p> </td> </tr> - <tr> - <td> - <p><strong>courseId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td></td> - </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getGroupList">GET</h4> - <p>Lists all learn groups of the specified course.</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6025">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6028">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>)</a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#putNewGroup">PUT</h4> - <p>Creates a new group for the course.</p> + <h4 id="http://www.example.com#attachAssessmentPost">POST</h4> + <p>Attaches an assessment building block.</p> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e6042">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6043">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6045">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>)</a></li> - <li><a href="#d2e6055">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6151">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e6058">/repo/courses/{courseId}/groups/version</h3> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>courseId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The course resourceable's id</p> - </td> - </tr> - <tr> - <td> - <p><strong>courseId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td></td> - </tr> - </table> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getVersion">GET</h4> - <p>Retrieves the version of the Course Group Web Service.</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e6063">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6174">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6177">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e6187">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e6073">/repo/courses/{courseId}/groups/{groupKey}</h3> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>courseId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The course resourceable's id</p> - </td> - </tr> - <tr> - <td> - <p><strong>courseId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>groupKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The group's id</p> - </td> - </tr> - </table> - <h6>Methods</h6> - <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#deleteGroup">DELETE</h4> - <p>Deletes the business group specified by the key of the group.</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6081">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6084">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6087">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#getGroup">GET</h4> - <p>Retrieves the metadata of the specified group.</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6094">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6097">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>)</a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#updateGroup">POST</h4> - <p>Updates the metadata for the specified group.</p> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e6111">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> + <h4 id="http://www.example.com#attachAssessment">PUT</h4> + <p>Attaches an assessment building block.</p> + <h6>request query parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>parentNodeId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The node's id which will be the parent of this assessment</p> + </td> + </tr> + <tr> + <td> + <p><strong>position</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> + </td> + <td> + <p>The node's position relative to its sibling nodes (optional)</p> + </td> + </tr> + <tr> + <td> + <p><strong>shortTitle</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> + </td> + <td> + <p>The node short title</p> + </td> + </tr> + <tr> + <td> + <p><strong>longTitle</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> + </td> + <td> + <p>The node long title</p> + </td> + </tr> + <tr> + <td> + <p><strong>objectives</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> + </td> + <td> + <p>The node learning objectives</p> + </td> + </tr> + <tr> + <td> + <p><strong>visibilityExpertRules</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The rules to view the node (optional)</p> + </td> + </tr> + <tr> + <td> + <p><strong>accessExpertRules</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The rules to access the node (optional)</p> + </td> + </tr> + </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e6113">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6116">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>)</a></li> - <li><a href="#d2e6126">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6216">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6219">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e6229">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e6129">/repo/courses/{courseId}/groups/new</h3> + <h3 id="d2e6232">/repo/courses/{courseId}/elements/wiki/{nodeId}</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -13437,56 +13312,14 @@ </tr> <tr> <td> - <p><strong>courseId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The course resourceable's id</p> + <p><strong>nodeId</strong></p> </td> - </tr> - <tr> <td> - <p><strong>courseId</strong></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p>The node's id which of this wiki</p> </td> - <td></td> - </tr> - </table> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#postNewGroup">POST</h4> - <p>Fallback method for the browser.</p> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e6134">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6136">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>)</a></li> - <li><a href="#d2e6146">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e6149">/repo/courses/{courseId}/groups/{groupKey}/forum</h3> - <p>Description:<br> - Web service to manage a forum. - - <P> - Initial Date: 20 apr. 2010 <br> - </p> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> </tr> <tr> <td> @@ -13499,43 +13332,27 @@ <p>The course resourceable's id</p> </td> </tr> - <tr> - <td> - <p><strong>courseId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>groupKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The key of the group</p> - </td> - </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getForum">GET</h4> - <p>Retrieves the forum.</p> + <h4 id="http://www.example.com#updateWiki">POST</h4> + <p>Attaches an wiki building block.</p> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e6243">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e6159">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6162">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>)</a></li> - <li><a href="#d2e6172">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6263">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6266">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e6276">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e6175">/repo/courses/{courseId}/groups/{groupKey}/forum/threads<span class="optional">?start</span><span class="optional">&limit</span><span class="optional">&orderBy</span><span class="optional">&asc</span></h3> + <h3 id="d2e6279">/repo/courses/{courseId}/elements/wiki<span class="optional">?parentNodeId</span><span class="optional">&position</span><span class="optional">&shortTitle</span><span class="optional">&longTitle</span><span class="optional">&objectives</span><span class="optional">&visibilityExpertRules</span><span class="optional">&accessExpertRules</span><span class="optional">&wikiResourceableId</span></h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -13543,17 +13360,6 @@ <th>value</th> <th>description</th> </tr> - <tr> - <td> - <p><strong>courseId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The course resourceable's id</p> - </td> - </tr> <tr> <td> <p><strong>courseId</strong></p> @@ -13563,23 +13369,12 @@ </td> <td></td> </tr> - <tr> - <td> - <p><strong>groupKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The key of the group</p> - </td> - </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getThreads">GET</h4> - <p>Retrieves the threads in the forum</p> + <h4 id="http://www.example.com#attachWikiPost">POST</h4> + <p>Attaches an wiki building block.</p> <h6>request query parameters</h6> <table> <tr> @@ -13589,180 +13384,90 @@ </tr> <tr> <td> - <p><strong>start</strong></p> + <p><strong>parentNodeId</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> - <p>Default: <tt>0</tt></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> <td></td> </tr> <tr> <td> - <p><strong>limit</strong></p> + <p><strong>position</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> - <p>Default: <tt>25</tt></p> </td> <td></td> </tr> <tr> <td> - <p><strong>orderBy</strong></p> + <p><strong>shortTitle</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>creationDate</tt></p> - </td> - <td> - <p>(value name,creationDate)</p> + <p>Default: <tt>undefined</tt></p> </td> + <td></td> </tr> <tr> <td> - <p><strong>asc</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>true</tt></p> + <p><strong>longTitle</strong></p> </td> <td> - <p>(value true/false)</p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> </td> - </tr> - </table> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6189">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6192">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> - <li><a href="#d2e6202">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#newThreadToForum">PUT</h4> - <p>Creates a new thread in the forum of the course node</p> - <h6>request query parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> + <td></td> </tr> <tr> <td> - <p><strong>title</strong></p> + <p><strong>objectives</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> </td> - <td> - <p>The title for the first post in the thread</p> - </td> + <td></td> </tr> <tr> <td> - <p><strong>body</strong></p> + <p><strong>visibilityExpertRules</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> - <td> - <p>The body for the first post in the thread</p> - </td> + <td></td> </tr> <tr> <td> - <p><strong>authorKey</strong></p> + <p><strong>accessExpertRules</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>wikiResourceableId</strong></p> </td> <td> - <p>The author user key (optional)</p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> + <td></td> </tr> </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e6219">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6222">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e6232">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#newThreadToForumPost">POST</h4> - <p>Creates a new thread in the forum of the course node</p> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e6239">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6244">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6247">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e6257">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6294">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6297">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e6307">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e6260">/repo/courses/{courseId}/groups/{groupKey}/forum/posts/{threadKey}<span class="optional">?start</span><span class="optional">&limit</span><span class="optional">&orderBy</span><span class="optional">&asc</span></h3> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>courseId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The course resourceable's id</p> - </td> - </tr> - <tr> - <td> - <p><strong>courseId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>groupKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The key of the group</p> - </td> - </tr> - <tr> - <td> - <p><strong>threadKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The key of the thread</p> - </td> - </tr> - </table> - <h6>Methods</h6> - <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getMessages">GET</h4> - <p>Retrieves the messages in the thread</p> + <h4 id="http://www.example.com#attachWiki">PUT</h4> + <p>Attaches an wiki building block.</p> <h6>request query parameters</h6> <table> <tr> @@ -13772,60 +13477,91 @@ </tr> <tr> <td> - <p><strong>start</strong></p> + <p><strong>parentNodeId</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> - <p>Default: <tt>0</tt></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> <td></td> </tr> <tr> <td> - <p><strong>limit</strong></p> + <p><strong>position</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> - <p>Default: <tt>25</tt></p> </td> <td></td> </tr> <tr> <td> - <p><strong>orderBy</strong></p> + <p><strong>shortTitle</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>creationDate</tt></p> + <p>Default: <tt>undefined</tt></p> </td> + <td></td> + </tr> + <tr> <td> - <p>(value name, creationDate)</p> + <p><strong>longTitle</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> </td> + <td></td> </tr> <tr> <td> - <p><strong>asc</strong></p> + <p><strong>objectives</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>true</tt></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> </td> + <td></td> + </tr> + <tr> <td> - <p>(value true/false)</p> + <p><strong>visibilityExpertRules</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>accessExpertRules</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>wikiResourceableId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> + <td></td> </tr> </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e6277">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6280">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>)</a></li> - <li><a href="#d2e6290">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6323">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6326">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e6336">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e6293">/repo/courses/{courseId}/groups/{groupKey}/forum/posts/{messageKey}</h3> + <h3 id="d2e6339">/repo/courses/{courseId}/elements/blog/{nodeId}</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -13835,13 +13571,13 @@ </tr> <tr> <td> - <p><strong>courseId</strong></p> + <p><strong>nodeId</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> <td> - <p>The course resourceable's id</p> + <p>The node's id of this blog</p> </td> </tr> <tr> @@ -13851,50 +13587,55 @@ <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>groupKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> <td> - <p>The key of the group</p> + <p>The course resourceable's id</p> </td> </tr> + </table> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#updateBlog">POST</h4> + <p>Update an blog building block.</p> + <p><em>acceptable request representations:</em></p> + <ul> + <li><a href="#d2e6350">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e6370">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6373">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e6383">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e6386">/repo/courses/{courseId}/elements/blog<span class="optional">?parentNodeId</span><span class="optional">&position</span><span class="optional">&shortTitle</span><span class="optional">&longTitle</span><span class="optional">&objectives</span><span class="optional">&visibilityExpertRules</span><span class="optional">&accessExpertRules</span><span class="optional">&repoEntry</span></h3> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> <tr> <td> - <p><strong>messageKey</strong></p> + <p><strong>courseId</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td> - <p>The id of the reply message</p> + <p>The course resourceable's id</p> </td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#replyToPostPost">POST</h4> - <p>Creates a new reply in the forum of the course node</p> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e6301">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6312">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6315">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e6325">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#replyToPost">PUT</h4> - <p>Creates a new reply in the forum of the course node</p> + <h4 id="http://www.example.com#attachBlogPost">POST</h4> + <p>Attaches an blog building block.</p> <h6>request query parameters</h6> <table> <tr> @@ -13904,167 +13645,266 @@ </tr> <tr> <td> - <p><strong>title</strong></p> + <p><strong>parentNodeId</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> <td> - <p>The title for the first post in the thread</p> + <p>The node's id which will be the parent of this assessment</p> </td> </tr> <tr> <td> - <p><strong>body</strong></p> + <p><strong>position</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> + </td> + <td> + <p>The node's position relative to its sibling nodes (optional)</p> + </td> + </tr> + <tr> + <td> + <p><strong>shortTitle</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> </td> <td> - <p>The body for the first post in the thread</p> + <p>The node short title</p> </td> </tr> <tr> <td> - <p><strong>authorKey</strong></p> + <p><strong>longTitle</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> </td> <td> - <p>The author user key (optional)</p> + <p>The node long title</p> </td> </tr> - </table> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6342">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6345">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e6355">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#replyToPost">PUT</h4> - <p>Creates a new reply in the forum of the course node</p> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e6362">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6363">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6365">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6368">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>)</a></li> - <li><a href="#d2e6378">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e6381">/repo/courses/{courseId}/groups/{groupKey}/forum/posts/{messageKey}/attachments</h3> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>courseId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The course resourceable's id</p> - </td> - </tr> + <tr> + <td> + <p><strong>objectives</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> + </td> + <td> + <p>The node learning objectives</p> + </td> + </tr> + <tr> + <td> + <p><strong>visibilityExpertRules</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The rules to view the node (optional)</p> + </td> + </tr> + <tr> + <td> + <p><strong>accessExpertRules</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The rules to access the node (optional)</p> + </td> + </tr> + <tr> + <td> + <p><strong>repoEntry</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The softkey of the blog resourceable (optional)</p> + </td> + </tr> + </table> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e6419">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6422">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e6432">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#attachBlog">PUT</h4> + <p>Attaches an blog building block.</p> + <h6>request query parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>parentNodeId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The node's id which will be the parent of this assessment</p> + </td> + </tr> + <tr> + <td> + <p><strong>position</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> + </td> + <td> + <p>The node's position relative to its sibling nodes (optional)</p> + </td> + </tr> + <tr> + <td> + <p><strong>shortTitle</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> + </td> + <td> + <p>The node short title</p> + </td> + </tr> + <tr> + <td> + <p><strong>longTitle</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> + </td> + <td> + <p>The node long title</p> + </td> + </tr> + <tr> + <td> + <p><strong>objectives</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> + </td> + <td> + <p>The node learning objectives</p> + </td> + </tr> + <tr> + <td> + <p><strong>visibilityExpertRules</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The rules to view the node (optional)</p> + </td> + </tr> + <tr> + <td> + <p><strong>accessExpertRules</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The rules to access the node (optional)</p> + </td> + </tr> + <tr> + <td> + <p><strong>repoEntry</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The softkey of the blog resourceable (optional)</p> + </td> + </tr> + </table> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e6464">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6467">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e6477">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e6480">/repo/courses/{courseId}/elements/survey/{nodeId}</h3> + <h6>resource-wide template parameters</h6> + <table> <tr> - <td> - <p><strong>courseId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td></td> + <th>parameter</th> + <th>value</th> + <th>description</th> </tr> <tr> <td> - <p><strong>groupKey</strong></p> + <p><strong>nodeId</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> <td> - <p>The key of the group</p> + <p>The node's id which will be the parent of this assessment</p> </td> </tr> <tr> <td> - <p><strong>messageKey</strong></p> + <p><strong>courseId</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> - <td></td> + <td> + <p>The course resourceable's id</p> + </td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getAttachments">GET</h4> - <p>Retrieves the attachments of the message</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6387">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6390">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#replyToPostAttachment">PUT</h4> - <p>Upload the attachment of a message</p> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e6397">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6398">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6400">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6403">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#replyToPostAttachment">POST</h4> - <p>Upload the attachment of a message</p> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e6410">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6414">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6417">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#replyToPostAttachment">POST</h4> - <p>Upload the attachment of a message</p> + <h4 id="http://www.example.com#attachSurveyPost">POST</h4> + <p>Attaches an survey building block.</p> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e6424">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6491">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e6428">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6431">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6511">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6514">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e6524">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e6434">/repo/courses/{courseId}/groups/{groupKey}/forum/posts/{messageKey}/attachments/{filename}</h3> + <h3 id="d2e6527">/repo/courses/{courseId}/elements/survey<span class="optional">?parentNodeId</span><span class="optional">&position</span><span class="optional">&shortTitle</span><span class="optional">&longTitle</span><span class="optional">&objectives</span><span class="optional">&visibilityExpertRules</span><span class="optional">&accessExpertRules</span><span class="optional">&surveyResourceableId</span></h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -14072,17 +13912,6 @@ <th>value</th> <th>description</th> </tr> - <tr> - <td> - <p><strong>courseId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The course resourceable's id</p> - </td> - </tr> <tr> <td> <p><strong>courseId</strong></p> @@ -14092,55 +13921,211 @@ </td> <td></td> </tr> - <tr> - <td> - <p><strong>groupKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The key of the group</p> - </td> - </tr> - <tr> - <td> - <p><strong>filename</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>The name of the attachment</p> - </td> - </tr> - <tr> - <td> - <p><strong>messageKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The identity key of the user being searched</p> - </td> - </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getAttachment">GET</h4> - <p>Retrieves the attachment of the message</p> + <h4 id="http://www.example.com#attachSurveyPost">POST</h4> + <p>Attaches an survey building block.</p> + <h6>request query parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>parentNodeId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>position</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>shortTitle</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> + </td> + <td> + <p>The node's position relative to its sibling nodes (optional)</p> + </td> + </tr> + <tr> + <td> + <p><strong>longTitle</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> + </td> + <td> + <p>The node short title</p> + </td> + </tr> + <tr> + <td> + <p><strong>objectives</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> + </td> + <td> + <p>The node long title</p> + </td> + </tr> + <tr> + <td> + <p><strong>visibilityExpertRules</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The node learning objectives</p> + </td> + </tr> + <tr> + <td> + <p><strong>accessExpertRules</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The rules to view the node (optional)</p> + </td> + </tr> + <tr> + <td> + <p><strong>surveyResourceableId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td> + <p>The rules to access the node (optional)</p> + </td> + </tr> + </table> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e6554">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6557">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e6567">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#attachSurvey">PUT</h4> + <p>Attaches an survey building block.</p> + <h6>request query parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>parentNodeId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>position</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>shortTitle</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>longTitle</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>objectives</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>visibilityExpertRules</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>accessExpertRules</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>surveyResourceableId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> + </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e6445">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6448">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6583">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6586">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e6596">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e6451">/repo/courses/{courseId}/groups/{groupKey}/folder</h3> + <h3 id="d2e6599">/repo/courses/{courseId}/elements/externalpage/{nodeId}</h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -14150,13 +14135,13 @@ </tr> <tr> <td> - <p><strong>courseId</strong></p> + <p><strong>parentNodeId</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> <td> - <p>The course resourceable's id</p> + <p>The node's id of this external page</p> </td> </tr> <tr> @@ -14166,84 +14151,31 @@ <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>groupKey</strong></p> - </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p>The course resourceable's id</p> </td> - <td></td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#listFiles">GET</h4> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6455">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6456">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6457">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6458">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6459">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#postFileToRoot">POST</h4> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e6462">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6467">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6468">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#postFile64ToRoot">POST</h4> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e6471">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6476">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6477">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#putFileToRoot">PUT</h4> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e6480">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6485">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6486">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#putFile64VOToRoot">PUT</h4> + <h4 id="http://www.example.com#updateExternalPage">POST</h4> + <p>Update an external page building block.</p> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e6489">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6490">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6610">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e6492">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6493">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6630">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6633">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e6643">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e6494">/repo/courses/{courseId}/groups/{groupKey}/folder/{path:.*}</h3> + <h3 id="d2e6646">/repo/courses/{courseId}/elements/externalpage<span class="optional">?parentNodeId</span><span class="optional">&position</span><span class="optional">&shortTitle</span><span class="optional">&longTitle</span><span class="optional">&objectives</span><span class="optional">&visibilityExpertRules</span><span class="optional">&accessExpertRules</span><span class="optional">&url</span></h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -14262,30 +14194,254 @@ <p>The course resourceable's id</p> </td> </tr> - <tr> - <td> - <p><strong>courseId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td></td> - </tr> - <tr> + </table> + <h6>Methods</h6> + <div class="methods"> + <div class="method"> + <h4 id="http://www.example.com#attachExternalPagePost">POST</h4> + <p>Attaches an external page building block.</p> + <h6>request query parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>parentNodeId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The node's id which will be the parent of this assessment</p> + </td> + </tr> + <tr> + <td> + <p><strong>position</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> + </td> + <td> + <p>The node's position relative to its sibling nodes (optional)</p> + </td> + </tr> + <tr> + <td> + <p><strong>shortTitle</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> + </td> + <td> + <p>The node short title</p> + </td> + </tr> + <tr> + <td> + <p><strong>longTitle</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> + </td> + <td> + <p>The node long title</p> + </td> + </tr> + <tr> + <td> + <p><strong>objectives</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> + </td> + <td> + <p>The node learning objectives</p> + </td> + </tr> + <tr> + <td> + <p><strong>visibilityExpertRules</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The rules to view the node (optional)</p> + </td> + </tr> + <tr> + <td> + <p><strong>accessExpertRules</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The rules to access the node (optional)</p> + </td> + </tr> + <tr> + <td> + <p><strong>url</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The URL of the external page</p> + </td> + </tr> + </table> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e6679">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6682">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e6692">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#attachExternalPage">PUT</h4> + <p>Attaches an external page building block.</p> + <h6>request query parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>parentNodeId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The node's id which will be the parent of this assessment</p> + </td> + </tr> + <tr> + <td> + <p><strong>position</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> + </td> + <td> + <p>The node's position relative to its sibling nodes (optional)</p> + </td> + </tr> + <tr> + <td> + <p><strong>shortTitle</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> + </td> + <td> + <p>The node short title</p> + </td> + </tr> + <tr> + <td> + <p><strong>longTitle</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> + </td> + <td> + <p>The node long title</p> + </td> + </tr> + <tr> + <td> + <p><strong>objectives</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>undefined</tt></p> + </td> + <td> + <p>The node learning objectives</p> + </td> + </tr> + <tr> + <td> + <p><strong>visibilityExpertRules</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The rules to view the node (optional)</p> + </td> + </tr> + <tr> + <td> + <p><strong>accessExpertRules</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The rules to access the node (optional)</p> + </td> + </tr> + <tr> + <td> + <p><strong>url</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td> + <p>The URL of the external page</p> + </td> + </tr> + </table> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e6724">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6727">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6730">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e6740">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + </div> + </div> + <div class="resource"> + <h3 id="d2e6743">/repo/courses/{courseId}/elements/task/{nodeId}/file</h3> + <h6>resource-wide template parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> <td> - <p><strong>groupKey</strong></p> + <p><strong>nodeId</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> <td></td> </tr> <tr> <td> - <p><strong>path</strong></p> + <p><strong>courseId</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td></td> </tr> @@ -14293,269 +14449,38 @@ <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#listFiles">GET</h4> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6498">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6499">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6500">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6501">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6502">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#postFileToFolder">POST</h4> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e6505">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6510">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6511">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6512">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#postFile64ToFolder">POST</h4> + <h4 id="http://www.example.com#attachTaskFilePost">POST</h4> + <p>This attaches a Task file onto a given task element.</p> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e6515">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6750">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e6520">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6521">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6522">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6755">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6758">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e6768">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#putFileToFolder">PUT</h4> + <h4 id="http://www.example.com#attachTaskFile">PUT</h4> + <p>This attaches a Task file onto a given task element.</p> <p><em>acceptable request representations:</em></p> <ul> - <li><a href="#d2e6525">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6775">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e6530">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6531">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6532">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#putFile64ToFolder">PUT</h4> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e6535">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6536">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6538">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6539">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#putFolders">PUT</h4> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6542">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6543">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#deleteItem">DELETE</h4> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6546">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6547">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e6548">/repo/courses/{courseId}/groups/{groupKey}/folder/version</h3> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>courseId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The course resourceable's id</p> - </td> - </tr> - <tr> - <td> - <p><strong>courseId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>groupKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td></td> - </tr> - </table> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getVersion">GET</h4> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6551">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e6552">/repo/courses/{courseId}/assessments</h3> - <p>Description:<br> - Retrieve and import course assessments - - <P> - Initial Date: 7 apr. 2010 <br> - </p> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>courseId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The course resourceable's id</p> - </td> - </tr> - </table> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getCourseResults">GET</h4> - <p>Returns the results of the course.</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6562">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6565">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} assessableResultsVO">ns3:assessableResultsVO</abbr>)</a></li> - <li><a href="#d2e6575">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e6578">/repo/courses/{courseId}/assessments/version</h3> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>courseId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The course resourceable's id</p> - </td> - </tr> - </table> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getVersion">GET</h4> - <p>Retireves the version of the Course Assessment Web Service.</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6583">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e6593">/repo/courses/{courseId}/assessments/users/{identityKey}</h3> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>courseId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The course resourceable's id</p> - </td> - </tr> - <tr> - <td> - <p><strong>identityKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The id of the user</p> - </td> - </tr> - <tr> - <td> - <p><strong>courseId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The course resourceable's id</p> - </td> - </tr> - </table> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getCourseResultsOf">GET</h4> - <p>Returns the results of the course.</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6604">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6607">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} assessableResultsVO">ns3:assessableResultsVO</abbr>)</a></li> - <li><a href="#d2e6617">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6779">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6782">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>)</a></li> + <li><a href="#d2e6792">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6795">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e6620">/repo/courses/{courseId}/assessments/{nodeId}</h3> + <h3 id="d2e6799">/repo/courses/{courseId}/elements/task/{nodeId}/configuration<span class="optional">?enableAssignment</span><span class="optional">&taskAssignmentType</span><span class="optional">&taskAssignmentText</span><span class="optional">&enableTaskPreview</span><span class="optional">&enableTaskDeselect</span><span class="optional">&onlyOneUserPerTask</span><span class="optional">&enableDropbox</span><span class="optional">&enableDropboxConfirmationMail</span><span class="optional">&dropboxConfirmationText</span><span class="optional">&enableReturnbox</span><span class="optional">&enableScoring</span><span class="optional">&grantScoring</span><span class="optional">&scoreMin</span><span class="optional">&scoreMax</span><span class="optional">&grantPassing</span><span class="optional">&scorePassingThreshold</span><span class="optional">&enableCommentField</span><span class="optional">&commentForUser</span><span class="optional">&commentForCoaches</span><span class="optional">&enableSolution</span><span class="optional">&accessExpertRuleTask</span><span class="optional">&accessExpertRuleDropbox</span><span class="optional">&accessExpertRuleReturnbox</span><span class="optional">&accessExpertRuleScoring</span><span class="optional">&accessExpertRuleSolution</span></h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -14563,17 +14488,6 @@ <th>value</th> <th>description</th> </tr> - <tr> - <td> - <p><strong>courseId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The course resourceable's id</p> - </td> - </tr> <tr> <td> <p><strong>nodeId</strong></p> @@ -14581,9 +14495,7 @@ <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> - <td> - <p>The id of the course building block</p> - </td> + <td></td> </tr> <tr> <td> @@ -14592,42 +14504,515 @@ <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> - <td> - <p>The resourceable id of the course</p> - </td> + <td></td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getAssessableResults">GET</h4> - <p>Exports results for an assessable course node for all students.</p> + <h4 id="http://www.example.com#addTaskConfigurationPost">POST</h4> + <p>This attaches the run-time configuration onto a given task element.</p> + <h6>request query parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>enableAssignment</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>taskAssignmentType</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>taskAssignmentText</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>enableTaskPreview</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>enableTaskDeselect</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>onlyOneUserPerTask</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>enableDropbox</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>enableDropboxConfirmationMail</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>dropboxConfirmationText</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>enableReturnbox</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>enableScoring</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>grantScoring</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>scoreMin</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#float">float</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>scoreMax</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#float">float</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>grantPassing</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>scorePassingThreshold</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#float">float</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>enableCommentField</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>commentForUser</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>commentForCoaches</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>enableSolution</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>accessExpertRuleTask</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>accessExpertRuleDropbox</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>accessExpertRuleReturnbox</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>accessExpertRuleScoring</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>accessExpertRuleSolution</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + </table> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e6834">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6837">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6840">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} surveyConfigVO">ns3:surveyConfigVO</abbr>)</a></li> + <li><a href="#d2e6850">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6853">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#addTaskConfiguration">PUT</h4> + <p>This attaches the run-time configuration onto a given task element.</p> + <h6>request query parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>enableAssignment</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>taskAssignmentType</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>taskAssignmentText</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>enableTaskPreview</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>enableTaskDeselect</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>onlyOneUserPerTask</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>enableDropbox</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>enableDropboxConfirmationMail</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>dropboxConfirmationText</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>enableReturnbox</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>enableScoring</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>grantScoring</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>scoreMin</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#float">float</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>scoreMax</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#float">float</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>grantPassing</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>scorePassingThreshold</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#float">float</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>enableCommentField</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>commentForUser</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>commentForCoaches</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>enableSolution</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>accessExpertRuleTask</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>accessExpertRuleDropbox</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>accessExpertRuleReturnbox</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>accessExpertRuleScoring</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>accessExpertRuleSolution</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> + </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e6631">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6634">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} assessableResultsVO">ns3:assessableResultsVO</abbr>)</a></li> - <li><a href="#d2e6644">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6888">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6891">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6894">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} surveyConfigVO">ns3:surveyConfigVO</abbr>)</a></li> + <li><a href="#d2e6904">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6907">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#postAssessableResults">POST</h4> - <p>Imports results for an assessable course node for the authenticated student.</p> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e6651">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6652">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> + <h4 id="http://www.example.com#getTaskConfiguration">GET</h4> + <p>Retrieves configuration of the task course node</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e6654">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6657">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6660">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6914">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6917">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} surveyConfigVO">ns3:surveyConfigVO</abbr>)</a></li> + <li><a href="#d2e6927">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e6663">/repo/courses/{courseId}/assessments/{nodeId}/users/{identityKey}</h3> + <h3 id="d2e6930">/repo/courses/{courseId}/elements/survey/{nodeId}/configuration<span class="optional">?allowCancel</span><span class="optional">&allowNavigation</span><span class="optional">&allowSuspend</span><span class="optional">&sequencePresentation</span><span class="optional">&showNavigation</span><span class="optional">&showQuestionTitle</span><span class="optional">&showSectionsOnly</span></h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -14635,38 +15020,14 @@ <th>value</th> <th>description</th> </tr> - <tr> - <td> - <p><strong>courseId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The course resourceable's id</p> - </td> - </tr> <tr> <td> <p><strong>nodeId</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The ident of the course building block</p> - </td> - </tr> - <tr> - <td> - <p><strong>identityKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The id of the user</p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> </td> + <td></td> </tr> <tr> <td> @@ -14675,27 +15036,205 @@ <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> - <td> - <p>The course resourceable's id</p> - </td> + <td></td> </tr> </table> <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#getCourseNodeResultsForNode">GET</h4> - <p>Returns the results of a student at a specific assessable node</p> + <h4 id="http://www.example.com#addSurveyConfigurationPost">POST</h4> + <p>This attaches the run-time configuration onto a given survey element.</p> + <h6>request query parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>allowCancel</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>false</tt></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>allowNavigation</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>false</tt></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>allowSuspend</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>false</tt></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>sequencePresentation</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>itemPage</tt></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>showNavigation</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>true</tt></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>showQuestionTitle</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>true</tt></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>showSectionsOnly</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>false</tt></p> + </td> + <td></td> + </tr> + </table> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e6945">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6948">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6951">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} surveyConfigVO">ns3:surveyConfigVO</abbr>)</a></li> + <li><a href="#d2e6961">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6964">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#addSurveyConfiguration">PUT</h4> + <p>This attaches the run-time configuration onto a given survey element.</p> + <h6>request query parameters</h6> + <table> + <tr> + <th>parameter</th> + <th>value</th> + <th>description</th> + </tr> + <tr> + <td> + <p><strong>allowCancel</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>false</tt></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>allowNavigation</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>false</tt></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>allowSuspend</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>false</tt></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>sequencePresentation</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>itemPage</tt></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>showNavigation</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>true</tt></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>showQuestionTitle</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>true</tt></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>showSectionsOnly</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>false</tt></p> + </td> + <td></td> + </tr> + </table> + <p><em>available response representations:</em></p> + <ul> + <li><a href="#d2e6979">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6982">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6985">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} surveyConfigVO">ns3:surveyConfigVO</abbr>)</a></li> + <li><a href="#d2e6995">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e6998">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + </ul> + </div> + <div class="method"> + <h4 id="http://www.example.com#getSurveyConfiguration">GET</h4> + <p>Retrieves configuration of the survey course node</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e6677">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6680">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} assessableResultsVO">ns3:assessableResultsVO</abbr>)</a></li> - <li><a href="#d2e6690">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e7005">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e7008">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} surveyConfigVO">ns3:surveyConfigVO</abbr>)</a></li> + <li><a href="#d2e7018">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <div class="resource"> - <h3 id="d2e6693">/repo/courses/{courseId}/elements/contact<span class="optional">?parentNodeId</span><span class="optional">&position</span><span class="optional">&shortTitle</span><span class="optional">&longTitle</span><span class="optional">&objectives</span><span class="optional">&visibilityExpertRules</span><span class="optional">&accessExpertRules</span><span class="optional">&coaches</span><span class="optional">&participants</span><span class="optional">&groups</span><span class="optional">&areas</span><span class="optional">&to</span><span class="optional">&defaultSubject</span><span class="optional">&defaultBody</span></h3> + <h3 id="d2e7021">/repo/courses/{courseId}/elements/test/{nodeId}/configuration<span class="optional">?allowCancel</span><span class="optional">&allowNavigation</span><span class="optional">&allowSuspend</span><span class="optional">&numAttempts</span><span class="optional">&sequencePresentation</span><span class="optional">&showNavigation</span><span class="optional">&showQuestionTitle</span><span class="optional">&showResultsAfterFinish</span><span class="optional">&showResultsDependendOnDate</span><span class="optional">&showResultsOnHomepage</span><span class="optional">&showScoreInfo</span><span class="optional">&showQuestionProgress</span><span class="optional">&showScoreProgress</span><span class="optional">&showSectionsOnly</span><span class="optional">&summaryPresentation</span><span class="optional">&startDate</span><span class="optional">&endDate</span></h3> <h6>resource-wide template parameters</h6> <table> <tr> @@ -14703,6 +15242,15 @@ <th>value</th> <th>description</th> </tr> + <tr> + <td> + <p><strong>nodeId</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + </td> + <td></td> + </tr> <tr> <td> <p><strong>courseId</strong></p> @@ -14716,7 +15264,8 @@ <h6>Methods</h6> <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#attachContact">PUT</h4> + <h4 id="http://www.example.com#addTestConfigurationPost">POST</h4> + <p>This attaches the run-time configuration onto a given test element.</p> <h6>request query parameters</h6> <table> <tr> @@ -14726,73 +15275,97 @@ </tr> <tr> <td> - <p><strong>parentNodeId</strong></p> + <p><strong>allowCancel</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>false</tt></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>allowNavigation</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>false</tt></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>allowSuspend</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>false</tt></p> </td> <td></td> </tr> <tr> <td> - <p><strong>position</strong></p> + <p><strong>numAttempts</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> + <p>Default: <tt>0</tt></p> </td> <td></td> </tr> <tr> <td> - <p><strong>shortTitle</strong></p> + <p><strong>sequencePresentation</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> + <p>Default: <tt>itemPage</tt></p> </td> <td></td> </tr> <tr> <td> - <p><strong>longTitle</strong></p> + <p><strong>showNavigation</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>true</tt></p> </td> <td></td> </tr> <tr> <td> - <p><strong>objectives</strong></p> + <p><strong>showQuestionTitle</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>true</tt></p> </td> <td></td> </tr> <tr> <td> - <p><strong>visibilityExpertRules</strong></p> + <p><strong>showResultsAfterFinish</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>true</tt></p> </td> <td></td> </tr> <tr> <td> - <p><strong>accessExpertRules</strong></p> + <p><strong>showResultsDependendOnDate</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>false</tt></p> </td> <td></td> </tr> <tr> <td> - <p><strong>coaches</strong></p> + <p><strong>showResultsOnHomepage</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> @@ -14802,225 +15375,85 @@ </tr> <tr> <td> - <p><strong>participants</strong></p> + <p><strong>showScoreInfo</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>false</tt></p> + <p>Default: <tt>true</tt></p> </td> <td></td> </tr> <tr> <td> - <p><strong>groups</strong></p> + <p><strong>showQuestionProgress</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>true</tt></p> </td> <td></td> </tr> <tr> <td> - <p><strong>areas</strong></p> + <p><strong>showScoreProgress</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>true</tt></p> </td> <td></td> </tr> <tr> <td> - <p><strong>to</strong></p> + <p><strong>showSectionsOnly</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>false</tt></p> </td> <td></td> </tr> <tr> <td> - <p><strong>defaultSubject</strong></p> + <p><strong>summaryPresentation</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>summaryCompact</tt></p> </td> <td></td> </tr> <tr> <td> - <p><strong>defaultBody</strong></p> + <p><strong>startDate</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + </td> + <td></td> + </tr> + <tr> + <td> + <p><strong>endDate</strong></p> + </td> + <td> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td></td> </tr> </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e6713">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6714">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#attachContactPost">POST</h4> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e6717">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6734">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6735">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e6737">/api</h3> - <p>Description:<br> - Service for general informations on the OLAT REST Api. - - <P> - Initial Date: 14 apr. 2010 <br> - </p> - <h6>Methods</h6> - <div class="methods"></div> - </div> - <div class="resource"> - <h3 id="d2e6740">/api/version</h3> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getVersion">GET</h4> - <p>Version number of the whole REST API of OLAT.</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6745">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e6755">/api/doc</h3> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getHtmlDoc">GET</h4> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6758">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e6759">/api/doc/{filename}</h3> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>filename</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td></td> - </tr> - </table> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getImage1">GET</h4> - <p>Returns images for the documentation of OLAT.</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6765">Status Code 200 - image/jpeg<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e6768">/api/{filename}</h3> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>filename</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td></td> - </tr> - </table> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getImage2">GET</h4> - <p>Returns images for the documentation of OLAT.</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6774">Status Code 200 - image/jpeg<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e6777">/api/copyright</h3> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getCopyrightXhtml">GET</h4> - <p>Returns the copyright of OLAT.</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6782">Status Code 200 - text/html, application/xhtml+xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#getCopyrightPlainText">GET</h4> - <p>Returns the copyright of OLAT.</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6789">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e7047">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e7050">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e7053">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} testConfigVO">ns3:testConfigVO</abbr>)</a></li> + <li><a href="#d2e7063">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e7066">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e6792">/repo/courses/{courseId}/elements/enrollment<span class="optional">?parentNodeId</span><span class="optional">&position</span><span class="optional">&shortTitle</span><span class="optional">&longTitle</span><span class="optional">&objectives</span><span class="optional">&visibilityExpertRules</span><span class="optional">&accessExpertRules</span><span class="optional">&groups</span><span class="optional">&cancelEnabled</span></h3> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>courseId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td></td> - </tr> - </table> - <h6>Methods</h6> - <div class="methods"> <div class="method"> - <h4 id="http://www.example.com#attachEnrolmment">PUT</h4> + <h4 id="http://www.example.com#addTestConfiguration">PUT</h4> + <p>This attaches the run-time configuration onto a given test element.</p> <h6>request query parameters</h6> <table> <tr> @@ -15030,507 +15463,166 @@ </tr> <tr> <td> - <p><strong>parentNodeId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>position</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>shortTitle</strong></p> + <p><strong>allowCancel</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>false</tt></p> </td> <td></td> </tr> <tr> <td> - <p><strong>longTitle</strong></p> + <p><strong>allowNavigation</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>false</tt></p> </td> <td></td> </tr> <tr> <td> - <p><strong>objectives</strong></p> + <p><strong>allowSuspend</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - <p>Default: <tt>undefined</tt></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>false</tt></p> </td> <td></td> </tr> <tr> <td> - <p><strong>visibilityExpertRules</strong></p> + <p><strong>numAttempts</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> + <p>Default: <tt>0</tt></p> </td> <td></td> </tr> <tr> <td> - <p><strong>accessExpertRules</strong></p> + <p><strong>sequencePresentation</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>itemPage</tt></p> </td> <td></td> </tr> <tr> <td> - <p><strong>groups</strong></p> + <p><strong>showNavigation</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>true</tt></p> </td> <td></td> </tr> <tr> <td> - <p><strong>cancelEnabled</strong></p> + <p><strong>showQuestionTitle</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> - <p>Default: <tt>false</tt></p> + <p>Default: <tt>true</tt></p> </td> <td></td> </tr> - </table> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6806">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6807">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#attachEnrollmenetPost">POST</h4> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e6810">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6821">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6822">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e6823">/repo/courses/{courseId}/elements/enrollment/{nodeId}/groups</h3> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>courseId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>nodeId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td></td> - </tr> - <tr> - <td> - <p><strong>courseId</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td></td> - </tr> - </table> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getGroups">GET</h4> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6828">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6829">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e6830">/catalog</h3> - <p>Description:<br> - A web service for the catalog - - <P> - Initial Date: 5 may 2010 <br> - </p> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getRoots">GET</h4> - <p>Returns the list of root catalog entries.</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6837">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>)</a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e6847">/catalog/{path:.*}/owners/{identityKey}</h3> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>path</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>The path</p> - </td> - </tr> - <tr> - <td> - <p><strong>identityKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> - </td> - <td> - <p>The id of the user</p> - </td> - </tr> - </table> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getOwner">GET</h4> - <p>Retrieves data of an owner of the local sub tree</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6858">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6861">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>)</a></li> - <li><a href="#d2e6871">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#addOwner">PUT</h4> - <p>Add an owner of the local sub tree</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6878">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6881">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>)</a></li> - <li><a href="#d2e6891">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#removeOwner">DELETE</h4> - <p>Remove an owner of the local sub tree</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6898">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6901">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>)</a></li> - <li><a href="#d2e6911">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e6914">/catalog/version</h3> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getVersion">GET</h4> - <p>Retrieves the version of the Catalog Web Service.</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6919">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e6929">/catalog/{path:.*}/children<span class="optional">?start</span><span class="optional">&limit</span></h3> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>path</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>The path</p> - </td> - </tr> - </table> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getChildren">GET</h4> - <p>Returns a list of catalog entries.</p> - <h6>request query parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> <tr> <td> - <p><strong>start</strong></p> + <p><strong>showResultsAfterFinish</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> - <p>Default: <tt>0</tt></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>true</tt></p> </td> <td></td> </tr> <tr> <td> - <p><strong>limit</strong></p> + <p><strong>showResultsDependendOnDate</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> - <p>Default: <tt>25</tt></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>false</tt></p> </td> - <td></td> - </tr> - </table> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6940">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6943">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>)</a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e6953">/catalog/{path:.*}</h3> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>path</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>The path</p> - </td> - </tr> - </table> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getCatalogEntry">GET</h4> - <p>Returns the metadata of the catalog entry.</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6961">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>)</a></li> - <li><a href="#d2e6971">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#addCatalogEntry">PUT</h4> - <p>Adds a catalog entry under the path specified in the URL.</p> - <h6>request query parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> + <td></td> </tr> <tr> <td> - <p><strong>name</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><strong>showResultsOnHomepage</strong></p> </td> <td> - <p>The name</p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>false</tt></p> </td> + <td></td> </tr> <tr> <td> - <p><strong>description</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><strong>showScoreInfo</strong></p> </td> <td> - <p>The description</p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>true</tt></p> </td> + <td></td> </tr> <tr> <td> - <p><strong>type</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#int">int</a></em></p> + <p><strong>showQuestionProgress</strong></p> </td> <td> - <p>The type (leaf or node)</p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>true</tt></p> </td> + <td></td> </tr> <tr> <td> - <p><strong>repoEntryKey</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p><strong>showScoreProgress</strong></p> </td> <td> - <p>The id of the repository entry</p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>true</tt></p> </td> - </tr> - </table> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e6991">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e6994">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>)</a></li> - <li><a href="#d2e7004">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#addCatalogEntry">PUT</h4> - <p>Adds a catalog entry under the path specified in the URL.</p> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e7011">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e7012">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e7014">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e7017">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>)</a></li> - <li><a href="#d2e7027">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#updatePostCatalogEntry">POST</h4> - <p>Updates the catalog entry under the path specified in the URL.</p> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e7034">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e7045">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e7048">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>)</a></li> - <li><a href="#d2e7058">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#updateCatalogEntry">POST</h4> - <p>Updates the catalog entry with the path specified in the URL.</p> - <h6>request query parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> + <td></td> </tr> <tr> <td> - <p><strong>newParentKey</strong></p> + <p><strong>showSectionsOnly</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#boolean">boolean</a></em></p> + <p>Default: <tt>false</tt></p> </td> <td></td> </tr> - </table> - <p><em>acceptable request representations:</em></p> - <ul> - <li><a href="#d2e7066">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e7067">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e7069">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e7072">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>)</a></li> - <li><a href="#d2e7082">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - <div class="method"> - <h4 id="http://www.example.com#updateCatalogEntry">POST</h4> - <p>Updates the catalog entry with the path specified in the URL.</p> - <h6>request query parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> <tr> <td> - <p><strong>name</strong></p> + <p><strong>summaryPresentation</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p>Default: <tt>summaryCompact</tt></p> </td> <td></td> </tr> <tr> <td> - <p><strong>description</strong></p> + <p><strong>startDate</strong></p> </td> <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> + <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> </td> <td></td> </tr> <tr> <td> - <p><strong>newParentKey</strong></p> + <p><strong>endDate</strong></p> </td> <td> <p><em><a href="http://www.w3.org/TR/xmlschema-2/#long">long</a></em></p> @@ -15540,1297 +15632,1747 @@ </table> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e7093">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e7096">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>)</a></li> - <li><a href="#d2e7106">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e7092">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e7095">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e7098">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} testConfigVO">ns3:testConfigVO</abbr>)</a></li> + <li><a href="#d2e7108">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e7111">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> <div class="method"> - <h4 id="http://www.example.com#deleteCatalogEntry">DELETE</h4> - <p>Deletes the catalog entry with the path specified in the URL.</p> - <p><em>available response representations:</em></p> - <ul> - <li><a href="#d2e7113">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e7116">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>)</a></li> - <li><a href="#d2e7126">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - </ul> - </div> - </div> - </div> - <div class="resource"> - <h3 id="d2e7129">/catalog/{path:.*}/owners</h3> - <h6>resource-wide template parameters</h6> - <table> - <tr> - <th>parameter</th> - <th>value</th> - <th>description</th> - </tr> - <tr> - <td> - <p><strong>path</strong></p> - </td> - <td> - <p><em><a href="http://www.w3.org/TR/xmlschema-2/#string">string</a></em></p> - </td> - <td> - <p>The path</p> - </td> - </tr> - </table> - <h6>Methods</h6> - <div class="methods"> - <div class="method"> - <h4 id="http://www.example.com#getOwners">GET</h4> - <p>Get the owners of the local sub tree</p> + <h4 id="http://www.example.com#getTestConfiguration">GET</h4> + <p>Retrieves configuration of the test course node</p> <p><em>available response representations:</em></p> <ul> - <li><a href="#d2e7137">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> - <li><a href="#d2e7140">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>)</a></li> - <li><a href="#d2e7150">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e7118">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> + <li><a href="#d2e7121">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} testConfigVO">ns3:testConfigVO</abbr>)</a></li> + <li><a href="#d2e7131">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></a></li> </ul> </div> </div> </div> <h2 id="representations">Representations</h2> - <h3 id="d2e10">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p> - <h6>Example</h6><pre><code>1.0</code></pre></p> - <p>The version of this specific Web Service</p> - <h3 id="d2e32">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The identity not found</p> - <h3 id="d2e35">Status Code 200 - text/plain, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p> - <h6>Example</h6><pre><code>&lt;hello&gt;Hello john&lt;/hello&gt;</code></pre></p> - <p>Say hello to the authenticated user, and give it a security token</p> - <h3 id="d2e45">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The authentication has failed</p> - <h3 id="d2e58">Status Code 200 - text/plain, text/html, application/xml, application/json (<abbr title="{http://www.example.com} repositoryEntryVO">ns3:repositoryEntryVO</abbr>) - </h3> - <p> - <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<repositoryEntries totalCount="1"> - <repositoryEntries> - <repositoryEntrie> - <key>479286</key> - <softkey>internal_cp</softkey> - <resourcename>fdhasl</resourcename> - <displayname>CP-demo</displayname> - <resourceableId>4368567</resourceableId> - <resourceableTypeName>CourseModule</resourceableTypeName> - </repositoryEntrie> - </repositoryEntries> -</repositoryEntries> -</code></pre></p> - <p>List all entries in the repository</p> - <div class="representation"> - <h6>XML Schema</h6> - <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e72">Status Code 200 - text/plain, text/html, application/xml, application/json (<abbr title="{http://www.example.com} repositoryEntryVO">ns3:repositoryEntryVO</abbr>) - </h3> - <p> - <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<repositoryEntries totalCount="1"> - <repositoryEntries> - <repositoryEntrie> - <key>479286</key> - <softkey>internal_cp</softkey> - <resourcename>fdhasl</resourcename> - <displayname>CP-demo</displayname> - <resourceableId>4368567</resourceableId> - <resourceableTypeName>CourseModule</resourceableTypeName> - </repositoryEntrie> - </repositoryEntries> -</repositoryEntries> -</code></pre></p> - <p>List all entries in the repository</p> - <div class="representation"> - <h6>XML Schema</h6> - <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e86">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e103">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} repositoryEntryVO">ns3:repositoryEntryVO</abbr>) - </h3> - <p> - <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<repositoryEntryVO> - <key>479286</key> - <softkey>internal_cp</softkey> - <resourcename>fdhasl</resourcename> - <displayname>CP-demo</displayname> - <resourceableId>4368567</resourceableId> - <resourceableTypeName>CourseModule</resourceableTypeName> -</repositoryEntryVO> -</code></pre></p> - <p>Import the resource and return the repository entry</p> - <div class="representation"> - <h6>XML Schema</h6> - <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e113">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e121">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e140">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} repositoryEntryVO">ns3:repositoryEntryVO</abbr>) + <h3 id="d2e12">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} folderVOes">ns3:folderVOes</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<repositoryEntryVO> - <key>479286</key> - <softkey>internal_cp</softkey> - <resourcename>fdhasl</resourcename> - <displayname>CP-demo</displayname> - <resourceableId>4368567</resourceableId> - <resourceableTypeName>CourseModule</resourceableTypeName> -</repositoryEntryVO> +<folders totalCount="1"> + <folders> + <folder delete="false" list="false" read="false" write="false" subscribed="true" courseNodeId="438950850389" courseKey="375397" name="Course folder"/> + </folders> +</folders> </code></pre></p> - <p>Search for repository entries</p> + <p>The folders</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e150">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e22">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e161">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course not found</p> - <h3 id="d2e164">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The metadatas of the created course</p> - <h3 id="d2e167">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e174">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The repository entry not found</p> - <h3 id="d2e177">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} repositoryEntryVO">ns3:repositoryEntryVO</abbr>) + <h3 id="d2e29">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e30">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e31">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e32">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e33">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e36">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e41">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e42">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e45">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e50">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e51">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e54">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e59">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e60">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e63">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e64">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e66">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e67">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e72">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e73">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e74">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e75">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e76">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e79">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e84">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e85">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e86">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e89">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e94">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e95">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e96">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e99">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e104">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e105">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e106">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e109">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e110">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e112">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e113">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e116">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e117">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e120">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e121">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e125">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e131">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e132">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e133">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e134">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e135">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e138">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e143">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e144">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e147">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e152">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e153">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e156">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e161">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e162">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e165">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e166">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e168">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e169">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e174">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e175">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e176">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e177">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e178">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e181">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e186">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e187">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e188">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e191">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e196">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e197">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e198">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e201">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e206">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e207">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e208">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e211">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e212">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e214">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e215">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e218">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e219">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e222">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e223">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e227">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e232">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e233">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e234">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e235">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e236">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e239">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e244">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e245">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e248">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e253">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e254">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e257">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e262">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e263">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e266">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e267">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e269">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e270">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e275">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e276">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e277">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e278">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e279">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e282">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e287">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e288">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e289">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e292">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e297">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e298">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e299">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e302">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e307">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e308">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e309">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e312">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e313">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e315">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e316">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e319">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e320">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e323">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e324">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e328">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e349">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e350">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e353">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e370">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e371">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e379">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e380">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e382">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The business group cannot be found</p> + <h3 id="d2e385">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<repositoryEntryVO> - <key>479286</key> - <softkey>internal_cp</softkey> - <resourcename>fdhasl</resourcename> - <displayname>CP-demo</displayname> - <resourceableId>4368567</resourceableId> - <resourceableTypeName>CourseModule</resourceableTypeName> -</repositoryEntryVO> +<groupVO> + <key>123467</key> + <description>My group description</description> + <name>My group</name> + <minParticipants>0</minParticipants> + <maxParticipants>0</maxParticipants> +</groupVO> </code></pre></p> - <p>Get the repository resource</p> + <p>The saved business group</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e191">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e197">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} repositoryEntryVO">ns3:repositoryEntryVO</abbr>) + <h3 id="d2e395">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e402">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<repositoryEntryVO> - <key>479286</key> - <softkey>internal_cp</softkey> - <resourcename>fdhasl</resourcename> - <displayname>CP-demo</displayname> - <resourceableId>4368567</resourceableId> - <resourceableTypeName>CourseModule</resourceableTypeName> -</repositoryEntryVO> +<groups totalCount="0"> + <groups> + <group> + <key>123467</key> + <description>My group description</description> + <name>My group</name> + <minParticipants>0</minParticipants> + <maxParticipants>0</maxParticipants> + </group> + </groups> +</groups> </code></pre></p> - <p>Replace the resource and return the updated repository entry</p> + <p>This is the list of all groups in OLAT system</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e207">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e216">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The resource is locked</p> - <h3 id="d2e219">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The resource could not found</p> - <h3 id="d2e222">Status Code 200 - application/zip<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p> - <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<repositoryEntryVO> - <key>479286</key> - <softkey>internal_cp</softkey> - <resourcename>fdhasl</resourcename> - <displayname>CP-demo</displayname> - <resourceableId>4368567</resourceableId> - <resourceableTypeName>CourseModule</resourceableTypeName> -</repositoryEntryVO> -</code></pre></p> - <p>Download the repository entry as export zip file</p> - <h3 id="d2e232">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>Download of this resource is not possible</p> - <h3 id="d2e235">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e246">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e417">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p> <h6>Example</h6><pre><code>1.0</code></pre></p> <p>The version of this specific Web Service</p> - <h3 id="d2e267">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or parentNode not found</p> - <h3 id="d2e270">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) + <h3 id="d2e435">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> +<groupVO> + <key>123467</key> + <description>My group description</description> + <name>My group</name> + <minParticipants>0</minParticipants> + <maxParticipants>0</maxParticipants> +</groupVO> </code></pre></p> - <p>The course node metadatas</p> + <p>A business group in the OLAT system</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e280">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e294">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e319">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e345">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or parentNode not found</p> - <h3 id="d2e348">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) + <h3 id="d2e449">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e450">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e452">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The business group cannot be found</p> + <h3 id="d2e455">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> +<groupVO> + <key>123467</key> + <description>My group description</description> + <name>My group</name> + <minParticipants>0</minParticipants> + <maxParticipants>0</maxParticipants> +</groupVO> </code></pre></p> - <p>The course node metadatas</p> + <p>The saved business group</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e358">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e465">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e367">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e379">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or parentNode not found</p> - <h3 id="d2e382">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) + <h3 id="d2e472">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The business group cannot be found</p> + <h3 id="d2e475">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The business group is deleted</p> + <h3 id="d2e478">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e485">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e487">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e496">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The business group cannot be found</p> + <h3 id="d2e499">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupInfoVO">ns3:groupInfoVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> +<groupInfoVO> + <key>123467</key> + <description>My group description</description> + <name>My group</name> + <minParticipants>0</minParticipants> + <maxParticipants>0</maxParticipants> + <news>&lt;p&gt;Hello world&lt;/p&gt;</news> + <forumKey>374589</forumKey> + <hasWiki>false</hasWiki> + <hasFolder>false</hasFolder> +</groupInfoVO> </code></pre></p> - <p>The course node metadatas</p> + <p>Participants of the business group</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e392">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e408">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or parentNode not found</p> - <h3 id="d2e411">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) + <h3 id="d2e517">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The business group cannot be found</p> + <h3 id="d2e520">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> +<users totalCount="0"> + <users> + <user> + <key>345</key> + <login>john</login> + <password></password> + <firstName>John</firstName> + <lastName>Smith</lastName> + <email>john.smith@frentix.com</email> + <properties> + <property> + <name>telPrivate</name> + <value>238456782</value> + </property> + <property> + <name>telMobile</name> + <value>238456782</value> + </property> + </properties> + </user> + </users> +</users> </code></pre></p> - <p>The course node metadatas</p> + <p>Owners of the business group</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e421">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e436">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e440">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or parentNode not found</p> - <h3 id="d2e443">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) + <h3 id="d2e538">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The business group cannot be found</p> + <h3 id="d2e541">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> +<users totalCount="0"> + <users> + <user> + <key>345</key> + <login>john</login> + <password></password> + <firstName>John</firstName> + <lastName>Smith</lastName> + <email>john.smith@frentix.com</email> + <properties> + <property> + <name>telPrivate</name> + <value>238456782</value> + </property> + <property> + <name>telMobile</name> + <value>238456782</value> + </property> + </properties> + </user> + </users> +</users> </code></pre></p> - <p>the course node metadatas</p> + <p>Participants of the business group</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e453">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e562">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The business group or the user cannot be found</p> + <h3 id="d2e565">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The user is added as owner of the group</p> + <h3 id="d2e568">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e464">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e493">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or parentNode not found</p> - <h3 id="d2e496">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) + <h3 id="d2e575">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The business group or the user cannot be found</p> + <h3 id="d2e578">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The user is removed as owner from the group</p> + <h3 id="d2e581">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e595">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The business group or the user cannot be found</p> + <h3 id="d2e598">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The user is added as owner of the group</p> + <h3 id="d2e601">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e616">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The business group or the user cannot be found</p> + <h3 id="d2e619">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The user is removed as owner from the group</p> + <h3 id="d2e622">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e636">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The business group or the user cannot be found</p> + <h3 id="d2e639">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The user is added as participant of the group</p> + <h3 id="d2e642">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e649">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The business group or the user cannot be found</p> + <h3 id="d2e652">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The user is remove from the group as participant</p> + <h3 id="d2e655">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e669">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The business group or the user cannot be found</p> + <h3 id="d2e672">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The user is added as participant of the group</p> + <h3 id="d2e675">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e689">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The business group or the user cannot be found</p> + <h3 id="d2e692">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The user is remove from the group as participant</p> + <h3 id="d2e695">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e708">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The forum not found</p> + <h3 id="d2e711">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> +<forum subscribed="false" courseNodeId="2784628" courseKey="286" forumKey="3865487" detailsName="It is a forum" name="My forum"/> </code></pre></p> - <p>The course node metadatas</p> + <p>The root message of the thread</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e506">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e721">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e513">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e540">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or parentNode not found</p> - <h3 id="d2e543">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) + <h3 id="d2e738">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The author, forum or message not found</p> + <h3 id="d2e741">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> +<messages totalCount="1"> + <messages> + <message> + <key>380</key> + <authorKey>345</authorKey> + <title>A message</title> + <body>The content of the message</body> + </message> + </messages> +</messages> </code></pre></p> - <p>The course node metadatas</p> + <p>The root message of the thread</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e553">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e751">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e581">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e589">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or parentNode not found</p> - <h3 id="d2e592">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) + <h3 id="d2e768">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The author, forum or message not found</p> + <h3 id="d2e771">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> +<messageVO> + <key>380</key> + <authorKey>345</authorKey> + <title>A message</title> + <body>The content of the message</body> +</messageVO> </code></pre></p> - <p>the course node metadatas</p> + <p>The root message of the thread</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e602">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e781">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e635">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or parentNode not found</p> - <h3 id="d2e638">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) + <h3 id="d2e788">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e793">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The author, forum or message not found</p> + <h3 id="d2e796">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> +<messageVO> + <key>380</key> + <authorKey>345</authorKey> + <title>A message</title> + <body>The content of the message</body> +</messageVO> </code></pre></p> - <p>the course node metadatas</p> + <p>The root message of the thread</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e648">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e806">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e662">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e685">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or parentNode not found</p> - <h3 id="d2e688">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) + <h3 id="d2e826">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The author, forum or message not found</p> + <h3 id="d2e829">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> +<messages totalCount="1"> + <messages> + <message> + <key>380</key> + <authorKey>345</authorKey> + <title>A message</title> + <body>The content of the message</body> + </message> + </messages> +</messages> </code></pre></p> - <p>The course node metadatas</p> + <p>The root message of the thread</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e698">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e839">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e709">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e850">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <div class="representation"></div> - <h3 id="d2e738">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or parentNode not found</p> - <h3 id="d2e741">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) + <h3 id="d2e861">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The author or message not found</p> + <h3 id="d2e864">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> +<messageVO> + <key>380</key> + <authorKey>345</authorKey> + <title>A message</title> + <body>The content of the message</body> +</messageVO> </code></pre></p> - <p>The course node metadatas</p> + <p>The root message of the thread</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e751">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e874">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e786">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or parentNode not found</p> - <h3 id="d2e789">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) + <h3 id="d2e881">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e882">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e884">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The author or message not found</p> + <h3 id="d2e887">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> +<messageVO> + <key>380</key> + <authorKey>345</authorKey> + <title>A message</title> + <body>The content of the message</body> +</messageVO> </code></pre></p> - <p>The course node metadatas</p> + <p>The root message of the thread</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e799">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e897">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e809">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e817">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course, parentNode or test not found</p> - <h3 id="d2e820">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) + <h3 id="d2e914">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The author or message not found</p> + <h3 id="d2e917">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> +<messageVO> + <key>380</key> + <authorKey>345</authorKey> + <title>A message</title> + <body>The content of the message</body> +</messageVO> </code></pre></p> - <p>The test node metadatas</p> + <p>The root message of the thread</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e830">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e927">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e841">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e936">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The message not found</p> + <h3 id="d2e939">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The links to the attachments</p> + <h3 id="d2e946">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <div class="representation"></div> - <h3 id="d2e867">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course, parentNode or test not found</p> - <h3 id="d2e870">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) + <h3 id="d2e950">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The identity or the portrait not found</p> + <h3 id="d2e953">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>Ok</p> + <h3 id="d2e960">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e964">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The identity or the portrait not found</p> + <h3 id="d2e967">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>Ok</p> + <h3 id="d2e974">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e975">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e977">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The identity or the portrait not found</p> + <h3 id="d2e980">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>Ok</p> + <h3 id="d2e994">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The identity or the portrait not found</p> + <h3 id="d2e997">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The portrait as image</p> + <h3 id="d2e1004">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1005">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1006">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1007">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1008">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1011">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e1016">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1017">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1020">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e1025">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1026">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1029">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e1034">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1035">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1038">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1039">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1041">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1042">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1047">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1048">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1049">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1050">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1051">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1054">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e1059">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1060">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1061">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1064">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e1069">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1070">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1071">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1074">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e1079">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1080">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1081">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1084">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1085">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1087">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1088">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1091">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1092">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1095">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1096">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1100">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1107">application/zip<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1108">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1113">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1114">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1126">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1127">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1130">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e1140">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1141">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1147">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1148">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1151">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e1159">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1160">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1166">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1167">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1168">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1169">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1170">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1173">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e1178">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1179">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1182">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e1187">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1188">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1191">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e1196">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1197">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1200">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1201">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1203">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1204">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1209">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1210">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1211">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1212">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1213">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1216">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e1221">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1222">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1223">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1226">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e1231">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1232">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1233">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1236">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e1241">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1242">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1243">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1246">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1247">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1249">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1250">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1253">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1254">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1257">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1258">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1262">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1277">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1278">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1281">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e1292">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1293">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1299">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1300">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1311">Status Code 200 - application/xml, application/json, application/json;pagingspec=1.0 (<abbr title="{http://www.example.com} courseVO">ns3:courseVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> +<courses totalCount="0"> + <courses> + <course> + <key>777</key> + <title>Demo course</title> + <displayName>Demo course</displayName> + </course> + </courses> +</courses> </code></pre></p> - <p>The test node metadatas</p> + <p>List of visible courses</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e880">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1328">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1329">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1331">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p> + <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<userVO> + <key>345</key> + <login>john</login> + <password></password> + <firstName>John</firstName> + <lastName>Smith</lastName> + <email>john.smith@frentix.com</email> + <properties> + <property> + <name>telPrivate</name> + <value>238456782</value> + </property> + <property> + <name>telMobile</name> + <value>238456782</value> + </property> + </properties> +</userVO> +</code></pre></p> + <p>The persisted user</p> + <h3 id="d2e1341">Status Code 406 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p> + <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<errorVOes> + <errorVO> + <code>org.olat.restapi:error</code> + <translation>Hello world, there is an error</translation> + </errorVO> +</errorVOes> +</code></pre></p> + <p>The list of errors</p> + <h3 id="d2e1351">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e912">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>course, parentNode or test not found</p> - <h3 id="d2e915">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) + <h3 id="d2e1368">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> +<users totalCount="0"> + <users> + <user> + <key>345</key> + <login>john</login> + <password></password> + <firstName>John</firstName> + <lastName>Smith</lastName> + <email>john.smith@frentix.com</email> + <properties> + <property> + <name>telPrivate</name> + <value>238456782</value> + </property> + <property> + <name>telMobile</name> + <value>238456782</value> + </property> + </properties> + </user> + </users> +</users> </code></pre></p> - <p>the test node metadatas</p> + <p>The list of all users in the OLAT system</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e925">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1378">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e940">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e957">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or parentNode not found</p> - <h3 id="d2e960">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) + <h3 id="d2e1389">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The identity not found</p> + <h3 id="d2e1392">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The user is removed from the group</p> + <h3 id="d2e1395">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e1402">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1403">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1405">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The identity not found</p> + <h3 id="d2e1408">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> +<userVO> + <key>345</key> + <login>john</login> + <password></password> + <firstName>John</firstName> + <lastName>Smith</lastName> + <email>john.smith@frentix.com</email> + <properties> + <property> + <name>telPrivate</name> + <value>238456782</value> + </property> + <property> + <name>telMobile</name> + <value>238456782</value> + </property> + </properties> +</userVO> </code></pre></p> - <p>The course node metadatas</p> + <p>The user</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e970">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e981">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e1004">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or parentNode not found</p> - <h3 id="d2e1007">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) + <h3 id="d2e1418">Status Code 406 - application/xml, application/json (<abbr title="{http://www.example.com} errorVO">ns3:errorVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> +<errorVOes> + <errorVO> + <code>org.olat.restapi:error</code> + <translation>Hello world, there is an error</translation> + </errorVO> +</errorVOes> </code></pre></p> - <p>The course node metadatas</p> + <p>The list of validation errors</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e1017">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1428">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e1046">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or parentNode not found</p> - <h3 id="d2e1049">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) + <h3 id="d2e1439">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The identity not found</p> + <h3 id="d2e1442">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p> + <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<userVO> + <key>345</key> + <login>john</login> + <password></password> + <firstName>John</firstName> + <lastName>Smith</lastName> + <email>john.smith@frentix.com</email> + <properties> + <property> + <name>telPrivate</name> + <value>238456782</value> + </property> + <property> + <name>telMobile</name> + <value>238456782</value> + </property> + </properties> +</userVO> +</code></pre></p> + <p>The user</p> + <h3 id="d2e1452">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e1460">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p> + <h6>Example</h6><pre><code>1.0</code></pre></p> + <p>The version of this specific Web Service</p> + <h3 id="d2e1476">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The identity not found</p> + <h3 id="d2e1479">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The user</p> + <h3 id="d2e1482">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e1487">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1488">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1490">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1491">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1500">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The identity not found</p> + <h3 id="d2e1503">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The user is removed from the group</p> + <h3 id="d2e1506">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e1517">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The identity or the portrait not found</p> + <h3 id="d2e1520">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The portrait as image</p> + <h3 id="d2e1527">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e1535">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The identity or the portrait not found</p> + <h3 id="d2e1538">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The portrait as image</p> + <h3 id="d2e1541">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>Not authorized</p> + <h3 id="d2e1548">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The portrait deleted</p> + <h3 id="d2e1551">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>Not authorized</p> + <h3 id="d2e1569">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The identity not found</p> + <h3 id="d2e1572">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> +<groups totalCount="0"> + <groups> + <group> + <key>123467</key> + <description>My group description</description> + <name>My group</name> + <minParticipants>0</minParticipants> + <maxParticipants>0</maxParticipants> + </group> + </groups> +</groups> </code></pre></p> - <p>The course node metadatas</p> + <p>The groups of the user</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e1059">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e1073">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e1093">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or parentNode not found</p> - <h3 id="d2e1096">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) + <h3 id="d2e1594">Status Code 200 - application/xml;pagingspec=1.0, application/json;pagingspec=1.0 (<abbr title="{http://www.example.com} groupInfoVO">ns3:groupInfoVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> +<groups totalCount="0"> + <groups> + <group> + <key>123467</key> + <description>My group description</description> + <name>My group</name> + <minParticipants>0</minParticipants> + <maxParticipants>0</maxParticipants> + <news>&lt;p&gt;Hello world&lt;/p&gt;</news> + <forumKey>374589</forumKey> + <hasWiki>false</hasWiki> + <hasFolder>false</hasFolder> + </group> + </groups> +</groups> </code></pre></p> - <p>The course node metadatas</p> + <p>The groups of the user</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e1106">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e1124">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or parentNode not found</p> - <h3 id="d2e1127">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) + <h3 id="d2e1604">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The request hasn't paging information</p> + <h3 id="d2e1617">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course not found</p> + <h3 id="d2e1620">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseVO">ns3:courseVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> +<courseVO> + <key>777</key> + <title>Demo course</title> + <displayName>Demo course</displayName> +</courseVO> </code></pre></p> - <p>The course node metadatas</p> + <p>The metadatas of the created course</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e1137">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1634">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course not found</p> + <h3 id="d2e1637">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The metadatas of the created course</p> + <h3 id="d2e1640">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e1153">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or parentNode not found</p> - <h3 id="d2e1156">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) + <h3 id="d2e1648">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p> + <h6>Example</h6><pre><code>1.0</code></pre></p> + <p>The version of this specific Web Service</p> + <h3 id="d2e1666">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course not found</p> + <h3 id="d2e1669">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseConfigVO">ns3:courseConfigVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> +<courseVO> + <sharedFolderSoftKey>head_1_olat_43985684395</sharedFolderSoftKey> +</courseVO> </code></pre></p> - <p>The course node metadatas</p> + <p>The configuration of the course</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e1166">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1679">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e1180">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1686">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <div class="representation"></div> - <h3 id="d2e1200">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or parentNode not found</p> - <h3 id="d2e1203">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) + <h3 id="d2e1706">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course not found</p> + <h3 id="d2e1709">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseConfigVO">ns3:courseConfigVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> +<courseVO> + <sharedFolderSoftKey>head_1_olat_43985684395</sharedFolderSoftKey> +</courseVO> </code></pre></p> - <p>The course node metadatas</p> + <p>The metadatas of the created course</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e1213">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1719">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e1249">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or parentNode not found</p> - <h3 id="d2e1252">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) + <h3 id="d2e1730">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course not found</p> + <h3 id="d2e1733">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>) </h3> - <p> - <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> -</code></pre></p> - <p>The course node metadatas</p> + <p>The array of authors</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e1262">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1736">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e1294">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or parentNode not found</p> - <h3 id="d2e1297">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) + <h3 id="d2e1751">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course not found</p> + <h3 id="d2e1754">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseVO">ns3:courseVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> +<courseVO> + <key>777</key> + <title>Demo course</title> + <displayName>Demo course</displayName> +</courseVO> </code></pre></p> - <p>The course node metadatas</p> + <p>The metadatas of the created course</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e1307">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1764">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e1321">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e1341">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or parentNode not found</p> - <h3 id="d2e1344">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) + <h3 id="d2e1773">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course not found</p> + <h3 id="d2e1776">Status Code 200 - application/zip<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course as a ZIP file</p> + <h3 id="d2e1779">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>Not authorized to export the course</p> + <h3 id="d2e1790">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course not found</p> + <h3 id="d2e1793">Status Code 200 - application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The run structure of the course</p> + <h3 id="d2e1796">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e1807">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course not found</p> + <h3 id="d2e1810">Status Code 200 - application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The editor tree model of the course</p> + <h3 id="d2e1813">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e1828">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course not found or the user is not an onwer or author of the course</p> + <h3 id="d2e1831">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>) </h3> - <p> - <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> -</code></pre></p> - <p>The course node metadatas</p> + <p>The author</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e1354">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1834">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e1384">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or parentNode not found</p> - <h3 id="d2e1387">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) + <h3 id="d2e1841">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or the user not found</p> + <h3 id="d2e1844">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The user is an author and owner of the course</p> + <h3 id="d2e1847">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e1854">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or the user not found</p> + <h3 id="d2e1857">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The user was successfully removed as owner of the course</p> + <h3 id="d2e1860">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e1871">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The context of the group not found</p> + <h3 id="d2e1874">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> +<groups totalCount="0"> + <groups> + <group> + <key>123467</key> + <description>My group description</description> + <name>My group</name> + <minParticipants>0</minParticipants> + <maxParticipants>0</maxParticipants> + </group> + </groups> +</groups> </code></pre></p> - <p>The course node metadatas</p> + <p>The list of all learning group of the course</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e1397">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e1413">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or parentNode not found</p> - <h3 id="d2e1416">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) + <h3 id="d2e1888">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1889">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1891">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> +<groupVO> + <key>123467</key> + <description>My group description</description> + <name>My group</name> + <minParticipants>0</minParticipants> + <maxParticipants>0</maxParticipants> +</groupVO> </code></pre></p> - <p>The course node metadatas</p> + <p>The persisted group</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e1426">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1901">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e1440">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e1460">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or parentNode not found</p> - <h3 id="d2e1463">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) + <h3 id="d2e1909">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p> + <h6>Example</h6><pre><code>1.0</code></pre></p> + <p>The version of this specific Web Service</p> + <h3 id="d2e1927">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The business group cannot be found</p> + <h3 id="d2e1930">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The business group is deleted</p> + <h3 id="d2e1933">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e1940">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The business group cannot be found</p> + <h3 id="d2e1943">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> +<groupVO> + <key>123467</key> + <description>My group description</description> + <name>My group</name> + <minParticipants>0</minParticipants> + <maxParticipants>0</maxParticipants> +</groupVO> </code></pre></p> - <p>The course node metadatas</p> + <p>This is the list of all groups in OLAT system</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e1473">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e1509">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or parentNode not found</p> - <h3 id="d2e1512">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) + <h3 id="d2e1957">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1959">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The business group cannot be found</p> + <h3 id="d2e1962">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> +<groupVO> + <key>123467</key> + <description>My group description</description> + <name>My group</name> + <minParticipants>0</minParticipants> + <maxParticipants>0</maxParticipants> +</groupVO> </code></pre></p> - <p>The course node metadatas</p> + <p>The saved group</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e1522">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1972">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e1554">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The given URL is not valid</p> - <h3 id="d2e1557">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or parentNode not found</p> - <h3 id="d2e1560">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) + <h3 id="d2e1980">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1982">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> +<groupVO> + <key>123467</key> + <description>My group description</description> + <name>My group</name> + <minParticipants>0</minParticipants> + <maxParticipants>0</maxParticipants> +</groupVO> </code></pre></p> - <p>The course node metadatas</p> + <p>The persisted group</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e1570">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e1992">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e1580">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e1585">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or parentNode not found</p> - <h3 id="d2e1588">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) + <h3 id="d2e2005">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The forum not found</p> + <h3 id="d2e2008">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> +<forum subscribed="false" courseNodeId="2784628" courseKey="286" forumKey="3865487" detailsName="It is a forum" name="My forum"/> </code></pre></p> - <p>The course node metadatas</p> + <p>The root message of the thread</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e1598">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2018">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e1605">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e1609">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or parentNode not found</p> - <h3 id="d2e1612">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) + <h3 id="d2e2035">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The author, forum or message not found</p> + <h3 id="d2e2038">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> +<messages totalCount="1"> + <messages> + <message> + <key>380</key> + <authorKey>345</authorKey> + <title>A message</title> + <body>The content of the message</body> + </message> + </messages> +</messages> </code></pre></p> - <p>The course node metadatas</p> + <p>The root message of the thread</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e1622">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course node is not of type task</p> - <h3 id="d2e1625">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2048">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e1664">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The configuration is not valid</p> - <h3 id="d2e1667">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or task node not found</p> - <h3 id="d2e1670">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} surveyConfigVO">ns3:surveyConfigVO</abbr>) + <h3 id="d2e2065">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The author, forum or message not found</p> + <h3 id="d2e2068">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> +<messageVO> + <key>380</key> + <authorKey>345</authorKey> + <title>A message</title> + <body>The content of the message</body> +</messageVO> </code></pre></p> - <p>The task node configuration</p> + <p>The root message of the thread</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e1680">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The call is not applicable to task course node</p> - <h3 id="d2e1683">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2078">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e1718">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The configuration is not valid</p> - <h3 id="d2e1721">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or task node not found</p> - <h3 id="d2e1724">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} surveyConfigVO">ns3:surveyConfigVO</abbr>) + <h3 id="d2e2085">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e2090">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The author, forum or message not found</p> + <h3 id="d2e2093">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> +<messageVO> + <key>380</key> + <authorKey>345</authorKey> + <title>A message</title> + <body>The content of the message</body> +</messageVO> </code></pre></p> - <p>The task node configuration</p> + <p>The root message of the thread</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e1734">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The call is not applicable to task course node</p> - <h3 id="d2e1737">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2103">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e1744">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or task node not found</p> - <h3 id="d2e1747">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} surveyConfigVO">ns3:surveyConfigVO</abbr>) + <h3 id="d2e2123">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The author, forum or message not found</p> + <h3 id="d2e2126">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> +<messages totalCount="1"> + <messages> + <message> + <key>380</key> + <authorKey>345</authorKey> + <title>A message</title> + <body>The content of the message</body> + </message> + </messages> +</messages> </code></pre></p> - <p>The course node configuration</p> + <p>The root message of the thread</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e1757">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2136">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e1775">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The configuration is not valid</p> - <h3 id="d2e1778">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or survey node not found</p> - <h3 id="d2e1781">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} surveyConfigVO">ns3:surveyConfigVO</abbr>) + <h3 id="d2e2147">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e2158">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The author or message not found</p> + <h3 id="d2e2161">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> +<messageVO> + <key>380</key> + <authorKey>345</authorKey> + <title>A message</title> + <body>The content of the message</body> +</messageVO> </code></pre></p> - <p>The survey node configuration</p> + <p>The root message of the thread</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e1791">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The call is not applicable to survey course node</p> - <h3 id="d2e1794">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2171">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e1809">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The configuration is not valid</p> - <h3 id="d2e1812">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or survey node not found</p> - <h3 id="d2e1815">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} surveyConfigVO">ns3:surveyConfigVO</abbr>) + <h3 id="d2e2178">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2179">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2181">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The author or message not found</p> + <h3 id="d2e2184">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> +<messageVO> + <key>380</key> + <authorKey>345</authorKey> + <title>A message</title> + <body>The content of the message</body> +</messageVO> </code></pre></p> - <p>The survey node configuration</p> + <p>The root message of the thread</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e1825">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The call is not applicable to survey course node</p> - <h3 id="d2e1828">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2194">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e1835">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or survey node not found</p> - <h3 id="d2e1838">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} surveyConfigVO">ns3:surveyConfigVO</abbr>) + <h3 id="d2e2211">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The author or message not found</p> + <h3 id="d2e2214">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> +<messageVO> + <key>380</key> + <authorKey>345</authorKey> + <title>A message</title> + <body>The content of the message</body> +</messageVO> </code></pre></p> - <p>The course node configuration</p> + <p>The root message of the thread</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e1848">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2224">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e1877">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The configuration is not valid</p> - <h3 id="d2e1880">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or test node not found</p> - <h3 id="d2e1883">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} testConfigVO">ns3:testConfigVO</abbr>) + <h3 id="d2e2233">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The message not found</p> + <h3 id="d2e2236">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The links to the attachments</p> + <h3 id="d2e2243">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e2247">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The identity or the portrait not found</p> + <h3 id="d2e2250">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>Ok</p> + <h3 id="d2e2257">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e2261">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The identity or the portrait not found</p> + <h3 id="d2e2264">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>Ok</p> + <h3 id="d2e2271">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2272">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2274">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The identity or the portrait not found</p> + <h3 id="d2e2277">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>Ok</p> + <h3 id="d2e2291">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The identity or the portrait not found</p> + <h3 id="d2e2294">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The portrait as image</p> + <h3 id="d2e2301">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2302">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2303">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2304">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2305">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2308">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e2313">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2314">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2317">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e2322">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2323">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2326">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e2331">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2332">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2335">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2336">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2338">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2339">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2344">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2345">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2346">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2347">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2348">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2351">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e2356">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2357">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2358">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2361">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e2366">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2367">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2368">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2371">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e2376">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2377">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2378">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2381">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2382">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2384">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2385">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2388">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2389">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2392">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2393">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2397">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2408">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The list of contacts</p> + <h3 id="d2e2419">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} environmentVO">ns3:environmentVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> +<environmentVO vmVersion="20.4-b02-402" vmVendor="Apple Inc." vmName="Java HotSpot(TM) 64-Bit Server VM" runtimeName="15261@agam.local" availableProcessors="4" osVersion="10.7.2" osName="Mac OS X" arch="x86_64"/> </code></pre></p> - <p>The test node configuration</p> + <p>A short summary of the number of classes</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e1893">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The call is not applicable to test course node</p> - <h3 id="d2e1896">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2429">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e1922">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The configuration is not valid</p> - <h3 id="d2e1925">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or test node not found</p> - <h3 id="d2e1928">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} testConfigVO">ns3:testConfigVO</abbr>) + <h3 id="d2e2437">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} releaseVO">ns3:releaseVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> +<versionVO upgradeAvailable="false" updateAvailable="false" allowAutoUpdate="false" patchAvailable="true" allowAutoPatch="true" repoRevision="" olatVersion="" buildVersion=""/> </code></pre></p> - <p>The test node configuration</p> + <p>The verison of the instance</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e1938">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The call is not applicable to test course node</p> - <h3 id="d2e1941">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2447">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e1948">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or test node not found</p> - <h3 id="d2e1951">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} testConfigVO">ns3:testConfigVO</abbr>) + <h3 id="d2e2455">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2456">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2462">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p> + <h6>Example</h6><pre><code>1.0</code></pre></p> + <p>The version of this specific Web Service</p> + <h3 id="d2e2476">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2477">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2484">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} releaseVO">ns3:releaseVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> +<monitoringInfosVO> + <type>openolat</type> + <description>this is an OpenOLAT instance</description> + <probes> + <probe>Environment</probe> + <probe>System</probe> + <probe>Runtime</probe> + <probe>Memory</probe> + </probes> + <dependencies> + <dependency url="localhost" type="openfire"/> + <dependency url="192.168.1.120" type="mysql"/> + </dependencies> +</monitoringInfosVO> </code></pre></p> - <p>The course node configuration</p> + <p>The verison of the instance</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e1961">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2494">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e1971">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e1972">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e1974">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The business group cannot be found</p> - <h3 id="d2e1977">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>) + <h3 id="d2e2502">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} runtimeVO">ns3:runtimeVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<groupVO> - <key>123467</key> - <description>My group description</description> - <name>My group</name> - <minParticipants>0</minParticipants> - <maxParticipants>0</maxParticipants> -</groupVO> +<runtimeVO upTime="21248" startTime="2012-10-15T16:46:04.784+02:00" systemLoadAverage="1.16748046875"> + <classes totalLoadedClassCount="8500" unloadedClassCount="1500" loadedClassCount="7000"/> + <threads peakThreadCount="123" daemonCount="45" threadCount="102"/> + <memory garbageCollectionCount="0" garbageCollectionTime="0" maxNonHeap="0" committedNonHeap="0" usedNonHeap="0" initNonHeap="0" maxHeap="0" committedHeap="0" usedHeap="0" initHeap="0" totalMemory="56" freeMemory="45" usedMemory="12"/> +</runtimeVO> </code></pre></p> - <p>The saved business group</p> + <p>The version of the instance</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e1987">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2512">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e1994">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>) + <h3 id="d2e2520">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} classesVO">ns3:classesVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<groups totalCount="0"> - <groups> - <group> - <key>123467</key> - <description>My group description</description> - <name>My group</name> - <minParticipants>0</minParticipants> - <maxParticipants>0</maxParticipants> - </group> - </groups> -</groups> +<classeStatisticsVO totalLoadedClassCount="8500" unloadedClassCount="1500" loadedClassCount="7000"/> </code></pre></p> - <p>This is the list of all groups in OLAT system</p> + <p>A short summary of the number of classes</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e2009">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p> - <h6>Example</h6><pre><code>1.0</code></pre></p> - <p>The version of this specific Web Service</p> - <h3 id="d2e2027">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>) + <h3 id="d2e2530">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e2538">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} runtimeVO">ns3:runtimeVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<groupVO> - <key>123467</key> - <description>My group description</description> - <name>My group</name> - <minParticipants>0</minParticipants> - <maxParticipants>0</maxParticipants> -</groupVO> +<memoryStatisticsVO garbageCollectionCount="0" garbageCollectionTime="0" maxNonHeap="0" committedNonHeap="0" usedNonHeap="0" initNonHeap="0" maxHeap="0" committedHeap="0" usedHeap="0" initHeap="0" totalMemory="56" freeMemory="45" usedMemory="12"/> </code></pre></p> - <p>A business group in the OLAT system</p> + <p>The version of the instance</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e2041">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2042">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2044">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The business group cannot be found</p> - <h3 id="d2e2047">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>) + <h3 id="d2e2548">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e2556">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} runtimeVO">ns3:runtimeVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<groupVO> - <key>123467</key> - <description>My group description</description> - <name>My group</name> - <minParticipants>0</minParticipants> - <maxParticipants>0</maxParticipants> -</groupVO> +<threadStatisticsVO peakThreadCount="123" daemonCount="45" threadCount="102"/> </code></pre></p> - <p>The saved business group</p> + <p>The version of the instance</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e2057">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e2064">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The business group cannot be found</p> - <h3 id="d2e2067">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The business group is deleted</p> - <h3 id="d2e2070">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2566">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e2081">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The business group cannot be found</p> - <h3 id="d2e2084">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupInfoVO">ns3:groupInfoVO</abbr>) + <h3 id="d2e2574">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} runtimeVO">ns3:runtimeVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<groupInfoVO> - <key>123467</key> - <description>My group description</description> - <name>My group</name> - <minParticipants>0</minParticipants> - <maxParticipants>0</maxParticipants> - <news>&lt;p&gt;Hello world&lt;/p&gt;</news> - <forumKey>374589</forumKey> - <hasWiki>false</hasWiki> - <hasFolder>false</hasFolder> -</groupInfoVO> +<databaseVO> + <connectionInfos currentConnectionCount="25" activeConnectionCount="10"/> + <hibernateStatistics queryExecutionCount="1237" queryExecutionMaxTimeQueryString="select * from PLock" queryExecutionMaxTime="12000" optimisticFailureCount="23" failedTransactionsCount="2" successfulTransactionCount="13980" transactionsCount="13900" openSessionsCount="12"/> +</databaseVO> </code></pre></p> - <p>Participants of the business group</p> + <p>The version of the instance</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e2102">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The business group cannot be found</p> - <h3 id="d2e2105">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>) + <h3 id="d2e2584">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e2592">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} releaseVO">ns3:releaseVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<users totalCount="0"> - <users> - <user> - <key>345</key> - <login>john</login> - <password></password> - <firstName>John</firstName> - <lastName>Smith</lastName> - <email>john.smith@frentix.com</email> - <properties> - <property> - <name>telPrivate</name> - <value>238456782</value> - </property> - <property> - <name>telMobile</name> - <value>238456782</value> - </property> - </properties> - </user> - </users> -</users> +<openolatStatisticsVO/> </code></pre></p> - <p>Owners of the business group</p> + <p>The verison of the instance</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e2123">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The business group cannot be found</p> - <h3 id="d2e2126">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>) + <h3 id="d2e2602">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e2610">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} releaseVO">ns3:releaseVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<users totalCount="0"> - <users> - <user> - <key>345</key> - <login>john</login> - <password></password> - <firstName>John</firstName> - <lastName>Smith</lastName> - <email>john.smith@frentix.com</email> - <properties> - <property> - <name>telPrivate</name> - <value>238456782</value> - </property> - <property> - <name>telMobile</name> - <value>238456782</value> - </property> - </properties> - </user> - </users> -</users> +<userStatisticsVO totalGroupCount="0" totalUserCount="0"/> </code></pre></p> - <p>Participants of the business group</p> + <p>The verison of the instance</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e2147">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The business group or the user cannot be found</p> - <h3 id="d2e2150">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The user is added as owner of the group</p> - <h3 id="d2e2153">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e2160">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The business group or the user cannot be found</p> - <h3 id="d2e2163">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The user is removed as owner from the group</p> - <h3 id="d2e2166">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2620">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e2180">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The business group or the user cannot be found</p> - <h3 id="d2e2183">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The user is added as owner of the group</p> - <h3 id="d2e2186">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e2200">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The business group or the user cannot be found</p> - <h3 id="d2e2203">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The user is removed as owner from the group</p> - <h3 id="d2e2206">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e2221">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The business group or the user cannot be found</p> - <h3 id="d2e2224">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The user is added as participant of the group</p> - <h3 id="d2e2227">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e2234">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The business group or the user cannot be found</p> - <h3 id="d2e2237">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The user is remove from the group as participant</p> - <h3 id="d2e2240">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e2254">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The business group or the user cannot be found</p> - <h3 id="d2e2257">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The user is added as participant of the group</p> - <h3 id="d2e2260">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2628">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} releaseVO">ns3:releaseVO</abbr>) + </h3> + <p> + <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<repositoryStatisticsVO publishedCoursesCount="0" coursesCount="0"/> +</code></pre></p> + <p>The verison of the instance</p> + <div class="representation"> + <h6>XML Schema</h6> + <p><em>Source: <a href=""></a></em></p><pre></pre></div> + <h3 id="d2e2638">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e2274">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The business group or the user cannot be found</p> - <h3 id="d2e2277">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The user is remove from the group as participant</p> - <h3 id="d2e2280">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2646">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} releaseVO">ns3:releaseVO</abbr>) + </h3> + <p> + <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<indexerStatisticsVO indexingTime="0" indexSize="0" availableFolderIndexerCount="0" runningFolderIndexerCount="0" documentQueueSize="0" excludedDocumentCount="0" indexedDocumentCount="0"/> +</code></pre></p> + <p>The verison of the instance</p> + <div class="representation"> + <h6>XML Schema</h6> + <p><em>Source: <a href=""></a></em></p><pre></pre></div> + <h3 id="d2e2656">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e2293">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The forum not found</p> - <h3 id="d2e2296">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>) + <h3 id="d2e2664">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} sessionVO">ns3:sessionVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<forum subscribed="false" courseNodeId="2784628" courseKey="286" forumKey="3865487" detailsName="It is a forum" name="My forum"/> +<sessionsVO instantMessagingCount="123" secureRestCount="0" restCount="0" secureWebdavCount="12" webdavCount="23" secureAuthenticatedCount="234" authenticatedCount="234" count="234"/> </code></pre></p> - <p>The root message of the thread</p> + <p>A short summary about sessions</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e2306">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2674">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e2323">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The author, forum or message not found</p> - <h3 id="d2e2326">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>) + <h3 id="d2e2684">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>Informations about memory</p> + <h3 id="d2e2687">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e2694">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} memoryVO">ns3:memoryVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<messages totalCount="1"> - <messages> - <message> - <key>380</key> - <authorKey>345</authorKey> - <title>A message</title> - <body>The content of the message</body> - </message> - </messages> -</messages> +<memoryVO maxAvailable="2000" totalUsed="546" totalMem="230" date="2012-10-15T16:46:04.784+02:00"/> </code></pre></p> - <p>The root message of the thread</p> + <p>A short summary of the number of classes</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e2336">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2704">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e2353">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The author, forum or message not found</p> - <h3 id="d2e2356">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) + <h3 id="d2e2710">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2713">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2714">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2722">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2723">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2729">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2732">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2733">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2737">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2738">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2747">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or parentNode not found</p> + <h3 id="d2e2750">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVOes">ns3:forumVOes</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<messageVO> - <key>380</key> - <authorKey>345</authorKey> - <title>A message</title> - <body>The content of the message</body> -</messageVO> +<forums totalCount="1"> + <forums> + <forums subscribed="false" courseNodeId="2784628" courseKey="286" forumKey="3865487" detailsName="It is a forum" name="My forum"/> + </forums> +</forums> </code></pre></p> - <p>The root message of the thread</p> + <p>The course node metadatas</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e2366">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2760">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e2373">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2767">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <div class="representation"></div> - <h3 id="d2e2378">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The author, forum or message not found</p> - <h3 id="d2e2381">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) + <h3 id="d2e2779">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or parentNode not found</p> + <h3 id="d2e2782">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<messageVO> - <key>380</key> - <authorKey>345</authorKey> - <title>A message</title> - <body>The content of the message</body> -</messageVO> +<courseNodeVO> + <id>id</id> +</courseNodeVO> </code></pre></p> - <p>The root message of the thread</p> + <p>The course node metadatas</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e2391">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2792">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e2411">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The author, forum or message not found</p> - <h3 id="d2e2414">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>) + <h3 id="d2e2810">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or parentNode not found</p> + <h3 id="d2e2813">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<messages totalCount="1"> - <messages> - <message> - <key>380</key> - <authorKey>345</authorKey> - <title>A message</title> - <body>The content of the message</body> - </message> - </messages> -</messages> +<courseNodeVO> + <id>id</id> +</courseNodeVO> </code></pre></p> - <p>The root message of the thread</p> + <p>The course node metadatas</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e2424">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2823">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e2435">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e2446">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The author or message not found</p> - <h3 id="d2e2449">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) + <h3 id="d2e2837">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or parentNode not found</p> + <h3 id="d2e2840">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<messageVO> - <key>380</key> - <authorKey>345</authorKey> - <title>A message</title> - <body>The content of the message</body> -</messageVO> +<forum subscribed="false" courseNodeId="2784628" courseKey="286" forumKey="3865487" detailsName="It is a forum" name="My forum"/> </code></pre></p> - <p>The root message of the thread</p> + <p>The course node metadatas</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e2459">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2850">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e2476">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The author or message not found</p> - <h3 id="d2e2479">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) + <h3 id="d2e2877">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The author, forum or message not found</p> + <h3 id="d2e2880">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> @@ -16845,13 +17387,11 @@ <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e2489">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2890">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e2496">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2497">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2499">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The author or message not found</p> - <h3 id="d2e2502">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) + <h3 id="d2e2917">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The author, forum or message not found</p> + <h3 id="d2e2920">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> @@ -16866,93 +17406,11 @@ <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e2512">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2930">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e2521">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The message not found</p> - <h3 id="d2e2524">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The links to the attachments</p> - <h3 id="d2e2531">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2532">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2534">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The identity or the portrait not found</p> - <h3 id="d2e2537">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>Ok</p> - <h3 id="d2e2544">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e2548">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The identity or the portrait not found</p> - <h3 id="d2e2551">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>Ok</p> - <h3 id="d2e2558">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e2562">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The identity or the portrait not found</p> - <h3 id="d2e2565">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>Ok</p> - <h3 id="d2e2579">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The identity or the portrait not found</p> - <h3 id="d2e2582">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The portrait as image</p> - <h3 id="d2e2589">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2590">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2591">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2592">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2593">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2596">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e2601">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2602">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2605">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e2610">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2611">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2614">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e2619">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2620">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2623">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2624">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2626">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2627">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2632">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2633">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2634">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2635">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2636">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2639">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e2644">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2645">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2646">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2649">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e2654">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2655">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2656">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2659">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e2664">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2665">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2666">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2669">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2670">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2672">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2673">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2676">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2677">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2680">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2681">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2685">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2692">application/zip<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2693">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2702">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p> - <h6>Example</h6><pre><code>1.0</code></pre></p> - <p>The version of this specific Web Service</p> - <h3 id="d2e2722">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2942">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The forum not found</p> - <h3 id="d2e2725">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>) + <h3 id="d2e2945">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> @@ -16962,11 +17420,11 @@ <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e2735">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2955">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e2752">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2972">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The author, forum or message not found</p> - <h3 id="d2e2755">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>) + <h3 id="d2e2975">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> @@ -16985,11 +17443,11 @@ <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e2765">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e2985">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e2782">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3002">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The author, forum or message not found</p> - <h3 id="d2e2785">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) + <h3 id="d2e3005">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> @@ -17004,13 +17462,13 @@ <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e2795">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3015">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e2802">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3022">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <div class="representation"></div> - <h3 id="d2e2807">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3027">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The author, forum or message not found</p> - <h3 id="d2e2810">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) + <h3 id="d2e3030">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> @@ -17025,11 +17483,11 @@ <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e2820">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3040">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e2840">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3060">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The author, forum or message not found</p> - <h3 id="d2e2843">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>) + <h3 id="d2e3063">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> @@ -17048,13 +17506,13 @@ <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e2853">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3073">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e2864">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3084">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <div class="representation"></div> - <h3 id="d2e2875">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3095">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The author or message not found</p> - <h3 id="d2e2878">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) + <h3 id="d2e3098">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> @@ -17069,11 +17527,13 @@ <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e2888">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3108">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e2905">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3115">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3116">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3118">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The author or message not found</p> - <h3 id="d2e2908">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) + <h3 id="d2e3121">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> @@ -17088,13 +17548,11 @@ <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e2918">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3131">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e2925">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2926">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2928">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3148">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The author or message not found</p> - <h3 id="d2e2931">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) + <h3 id="d2e3151">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> @@ -17109,35 +17567,135 @@ <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e2941">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3161">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e2950">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3170">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The message not found</p> - <h3 id="d2e2953">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3173">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The links to the attachments</p> - <h3 id="d2e2960">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2961">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e2963">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3180">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e3184">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The identity or the portrait not found</p> - <h3 id="d2e2966">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3187">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>Ok</p> - <h3 id="d2e2973">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3194">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <div class="representation"></div> - <h3 id="d2e2977">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3198">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The identity or the portrait not found</p> - <h3 id="d2e2980">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3201">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>Ok</p> - <h3 id="d2e2987">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e2991">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3208">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3209">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3211">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The identity or the portrait not found</p> - <h3 id="d2e2994">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3214">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>Ok</p> - <h3 id="d2e3008">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3228">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The identity or the portrait not found</p> - <h3 id="d2e3011">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3231">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The portrait as image</p> - <h3 id="d2e3024">Status Code 200 - application/xml, application/json, application/json;pagingspec=1.0 (<abbr title="{http://www.example.com} courseVO">ns3:courseVO</abbr>) + <h3 id="d2e3245">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course not found</p> + <h3 id="d2e3248">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} assessableResultsVO">ns3:assessableResultsVO</abbr>) + </h3> + <p> + <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<assessableResultsVOes> + <assessableResultsVO> + <identityKey>345</identityKey> + <score>34.0</score> + <passed>true</passed> + </assessableResultsVO> +</assessableResultsVOes> +</code></pre></p> + <p>Array of results for the whole the course</p> + <div class="representation"> + <h6>XML Schema</h6> + <p><em>Source: <a href=""></a></em></p><pre></pre></div> + <h3 id="d2e3258">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e3266">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p> + <h6>Example</h6><pre><code>1.0</code></pre></p> + <p>The version of this specific Web Service</p> + <h3 id="d2e3287">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The identity or the course not found</p> + <h3 id="d2e3290">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} assessableResultsVO">ns3:assessableResultsVO</abbr>) + </h3> + <p> + <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<assessableResultsVO> + <identityKey>345</identityKey> + <score>34.0</score> + <passed>true</passed> +</assessableResultsVO> +</code></pre></p> + <p>The result of the course</p> + <div class="representation"> + <h6>XML Schema</h6> + <p><em>Source: <a href=""></a></em></p><pre></pre></div> + <h3 id="d2e3300">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e3314">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course not found</p> + <h3 id="d2e3317">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} assessableResultsVO">ns3:assessableResultsVO</abbr>) + </h3> + <p> + <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<assessableResultsVOes> + <assessableResultsVO> + <identityKey>345</identityKey> + <score>34.0</score> + <passed>true</passed> + </assessableResultsVO> +</assessableResultsVOes> +</code></pre></p> + <p>Export all results of all user of the course</p> + <div class="representation"> + <h6>XML Schema</h6> + <p><em>Source: <a href=""></a></em></p><pre></pre></div> + <h3 id="d2e3327">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e3334">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3335">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3337">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The identity not found</p> + <h3 id="d2e3340">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>Import successful</p> + <h3 id="d2e3343">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e3360">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The identity or the course not found</p> + <h3 id="d2e3363">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} assessableResultsVO">ns3:assessableResultsVO</abbr>) + </h3> + <p> + <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<assessableResultsVO> + <identityKey>345</identityKey> + <score>34.0</score> + <passed>true</passed> +</assessableResultsVO> +</code></pre></p> + <p>The result of a user at a specific node</p> + <div class="representation"> + <h6>XML Schema</h6> + <p><em>Source: <a href=""></a></em></p><pre></pre></div> + <h3 id="d2e3373">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e3384">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p> + <h6>Example</h6><pre><code>1.0</code></pre></p> + <p>The version of this specific Web Service</p> + <h3 id="d2e3406">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The identity not found</p> + <h3 id="d2e3409">Status Code 200 - text/plain, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p> + <h6>Example</h6><pre><code>&lt;hello&gt;Hello john&lt;/hello&gt;</code></pre></p> + <p>Say hello to the authenticated user, and give it a security token</p> + <h3 id="d2e3419">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The authentication has failed</p> + <h3 id="d2e3432">Status Code 200 - application/xml, application/json, application/json;pagingspec=1.0 (<abbr title="{http://www.example.com} courseVO">ns3:courseVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> @@ -17155,1153 +17713,1083 @@ <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e3042">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} environmentVO">ns3:environmentVO</abbr>) + <h3 id="d2e3459">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseVO">ns3:courseVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<environmentVO vmVersion="20.4-b02-402" vmVendor="Apple Inc." vmName="Java HotSpot(TM) 64-Bit Server VM" runtimeName="15261@agam.local" availableProcessors="4" osVersion="10.7.2" osName="Mac OS X" arch="x86_64"/> +<courseVO> + <key>777</key> + <title>Demo course</title> + <displayName>Demo course</displayName> +</courseVO> </code></pre></p> - <p>A short summary of the number of classes</p> + <p>The metadatas of the created course</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e3052">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3469">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e3060">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} releaseVO">ns3:releaseVO</abbr>) + <h3 id="d2e3474">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3475">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3481">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p> + <h6>Example</h6><pre><code>1.0</code></pre></p> + <p>The version of this specific Web Service</p> + <h3 id="d2e3499">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p> + <h6>Example</h6><pre><code>1.0</code></pre></p> + <p>The version of this specific Web Service</p> + <h3 id="d2e3524">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p> + <h6>Example</h6><pre><code>OK</code></pre></p> + <p>The translation of the package + key</p> + <h3 id="d2e3544">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<versionVO upgradeAvailable="false" updateAvailable="false" allowAutoUpdate="false" patchAvailable="true" allowAutoPatch="true" repoRevision="" olatVersion="" buildVersion=""/> +<forum subscribed="false" courseNodeId="2784628" courseKey="286" forumKey="3865487" detailsName="It is a forum" name="My forum"/> </code></pre></p> - <p>The verison of the instance</p> + <p>The forums</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e3070">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3554">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e3078">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e3079">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e3085">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3565">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The forum not found</p> + <h3 id="d2e3568">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>) + </h3> <p> - <h6>Example</h6><pre><code>1.0</code></pre></p> - <p>The version of this specific Web Service</p> - <h3 id="d2e3099">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e3100">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e3107">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} releaseVO">ns3:releaseVO</abbr>) + <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<forum subscribed="false" courseNodeId="2784628" courseKey="286" forumKey="3865487" detailsName="It is a forum" name="My forum"/> +</code></pre></p> + <p>The root message of the thread</p> + <div class="representation"> + <h6>XML Schema</h6> + <p><em>Source: <a href=""></a></em></p><pre></pre></div> + <h3 id="d2e3578">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e3595">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The author, forum or message not found</p> + <h3 id="d2e3598">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>) + </h3> + <p> + <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<messages totalCount="1"> + <messages> + <message> + <key>380</key> + <authorKey>345</authorKey> + <title>A message</title> + <body>The content of the message</body> + </message> + </messages> +</messages> +</code></pre></p> + <p>The root message of the thread</p> + <div class="representation"> + <h6>XML Schema</h6> + <p><em>Source: <a href=""></a></em></p><pre></pre></div> + <h3 id="d2e3608">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e3625">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The author, forum or message not found</p> + <h3 id="d2e3628">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<monitoringInfosVO> - <type>openolat</type> - <description>this is an OpenOLAT instance</description> - <probes> - <probe>Environnment</probe> - <probe>System</probe> - <probe>Runtime</probe> - <probe>Memory</probe> - </probes> - <dependencies> - <dependency url="localhost" type="openfire"/> - <dependency url="192.168.1.120" type="mysql"/> - </dependencies> -</monitoringInfosVO> +<messageVO> + <key>380</key> + <authorKey>345</authorKey> + <title>A message</title> + <body>The content of the message</body> +</messageVO> </code></pre></p> - <p>The verison of the instance</p> + <p>The root message of the thread</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e3117">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3638">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e3125">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} runtimeVO">ns3:runtimeVO</abbr>) + <h3 id="d2e3645">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e3650">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The author, forum or message not found</p> + <h3 id="d2e3653">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<runtimeVO upTime="21248" startTime="2012-09-03T11:43:12.668+02:00" systemLoadAverage="1.16748046875"> - <classes totalLoadedClassCount="8500" unloadedClassCount="1500" loadedClassCount="7000"/> - <threads peakThreadCount="123" daemonCount="45" threadCount="102"/> - <memory maxNonHeap="0" committedNonHeap="0" usedNonHeap="0" initNonHeap="0" maxHeap="0" committedHeap="0" usedHeap="0" initHeap="0" totalMemory="56" freeMemory="45" usedMemory="12"/> -</runtimeVO> +<messageVO> + <key>380</key> + <authorKey>345</authorKey> + <title>A message</title> + <body>The content of the message</body> +</messageVO> </code></pre></p> - <p>The version of the instance</p> + <p>The root message of the thread</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e3135">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3663">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e3143">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} classesVO">ns3:classesVO</abbr>) + <h3 id="d2e3683">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The author, forum or message not found</p> + <h3 id="d2e3686">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<classeStatisticsVO totalLoadedClassCount="8500" unloadedClassCount="1500" loadedClassCount="7000"/> +<messages totalCount="1"> + <messages> + <message> + <key>380</key> + <authorKey>345</authorKey> + <title>A message</title> + <body>The content of the message</body> + </message> + </messages> +</messages> </code></pre></p> - <p>A short summary of the number of classes</p> + <p>The root message of the thread</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e3153">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3696">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e3161">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} runtimeVO">ns3:runtimeVO</abbr>) + <h3 id="d2e3707">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e3718">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The author or message not found</p> + <h3 id="d2e3721">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<memoryStatisticsVO maxNonHeap="0" committedNonHeap="0" usedNonHeap="0" initNonHeap="0" maxHeap="0" committedHeap="0" usedHeap="0" initHeap="0" totalMemory="56" freeMemory="45" usedMemory="12"/> +<messageVO> + <key>380</key> + <authorKey>345</authorKey> + <title>A message</title> + <body>The content of the message</body> +</messageVO> </code></pre></p> - <p>The version of the instance</p> + <p>The root message of the thread</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e3171">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3731">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e3179">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} runtimeVO">ns3:runtimeVO</abbr>) + <h3 id="d2e3738">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3739">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3741">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The author or message not found</p> + <h3 id="d2e3744">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<threadStatisticsVO peakThreadCount="123" daemonCount="45" threadCount="102"/> +<messageVO> + <key>380</key> + <authorKey>345</authorKey> + <title>A message</title> + <body>The content of the message</body> +</messageVO> </code></pre></p> - <p>The version of the instance</p> + <p>The root message of the thread</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e3189">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3754">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e3197">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} runtimeVO">ns3:runtimeVO</abbr>) + <h3 id="d2e3771">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The author or message not found</p> + <h3 id="d2e3774">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<databaseVO> - <connectionInfos currentConnectionCount="25" activeConnectionCount="10"/> - <hibernateStatistics queryExecutionCount="1237" queryExecutionMaxTimeQueryString="select * from PLock" queryExecutionMaxTime="12000" optimisticFailureCount="23" failedTransactionsCount="2" successfulTransactionCount="13980" transactionsCount="13900" openSessionsCount="12"/> -</databaseVO> +<messageVO> + <key>380</key> + <authorKey>345</authorKey> + <title>A message</title> + <body>The content of the message</body> +</messageVO> </code></pre></p> - <p>The version of the instance</p> + <p>The root message of the thread</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e3207">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3784">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e3215">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} releaseVO">ns3:releaseVO</abbr>) + <h3 id="d2e3793">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The message not found</p> + <h3 id="d2e3796">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The links to the attachments</p> + <h3 id="d2e3803">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e3807">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The identity or the portrait not found</p> + <h3 id="d2e3810">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>Ok</p> + <h3 id="d2e3817">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e3821">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The identity or the portrait not found</p> + <h3 id="d2e3824">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>Ok</p> + <h3 id="d2e3831">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3832">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3834">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The identity or the portrait not found</p> + <h3 id="d2e3837">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>Ok</p> + <h3 id="d2e3851">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The identity or the portrait not found</p> + <h3 id="d2e3854">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The portrait as image</p> + <h3 id="d2e3866">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The forum not found</p> + <h3 id="d2e3869">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<openolatStatisticsVO/> +<forum subscribed="false" courseNodeId="2784628" courseKey="286" forumKey="3865487" detailsName="It is a forum" name="My forum"/> </code></pre></p> - <p>The verison of the instance</p> + <p>The root message of the thread</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e3225">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3879">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e3233">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} releaseVO">ns3:releaseVO</abbr>) + <h3 id="d2e3896">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The author, forum or message not found</p> + <h3 id="d2e3899">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<userStatisticsVO totalGroupCount="0" totalUserCount="0"/> +<messages totalCount="1"> + <messages> + <message> + <key>380</key> + <authorKey>345</authorKey> + <title>A message</title> + <body>The content of the message</body> + </message> + </messages> +</messages> </code></pre></p> - <p>The verison of the instance</p> + <p>The root message of the thread</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e3243">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3909">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e3251">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} releaseVO">ns3:releaseVO</abbr>) + <h3 id="d2e3926">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The author, forum or message not found</p> + <h3 id="d2e3929">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<repositoryStatisticsVO publishedCoursesCount="0" coursesCount="0"/> +<messageVO> + <key>380</key> + <authorKey>345</authorKey> + <title>A message</title> + <body>The content of the message</body> +</messageVO> </code></pre></p> - <p>The verison of the instance</p> + <p>The root message of the thread</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e3261">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3939">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e3269">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} releaseVO">ns3:releaseVO</abbr>) + <h3 id="d2e3946">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e3951">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The author, forum or message not found</p> + <h3 id="d2e3954">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<indexerStatisticsVO indexingTime="0" indexSize="0" availableFolderIndexerCount="0" runningFolderIndexerCount="0" documentQueueSize="0" excludedDocumentCount="0" indexedDocumentCount="0"/> +<messageVO> + <key>380</key> + <authorKey>345</authorKey> + <title>A message</title> + <body>The content of the message</body> +</messageVO> </code></pre></p> - <p>The verison of the instance</p> + <p>The root message of the thread</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e3279">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3964">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e3287">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} sessionVO">ns3:sessionVO</abbr>) + <h3 id="d2e3984">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The author, forum or message not found</p> + <h3 id="d2e3987">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<sessionsVO instantMessagingCount="123" secureRestCount="0" restCount="0" secureWebdavCount="12" webdavCount="23" secureAuthenticatedCount="234" authenticatedCount="234" count="234"/> +<messages totalCount="1"> + <messages> + <message> + <key>380</key> + <authorKey>345</authorKey> + <title>A message</title> + <body>The content of the message</body> + </message> + </messages> +</messages> </code></pre></p> - <p>A short summary about sessions</p> + <p>The root message of the thread</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e3297">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e3997">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e3307">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>Informations about memory</p> - <h3 id="d2e3310">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e3317">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} memoryVO">ns3:memoryVO</abbr>) + <h3 id="d2e4008">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e4019">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The author or message not found</p> + <h3 id="d2e4022">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<memoryVO maxAvailable="2000" totalUsed="546" totalMem="230" date="2012-09-03T11:43:12.668+02:00"/> +<messageVO> + <key>380</key> + <authorKey>345</authorKey> + <title>A message</title> + <body>The content of the message</body> +</messageVO> </code></pre></p> - <p>A short summary of the number of classes</p> + <p>The root message of the thread</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e3327">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4032">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e3333">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e3336">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e3337">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e3345">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e3346">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e3352">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e3355">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e3356">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e3360">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e3361">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e3372">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The list of contacts</p> - <h3 id="d2e3385">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e3386">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e3388">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The identity not found</p> - <h3 id="d2e3391">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} authenticationVO">ns3:authenticationVO</abbr>) + <h3 id="d2e4039">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4040">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4042">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The author or message not found</p> + <h3 id="d2e4045">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<authenticationVO> - <key>38759</key> - <identityKey>345</identityKey> - <provider>OLAT</provider> - <authUsername>john</authUsername> -</authenticationVO> +<messageVO> + <key>380</key> + <authorKey>345</authorKey> + <title>A message</title> + <body>The content of the message</body> +</messageVO> </code></pre></p> - <p>The saved authentication</p> + <p>The root message of the thread</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e3401">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4055">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e3408">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The identity not found</p> - <h3 id="d2e3411">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} authenticationVO">ns3:authenticationVO</abbr>) + <h3 id="d2e4072">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The author or message not found</p> + <h3 id="d2e4075">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<authenticationVOes> - <authenticationVO> - <key>38759</key> - <identityKey>345</identityKey> - <provider>OLAT</provider> - <authUsername>john</authUsername> - </authenticationVO> -</authenticationVOes> +<messageVO> + <key>380</key> + <authorKey>345</authorKey> + <title>A message</title> + <body>The content of the message</body> +</messageVO> </code></pre></p> - <p>The list of all users in the OLAT system</p> + <p>The root message of the thread</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e3421">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4085">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e3435">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The identity or the authentication not found</p> - <h3 id="d2e3438">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The authentication successfully deleted</p> - <h3 id="d2e3441">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e3449">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p> - <h6>Example</h6><pre><code>1.0</code></pre></p> - <p>The version of this specific Web Service</p> - <h3 id="d2e3467">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e3468">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e3470">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The identity not found</p> - <h3 id="d2e3473">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} authenticationVO">ns3:authenticationVO</abbr>) + <h3 id="d2e4094">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The message not found</p> + <h3 id="d2e4097">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The links to the attachments</p> + <h3 id="d2e4104">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e4108">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The identity or the portrait not found</p> + <h3 id="d2e4111">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>Ok</p> + <h3 id="d2e4118">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e4122">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The identity or the portrait not found</p> + <h3 id="d2e4125">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>Ok</p> + <h3 id="d2e4132">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4133">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4135">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The identity or the portrait not found</p> + <h3 id="d2e4138">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>Ok</p> + <h3 id="d2e4152">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The identity or the portrait not found</p> + <h3 id="d2e4155">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The portrait as image</p> + <h3 id="d2e4165">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<authenticationVO> - <key>38759</key> - <identityKey>345</identityKey> - <provider>OLAT</provider> - <authUsername>john</authUsername> -</authenticationVO> +<catalogEntries totalCount="0"> + <catalogEntries> + <catalogEntry> + <key>478</key> + <name>Category</name> + <description>Description of the category</description> + <type>0</type> + </catalogEntry> + </catalogEntries> +</catalogEntries> </code></pre></p> - <p>The saved authentication</p> + <p>The list of roots catalog entries</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e3483">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e3497">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The identity or the authentication not found</p> - <h3 id="d2e3500">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The authentication successfully deleted</p> - <h3 id="d2e3503">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e3514">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or parentNode not found</p> - <h3 id="d2e3517">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVOes">ns3:forumVOes</abbr>) + <h3 id="d2e4186">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The path could not be resolved to a valid catalog entry</p> + <h3 id="d2e4189">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<forums totalCount="1"> - <forums> - <forums subscribed="false" courseNodeId="2784628" courseKey="286" forumKey="3865487" detailsName="It is a forum" name="My forum"/> - </forums> -</forums> +<users totalCount="0"> + <users> + <user> + <key>345</key> + <login>john</login> + <password></password> + <firstName>John</firstName> + <lastName>Smith</lastName> + <email>john.smith@frentix.com</email> + <properties> + <property> + <name>telPrivate</name> + <value>238456782</value> + </property> + <property> + <name>telMobile</name> + <value>238456782</value> + </property> + </properties> + </user> + </users> +</users> </code></pre></p> - <p>The course node metadatas</p> + <p>The catalog entry</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e3527">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e3534">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e3546">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or parentNode not found</p> - <h3 id="d2e3549">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) + <h3 id="d2e4199">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>Not authorized</p> + <h3 id="d2e4206">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The path could not be resolved to a valid catalog entry</p> + <h3 id="d2e4209">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> +<users totalCount="0"> + <users> + <user> + <key>345</key> + <login>john</login> + <password></password> + <firstName>John</firstName> + <lastName>Smith</lastName> + <email>john.smith@frentix.com</email> + <properties> + <property> + <name>telPrivate</name> + <value>238456782</value> + </property> + <property> + <name>telMobile</name> + <value>238456782</value> + </property> + </properties> + </user> + </users> +</users> </code></pre></p> - <p>The course node metadatas</p> + <p>The catalog entry</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e3559">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e3577">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or parentNode not found</p> - <h3 id="d2e3580">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) + <h3 id="d2e4219">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>Not authorized</p> + <h3 id="d2e4226">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The path could not be resolved to a valid catalog entry</p> + <h3 id="d2e4229">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseNodeVO> - <id>id</id> -</courseNodeVO> +<users totalCount="0"> + <users> + <user> + <key>345</key> + <login>john</login> + <password></password> + <firstName>John</firstName> + <lastName>Smith</lastName> + <email>john.smith@frentix.com</email> + <properties> + <property> + <name>telPrivate</name> + <value>238456782</value> + </property> + <property> + <name>telMobile</name> + <value>238456782</value> + </property> + </properties> + </user> + </users> +</users> </code></pre></p> - <p>The course node metadatas</p> + <p>The catalog entry</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e3590">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e3604">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or parentNode not found</p> - <h3 id="d2e3607">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>) - </h3> + <h3 id="d2e4239">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>Not authorized</p> + <h3 id="d2e4247">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p> - <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<forum subscribed="false" courseNodeId="2784628" courseKey="286" forumKey="3865487" detailsName="It is a forum" name="My forum"/> -</code></pre></p> - <p>The course node metadatas</p> - <div class="representation"> - <h6>XML Schema</h6> - <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e3617">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e3644">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The author, forum or message not found</p> - <h3 id="d2e3647">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) + <h6>Example</h6><pre><code>1.0</code></pre></p> + <p>The version of this specific Web Service</p> + <h3 id="d2e4268">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The path could not be resolved to a valid catalog entry</p> + <h3 id="d2e4271">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<messageVO> - <key>380</key> - <authorKey>345</authorKey> - <title>A message</title> - <body>The content of the message</body> -</messageVO> +<catalogEntries totalCount="0"> + <catalogEntries> + <catalogEntry> + <key>478</key> + <name>Category</name> + <description>Description of the category</description> + <type>0</type> + </catalogEntry> + </catalogEntries> +</catalogEntries> </code></pre></p> - <p>The root message of the thread</p> + <p>The list of catalog entries</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e3657">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e3684">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The author, forum or message not found</p> - <h3 id="d2e3687">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) + <h3 id="d2e4289">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<messageVO> - <key>380</key> - <authorKey>345</authorKey> - <title>A message</title> - <body>The content of the message</body> -</messageVO> +<catalogEntryVO> + <key>478</key> + <name>Category</name> + <description>Description of the category</description> + <type>0</type> +</catalogEntryVO> </code></pre></p> - <p>The root message of the thread</p> + <p>The catalog entry</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e3697">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e3709">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The forum not found</p> - <h3 id="d2e3712">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>) + <h3 id="d2e4299">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The path could not be resolved to a valid catalog entry</p> + <h3 id="d2e4319">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The path could not be resolved to a valid catalog entry</p> + <h3 id="d2e4322">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<forum subscribed="false" courseNodeId="2784628" courseKey="286" forumKey="3865487" detailsName="It is a forum" name="My forum"/> +<catalogEntryVO> + <key>478</key> + <name>Category</name> + <description>Description of the category</description> + <type>0</type> +</catalogEntryVO> </code></pre></p> - <p>The root message of the thread</p> + <p>The catalog entry</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e3722">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e3739">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The author, forum or message not found</p> - <h3 id="d2e3742">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>) + <h3 id="d2e4332">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>Not authorized</p> + <h3 id="d2e4339">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4340">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4342">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The path could not be resolved to a valid catalog entry</p> + <h3 id="d2e4345">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<messages totalCount="1"> - <messages> - <message> - <key>380</key> - <authorKey>345</authorKey> - <title>A message</title> - <body>The content of the message</body> - </message> - </messages> -</messages> +<catalogEntryVO> + <key>478</key> + <name>Category</name> + <description>Description of the category</description> + <type>0</type> +</catalogEntryVO> </code></pre></p> - <p>The root message of the thread</p> + <p>The catalog entry</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e3752">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e3769">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The author, forum or message not found</p> - <h3 id="d2e3772">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) + <h3 id="d2e4355">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>Not authorized</p> + <h3 id="d2e4362">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e4373">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The path could not be resolved to a valid catalog entry</p> + <h3 id="d2e4376">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<messageVO> - <key>380</key> - <authorKey>345</authorKey> - <title>A message</title> - <body>The content of the message</body> -</messageVO> +<catalogEntryVO> + <key>478</key> + <name>Category</name> + <description>Description of the category</description> + <type>0</type> +</catalogEntryVO> </code></pre></p> - <p>The root message of the thread</p> + <p>The catalog entry</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e3782">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e3789">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e3794">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The author, forum or message not found</p> - <h3 id="d2e3797">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) + <h3 id="d2e4386">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>Not authorized</p> + <h3 id="d2e4394">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4395">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4397">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The path could not be resolved to a valid catalog entry</p> + <h3 id="d2e4400">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<messageVO> - <key>380</key> - <authorKey>345</authorKey> - <title>A message</title> - <body>The content of the message</body> -</messageVO> +<catalogEntryVO> + <key>478</key> + <name>Category</name> + <description>Description of the category</description> + <type>0</type> +</catalogEntryVO> </code></pre></p> - <p>The root message of the thread</p> + <p>The catalog entry</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e3807">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e3827">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The author, forum or message not found</p> - <h3 id="d2e3830">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>) + <h3 id="d2e4410">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>Not authorized</p> + <h3 id="d2e4421">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The path could not be resolved to a valid catalog entry</p> + <h3 id="d2e4424">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<messages totalCount="1"> - <messages> - <message> - <key>380</key> - <authorKey>345</authorKey> - <title>A message</title> - <body>The content of the message</body> - </message> - </messages> -</messages> +<catalogEntryVO> + <key>478</key> + <name>Category</name> + <description>Description of the category</description> + <type>0</type> +</catalogEntryVO> </code></pre></p> - <p>The root message of the thread</p> + <p>The catalog entry</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e3840">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e3851">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e3862">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The author or message not found</p> - <h3 id="d2e3865">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) + <h3 id="d2e4434">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>Not authorized</p> + <h3 id="d2e4441">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The path could not be resolved to a valid catalog entry</p> + <h3 id="d2e4444">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<messageVO> - <key>380</key> - <authorKey>345</authorKey> - <title>A message</title> - <body>The content of the message</body> -</messageVO> +<catalogEntryVO> + <key>478</key> + <name>Category</name> + <description>Description of the category</description> + <type>0</type> +</catalogEntryVO> </code></pre></p> - <p>The root message of the thread</p> + <p>The catalog entry</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e3875">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e3892">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The author or message not found</p> - <h3 id="d2e3895">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) + <h3 id="d2e4454">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>Not authorized</p> + <h3 id="d2e4465">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The path could not be resolved to a valid catalog entry</p> + <h3 id="d2e4468">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<messageVO> - <key>380</key> - <authorKey>345</authorKey> - <title>A message</title> - <body>The content of the message</body> -</messageVO> +<users totalCount="0"> + <users> + <user> + <key>345</key> + <login>john</login> + <password></password> + <firstName>John</firstName> + <lastName>Smith</lastName> + <email>john.smith@frentix.com</email> + <properties> + <property> + <name>telPrivate</name> + <value>238456782</value> + </property> + <property> + <name>telMobile</name> + <value>238456782</value> + </property> + </properties> + </user> + </users> +</users> </code></pre></p> - <p>The root message of the thread</p> + <p>The catalog entry</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e3905">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e3912">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e3913">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e3915">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The author or message not found</p> - <h3 id="d2e3918">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) - </h3> + <h3 id="d2e4478">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>Not authorized</p> + <h3 id="d2e4495">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The identity not found</p> + <h3 id="d2e4498">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<messageVO> - <key>380</key> - <authorKey>345</authorKey> - <title>A message</title> - <body>The content of the message</body> -</messageVO> +<subscriptionInfoVOes> + <subscriptionInfoVO> + <title>Infos</title> + <items/> + </subscriptionInfoVO> +</subscriptionInfoVOes> </code></pre></p> - <p>The root message of the thread</p> - <div class="representation"> - <h6>XML Schema</h6> - <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e3928">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e3937">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The message not found</p> - <h3 id="d2e3940">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The links to the attachments</p> - <h3 id="d2e3947">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e3948">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e3950">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The identity or the portrait not found</p> - <h3 id="d2e3953">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>Ok</p> - <h3 id="d2e3960">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e3964">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The identity or the portrait not found</p> - <h3 id="d2e3967">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>Ok</p> - <h3 id="d2e3974">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e3978">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The identity or the portrait not found</p> - <h3 id="d2e3981">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>Ok</p> - <h3 id="d2e3995">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The identity or the portrait not found</p> - <h3 id="d2e3998">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The portrait as image</p> - <h3 id="d2e4009">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The notifications</p> + <h3 id="d2e4516">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p> <h6>Example</h6><pre><code>1.0</code></pre></p> <p>The version of this specific Web Service</p> - <h3 id="d2e4027">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4534">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The course or the shared folder not found</p> - <h3 id="d2e4030">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4537">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The list of files</p> - <h3 id="d2e4033">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4540">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e4045">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4552">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The course or the shared folder not found</p> - <h3 id="d2e4048">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4555">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The list of files</p> - <h3 id="d2e4051">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4558">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e4060">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4567">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The course not found</p> - <h3 id="d2e4063">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4570">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The list of files</p> - <h3 id="d2e4066">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4573">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e4073">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4580">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <div class="representation"></div> - <h3 id="d2e4081">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4588">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The course or course node not found</p> - <h3 id="d2e4084">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4591">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The file is correctly saved</p> - <h3 id="d2e4087">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4594">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The course node is not acceptable to copy a file</p> - <h3 id="d2e4090">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4597">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e4097">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4604">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <div class="representation"></div> - <h3 id="d2e4101">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4608">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The course or course node not found</p> - <h3 id="d2e4104">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4611">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The file is correctly saved</p> - <h3 id="d2e4107">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4614">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The course node is not acceptable to copy a file</p> - <h3 id="d2e4110">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4617">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e4120">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4627">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The course not found</p> - <h3 id="d2e4123">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4630">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The list of files</p> - <h3 id="d2e4126">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4633">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e4133">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4640">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <div class="representation"></div> - <h3 id="d2e4141">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4648">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The course or course node not found</p> - <h3 id="d2e4144">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4651">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The file is correctly saved</p> - <h3 id="d2e4147">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4654">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The course node is not acceptable to copy a file</p> - <h3 id="d2e4150">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4657">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e4157">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4664">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <div class="representation"></div> - <h3 id="d2e4161">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4668">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The course or course node not found</p> - <h3 id="d2e4164">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4671">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The file is correctly saved</p> - <h3 id="d2e4167">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4674">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The course node is not acceptable to copy a file</p> - <h3 id="d2e4170">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e4184">Status Code 200 - application/xml, application/json, application/json;pagingspec=1.0 (<abbr title="{http://www.example.com} courseVO">ns3:courseVO</abbr>) - </h3> - <p> - <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courses totalCount="0"> - <courses> - <course> - <key>777</key> - <title>Demo course</title> - <displayName>Demo course</displayName> - </course> - </courses> -</courses> -</code></pre></p> - <p>List of visible courses</p> - <div class="representation"> - <h6>XML Schema</h6> - <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e4211">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseVO">ns3:courseVO</abbr>) - </h3> - <p> - <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseVO> - <key>777</key> - <title>Demo course</title> - <displayName>Demo course</displayName> -</courseVO> -</code></pre></p> - <p>The metadatas of the created course</p> - <div class="representation"> - <h6>XML Schema</h6> - <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e4221">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4677">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e4226">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4227">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4233">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4688">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p> <h6>Example</h6><pre><code>1.0</code></pre></p> - <p>The version of this specific Web Service</p> - <h3 id="d2e4257">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The identity not found</p> - <h3 id="d2e4260">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p> - <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<subscriptionInfoVOes> - <subscriptionInfoVO> - <title>Infos</title> - <items/> - </subscriptionInfoVO> -</subscriptionInfoVOes> -</code></pre></p> - <p>The notifications</p> - <h3 id="d2e4274">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4275">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4287">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4288">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4291">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e4301">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4302">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4308">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4309">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4312">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e4320">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4321">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4327">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4328">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4329">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4330">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4331">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4334">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e4339">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4340">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4343">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e4348">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4349">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4352">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e4357">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4358">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4361">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4362">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4364">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4365">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4370">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4371">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4372">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4373">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4374">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4377">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e4382">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4383">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4384">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4387">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e4392">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4393">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4394">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4397">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e4402">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4403">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4404">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4407">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4408">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4410">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4411">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4414">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4415">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4418">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4419">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4423">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4434">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} folderVOes">ns3:folderVOes</abbr>) + <p>Return the version number</p> + <h3 id="d2e4701">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4708">Status Code 200 - image/jpeg<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>Images for the documentation</p> + <h3 id="d2e4717">Status Code 200 - image/jpeg<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>Images for the documentation</p> + <h3 id="d2e4725">Status Code 200 - text/html, application/xhtml+xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The copyright of the REST API.</p> + <h3 id="d2e4732">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The copyright of the REST API.</p> + <h3 id="d2e4745">Status Code 200 - text/plain, text/html, application/xml, application/json (<abbr title="{http://www.example.com} repositoryEntryVO">ns3:repositoryEntryVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<folders totalCount="1"> - <folders> - <folder delete="false" list="false" read="false" write="false" subscribed="true" courseNodeId="438950850389" courseKey="375397" name="Course folder"/> - </folders> -</folders> +<repositoryEntries totalCount="1"> + <repositoryEntries> + <repositoryEntrie> + <key>479286</key> + <softkey>internal_cp</softkey> + <resourcename>fdhasl</resourcename> + <displayname>CP-demo</displayname> + <resourceableId>4368567</resourceableId> + <resourceableTypeName>CourseModule</resourceableTypeName> + </repositoryEntrie> + </repositoryEntries> +</repositoryEntries> </code></pre></p> - <p>The folders</p> + <p>List all entries in the repository</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e4444">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e4451">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4452">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4453">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4454">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4455">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4458">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e4463">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4464">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4467">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e4472">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4473">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4476">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e4481">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4482">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4485">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4486">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4488">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4489">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4494">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4495">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4496">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4497">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4498">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4501">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e4506">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4507">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4508">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4511">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e4516">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4517">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4518">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4521">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e4526">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4527">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4528">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4531">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4532">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4534">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4535">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4538">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4539">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4542">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4543">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4547">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4552">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4553">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4554">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4555">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4556">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4559">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e4564">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4565">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4568">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e4573">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4574">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4577">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e4582">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4583">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4586">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4587">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4589">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4590">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4595">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4596">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4597">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4598">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4599">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4602">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e4607">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4608">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4609">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4612">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e4617">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4618">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4619">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4622">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e4627">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4628">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4629">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4632">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4633">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4635">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4636">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4639">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4640">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4643">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4644">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4648">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4654">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4655">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4656">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4657">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4658">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4661">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e4666">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4667">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4670">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e4675">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4676">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4679">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e4684">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4685">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4688">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4689">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4691">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4692">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4697">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4698">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4699">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4700">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4701">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4704">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e4709">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4710">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4711">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4714">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e4719">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4720">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4721">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4724">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e4729">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4730">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4731">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4734">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4735">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4737">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4738">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4741">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4742">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4745">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4746">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4750">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e4758">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p> - <h6>Example</h6><pre><code>Ping</code></pre></p> - <p>Return a small string</p> - <h3 id="d2e4773">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p> - <h6>Example</h6><pre><code>1.0</code></pre></p> - <p>The version of this specific Web Service</p> - <h3 id="d2e4789">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p> - <h6>Example</h6><pre><code>Ping</code></pre></p> - <p>Return a small string</p> - <h3 id="d2e4809">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>) + <h3 id="d2e4759">Status Code 200 - text/plain, text/html, application/xml, application/json (<abbr title="{http://www.example.com} repositoryEntryVO">ns3:repositoryEntryVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<forum subscribed="false" courseNodeId="2784628" courseKey="286" forumKey="3865487" detailsName="It is a forum" name="My forum"/> +<repositoryEntries totalCount="1"> + <repositoryEntries> + <repositoryEntrie> + <key>479286</key> + <softkey>internal_cp</softkey> + <resourcename>fdhasl</resourcename> + <displayname>CP-demo</displayname> + <resourceableId>4368567</resourceableId> + <resourceableTypeName>CourseModule</resourceableTypeName> + </repositoryEntrie> + </repositoryEntries> +</repositoryEntries> </code></pre></p> - <p>The forums</p> + <p>List all entries in the repository</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e4819">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e4831">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The forum not found</p> - <h3 id="d2e4834">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>) + <h3 id="d2e4773">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} repositoryEntryVO">ns3:repositoryEntryVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<forum subscribed="false" courseNodeId="2784628" courseKey="286" forumKey="3865487" detailsName="It is a forum" name="My forum"/> +<repositoryEntryVO> + <key>479286</key> + <softkey>internal_cp</softkey> + <resourcename>fdhasl</resourcename> + <displayname>CP-demo</displayname> + <resourceableId>4368567</resourceableId> + <resourceableTypeName>CourseModule</resourceableTypeName> +</repositoryEntryVO> </code></pre></p> - <p>The root message of the thread</p> + <p>Import the resource and return the repository entry</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e4844">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4783">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e4861">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The author, forum or message not found</p> - <h3 id="d2e4864">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>) + <h3 id="d2e4791">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4810">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} repositoryEntryVO">ns3:repositoryEntryVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<messages totalCount="1"> - <messages> - <message> - <key>380</key> - <authorKey>345</authorKey> - <title>A message</title> - <body>The content of the message</body> - </message> - </messages> -</messages> +<repositoryEntryVO> + <key>479286</key> + <softkey>internal_cp</softkey> + <resourcename>fdhasl</resourcename> + <displayname>CP-demo</displayname> + <resourceableId>4368567</resourceableId> + <resourceableTypeName>CourseModule</resourceableTypeName> +</repositoryEntryVO> </code></pre></p> - <p>The root message of the thread</p> + <p>Search for repository entries</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e4874">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4820">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e4891">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The author, forum or message not found</p> - <h3 id="d2e4894">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) - </h3> - <p> - <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<messageVO> - <key>380</key> - <authorKey>345</authorKey> - <title>A message</title> - <body>The content of the message</body> -</messageVO> -</code></pre></p> - <p>The root message of the thread</p> - <div class="representation"> - <h6>XML Schema</h6> - <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e4904">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4831">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course not found</p> + <h3 id="d2e4834">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The metadatas of the created course</p> + <h3 id="d2e4837">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e4911">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e4916">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The author, forum or message not found</p> - <h3 id="d2e4919">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) + <h3 id="d2e4844">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The repository entry not found</p> + <h3 id="d2e4847">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} repositoryEntryVO">ns3:repositoryEntryVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<messageVO> - <key>380</key> - <authorKey>345</authorKey> - <title>A message</title> - <body>The content of the message</body> -</messageVO> +<repositoryEntryVO> + <key>479286</key> + <softkey>internal_cp</softkey> + <resourcename>fdhasl</resourcename> + <displayname>CP-demo</displayname> + <resourceableId>4368567</resourceableId> + <resourceableTypeName>CourseModule</resourceableTypeName> +</repositoryEntryVO> </code></pre></p> - <p>The root message of the thread</p> + <p>Get the repository resource</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e4929">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e4949">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The author, forum or message not found</p> - <h3 id="d2e4952">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>) + <h3 id="d2e4861">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e4867">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} repositoryEntryVO">ns3:repositoryEntryVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<messages totalCount="1"> - <messages> - <message> - <key>380</key> - <authorKey>345</authorKey> - <title>A message</title> - <body>The content of the message</body> - </message> - </messages> -</messages> +<repositoryEntryVO> + <key>479286</key> + <softkey>internal_cp</softkey> + <resourcename>fdhasl</resourcename> + <displayname>CP-demo</displayname> + <resourceableId>4368567</resourceableId> + <resourceableTypeName>CourseModule</resourceableTypeName> +</repositoryEntryVO> </code></pre></p> - <p>The root message of the thread</p> + <p>Replace the resource and return the updated repository entry</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e4962">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4877">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e4973">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e4984">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The author or message not found</p> - <h3 id="d2e4987">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) + <h3 id="d2e4886">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The resource is locked</p> + <h3 id="d2e4889">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The resource could not found</p> + <h3 id="d2e4892">Status Code 200 - application/zip<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p> + <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<repositoryEntryVO> + <key>479286</key> + <softkey>internal_cp</softkey> + <resourcename>fdhasl</resourcename> + <displayname>CP-demo</displayname> + <resourceableId>4368567</resourceableId> + <resourceableTypeName>CourseModule</resourceableTypeName> +</repositoryEntryVO> +</code></pre></p> + <p>Download the repository entry as export zip file</p> + <h3 id="d2e4902">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>Download of this resource is not possible</p> + <h3 id="d2e4905">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e4918">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4919">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4921">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The identity not found</p> + <h3 id="d2e4924">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} authenticationVO">ns3:authenticationVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<messageVO> - <key>380</key> - <authorKey>345</authorKey> - <title>A message</title> - <body>The content of the message</body> -</messageVO> +<authenticationVO> + <key>38759</key> + <identityKey>345</identityKey> + <provider>OLAT</provider> + <authUsername>john</authUsername> +</authenticationVO> </code></pre></p> - <p>The root message of the thread</p> + <p>The saved authentication</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e4997">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4934">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e5014">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The author or message not found</p> - <h3 id="d2e5017">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) + <h3 id="d2e4941">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The identity not found</p> + <h3 id="d2e4944">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} authenticationVO">ns3:authenticationVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<messageVO> - <key>380</key> - <authorKey>345</authorKey> - <title>A message</title> - <body>The content of the message</body> -</messageVO> +<authenticationVOes> + <authenticationVO> + <key>38759</key> + <identityKey>345</identityKey> + <provider>OLAT</provider> + <authUsername>john</authUsername> + </authenticationVO> +</authenticationVOes> </code></pre></p> - <p>The root message of the thread</p> + <p>The list of all users in the OLAT system</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e5027">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e4954">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e5034">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e5035">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e5037">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The author or message not found</p> - <h3 id="d2e5040">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) + <h3 id="d2e4968">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The identity or the authentication not found</p> + <h3 id="d2e4971">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The authentication successfully deleted</p> + <h3 id="d2e4974">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e4982">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p> + <h6>Example</h6><pre><code>1.0</code></pre></p> + <p>The version of this specific Web Service</p> + <h3 id="d2e5000">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5001">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5003">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The identity not found</p> + <h3 id="d2e5006">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} authenticationVO">ns3:authenticationVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<messageVO> - <key>380</key> - <authorKey>345</authorKey> - <title>A message</title> - <body>The content of the message</body> -</messageVO> +<authenticationVO> + <key>38759</key> + <identityKey>345</identityKey> + <provider>OLAT</provider> + <authUsername>john</authUsername> +</authenticationVO> </code></pre></p> - <p>The root message of the thread</p> + <p>The saved authentication</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e5050">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5016">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e5059">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The message not found</p> - <h3 id="d2e5062">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The links to the attachments</p> - <h3 id="d2e5069">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e5070">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e5072">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The identity or the portrait not found</p> - <h3 id="d2e5075">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>Ok</p> - <h3 id="d2e5082">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e5086">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The identity or the portrait not found</p> - <h3 id="d2e5089">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>Ok</p> - <h3 id="d2e5096">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e5100">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The identity or the portrait not found</p> - <h3 id="d2e5103">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>Ok</p> - <h3 id="d2e5117">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The identity or the portrait not found</p> - <h3 id="d2e5120">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The portrait as image</p> - <h3 id="d2e5131">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5030">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The identity or the authentication not found</p> + <h3 id="d2e5033">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The authentication successfully deleted</p> + <h3 id="d2e5036">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e5047">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p> + <h6>Example</h6><pre><code>Ping</code></pre></p> + <p>Return a small string</p> + <h3 id="d2e5062">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p> + <h6>Example</h6><pre><code>1.0</code></pre></p> + <p>The version of this specific Web Service</p> + <h3 id="d2e5078">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p> + <h6>Example</h6><pre><code>Ping</code></pre></p> + <p>Return a small string</p> + <h3 id="d2e5096">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p> + <h6>Example</h6><pre><code>1.0</code></pre></p> + <p>The version of this specific Web Service</p> + <h3 id="d2e5116">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The forum not found</p> - <h3 id="d2e5134">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>) + <h3 id="d2e5119">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> @@ -18311,11 +18799,11 @@ <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e5144">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5129">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e5161">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5146">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The author, forum or message not found</p> - <h3 id="d2e5164">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>) + <h3 id="d2e5149">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> @@ -18334,11 +18822,11 @@ <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e5174">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5159">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e5191">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5176">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The author, forum or message not found</p> - <h3 id="d2e5194">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) + <h3 id="d2e5179">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> @@ -18353,13 +18841,13 @@ <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e5204">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5189">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e5211">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5196">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <div class="representation"></div> - <h3 id="d2e5216">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5201">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The author, forum or message not found</p> - <h3 id="d2e5219">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) + <h3 id="d2e5204">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> @@ -18374,11 +18862,11 @@ <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e5229">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5214">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e5249">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5234">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The author, forum or message not found</p> - <h3 id="d2e5252">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>) + <h3 id="d2e5237">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> @@ -18397,13 +18885,13 @@ <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e5262">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5247">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e5273">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5258">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <div class="representation"></div> - <h3 id="d2e5284">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5269">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The author or message not found</p> - <h3 id="d2e5287">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) + <h3 id="d2e5272">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> @@ -18418,11 +18906,13 @@ <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e5297">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5282">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e5314">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5289">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5290">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5292">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The author or message not found</p> - <h3 id="d2e5317">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) + <h3 id="d2e5295">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> @@ -18437,13 +18927,11 @@ <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e5327">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5305">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e5334">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e5335">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e5337">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5322">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The author or message not found</p> - <h3 id="d2e5340">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) + <h3 id="d2e5325">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> @@ -18458,1216 +18946,759 @@ <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e5350">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5335">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e5359">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5344">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The message not found</p> - <h3 id="d2e5362">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5347">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The links to the attachments</p> - <h3 id="d2e5369">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e5370">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e5372">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The identity or the portrait not found</p> - <h3 id="d2e5375">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>Ok</p> - <h3 id="d2e5382">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5354">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <div class="representation"></div> - <h3 id="d2e5386">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5358">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The identity or the portrait not found</p> - <h3 id="d2e5389">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5361">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>Ok</p> - <h3 id="d2e5396">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5368">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <div class="representation"></div> - <h3 id="d2e5400">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5372">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The identity or the portrait not found</p> - <h3 id="d2e5403">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5375">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>Ok</p> - <h3 id="d2e5417">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5382">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5383">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5385">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The identity or the portrait not found</p> - <h3 id="d2e5420">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The portrait as image</p> - <h3 id="d2e5431">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p> - <h6>Example</h6><pre><code>1.0</code></pre></p> - <p>The version of this specific Web Service</p> - <h3 id="d2e5456">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p> - <h6>Example</h6><pre><code>OK</code></pre></p> - <p>The translation of the package + key</p> - <h3 id="d2e5473">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e5474">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e5476">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p> - <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<userVO> - <key>345</key> - <login>john</login> - <password></password> - <firstName>John</firstName> - <lastName>Smith</lastName> - <email>john.smith@frentix.com</email> - <properties> - <property> - <name>telPrivate</name> - <value>238456782</value> - </property> - <property> - <name>telMobile</name> - <value>238456782</value> - </property> - </properties> -</userVO> -</code></pre></p> - <p>The persisted user</p> - <h3 id="d2e5486">Status Code 406 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p> - <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<errorVOes> - <errorVO> - <code>org.olat.restapi:error</code> - <translation>Hello world, there is an error</translation> - </errorVO> -</errorVOes> -</code></pre></p> - <p>The list of errors</p> - <h3 id="d2e5496">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e5513">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>) - </h3> - <p> - <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<users totalCount="0"> - <users> - <user> - <key>345</key> - <login>john</login> - <password></password> - <firstName>John</firstName> - <lastName>Smith</lastName> - <email>john.smith@frentix.com</email> - <properties> - <property> - <name>telPrivate</name> - <value>238456782</value> - </property> - <property> - <name>telMobile</name> - <value>238456782</value> - </property> - </properties> - </user> - </users> -</users> -</code></pre></p> - <p>The list of all users in the OLAT system</p> - <div class="representation"> - <h6>XML Schema</h6> - <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e5523">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e5534">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The identity not found</p> - <h3 id="d2e5537">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The user is removed from the group</p> - <h3 id="d2e5540">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e5547">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e5548">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e5550">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The identity not found</p> - <h3 id="d2e5553">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>) - </h3> - <p> - <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<userVO> - <key>345</key> - <login>john</login> - <password></password> - <firstName>John</firstName> - <lastName>Smith</lastName> - <email>john.smith@frentix.com</email> - <properties> - <property> - <name>telPrivate</name> - <value>238456782</value> - </property> - <property> - <name>telMobile</name> - <value>238456782</value> - </property> - </properties> -</userVO> -</code></pre></p> - <p>The user</p> - <div class="representation"> - <h6>XML Schema</h6> - <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e5563">Status Code 406 - application/xml, application/json (<abbr title="{http://www.example.com} errorVO">ns3:errorVO</abbr>) - </h3> - <p> - <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<errorVOes> - <errorVO> - <code>org.olat.restapi:error</code> - <translation>Hello world, there is an error</translation> - </errorVO> -</errorVOes> -</code></pre></p> - <p>The list of validation errors</p> - <div class="representation"> - <h6>XML Schema</h6> - <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e5573">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e5584">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The identity not found</p> - <h3 id="d2e5587">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p> - <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<userVO> - <key>345</key> - <login>john</login> - <password></password> - <firstName>John</firstName> - <lastName>Smith</lastName> - <email>john.smith@frentix.com</email> - <properties> - <property> - <name>telPrivate</name> - <value>238456782</value> - </property> - <property> - <name>telMobile</name> - <value>238456782</value> - </property> - </properties> -</userVO> -</code></pre></p> - <p>The user</p> - <h3 id="d2e5597">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e5605">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5388">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>Ok</p> + <h3 id="d2e5402">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The identity or the portrait not found</p> + <h3 id="d2e5405">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The portrait as image</p> + <h3 id="d2e5416">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p> <h6>Example</h6><pre><code>1.0</code></pre></p> <p>The version of this specific Web Service</p> - <h3 id="d2e5620">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e5621">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e5623">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5437">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or parentNode not found</p> + <h3 id="d2e5440">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) + </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<userVO> - <key>345</key> - <login>john</login> - <password></password> - <firstName>John</firstName> - <lastName>Smith</lastName> - <email>john.smith@frentix.com</email> - <properties> - <property> - <name>telPrivate</name> - <value>238456782</value> - </property> - <property> - <name>telMobile</name> - <value>238456782</value> - </property> - </properties> -</userVO> +<courseNodeVO> + <id>id</id> +</courseNodeVO> </code></pre></p> - <p>The persisted user</p> - <h3 id="d2e5633">Status Code 406 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course node metadatas</p> + <div class="representation"> + <h6>XML Schema</h6> + <p><em>Source: <a href=""></a></em></p><pre></pre></div> + <h3 id="d2e5450">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e5464">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e5489">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e5515">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or parentNode not found</p> + <h3 id="d2e5518">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) + </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<errorVOes> - <errorVO> - <code>org.olat.restapi:error</code> - <translation>Hello world, there is an error</translation> - </errorVO> -</errorVOes> +<courseNodeVO> + <id>id</id> +</courseNodeVO> </code></pre></p> - <p>The list of errors</p> - <h3 id="d2e5643">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e5654">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The identity not found</p> - <h3 id="d2e5657">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The user is removed from the group</p> - <h3 id="d2e5660">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course node metadatas</p> + <div class="representation"> + <h6>XML Schema</h6> + <p><em>Source: <a href=""></a></em></p><pre></pre></div> + <h3 id="d2e5528">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e5671">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The identity or the portrait not found</p> - <h3 id="d2e5674">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The portrait as image</p> - <h3 id="d2e5681">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5537">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <div class="representation"></div> - <h3 id="d2e5689">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The identity or the portrait not found</p> - <h3 id="d2e5692">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The portrait as image</p> - <h3 id="d2e5695">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>Not authorized</p> - <h3 id="d2e5702">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The portrait deleted</p> - <h3 id="d2e5705">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>Not authorized</p> - <h3 id="d2e5723">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The identity not found</p> - <h3 id="d2e5726">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>) + <h3 id="d2e5549">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or parentNode not found</p> + <h3 id="d2e5552">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<groups totalCount="0"> - <groups> - <group> - <key>123467</key> - <description>My group description</description> - <name>My group</name> - <minParticipants>0</minParticipants> - <maxParticipants>0</maxParticipants> - </group> - </groups> -</groups> +<courseNodeVO> + <id>id</id> +</courseNodeVO> </code></pre></p> - <p>The groups of the user</p> + <p>The course node metadatas</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e5748">Status Code 200 - application/xml;pagingspec=1.0, application/json;pagingspec=1.0 (<abbr title="{http://www.example.com} groupInfoVO">ns3:groupInfoVO</abbr>) + <h3 id="d2e5562">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e5578">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or parentNode not found</p> + <h3 id="d2e5581">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<groups totalCount="0"> - <groups> - <group> - <key>123467</key> - <description>My group description</description> - <name>My group</name> - <minParticipants>0</minParticipants> - <maxParticipants>0</maxParticipants> - <news>&lt;p&gt;Hello world&lt;/p&gt;</news> - <forumKey>374589</forumKey> - <hasWiki>false</hasWiki> - <hasFolder>false</hasFolder> - </group> - </groups> -</groups> +<courseNodeVO> + <id>id</id> +</courseNodeVO> </code></pre></p> - <p>The groups of the user</p> + <p>The course node metadatas</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e5758">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The request hasn't paging information</p> - <h3 id="d2e5771">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course not found</p> - <h3 id="d2e5774">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseVO">ns3:courseVO</abbr>) + <h3 id="d2e5591">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e5606">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e5610">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or parentNode not found</p> + <h3 id="d2e5613">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseVO> - <key>777</key> - <title>Demo course</title> - <displayName>Demo course</displayName> -</courseVO> +<courseNodeVO> + <id>id</id> +</courseNodeVO> </code></pre></p> - <p>The metadatas of the created course</p> + <p>the course node metadatas</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e5788">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course not found</p> - <h3 id="d2e5791">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The metadatas of the created course</p> - <h3 id="d2e5794">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5623">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e5802">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p> - <h6>Example</h6><pre><code>1.0</code></pre></p> - <p>The version of this specific Web Service</p> - <h3 id="d2e5820">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course not found</p> - <h3 id="d2e5823">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseConfigVO">ns3:courseConfigVO</abbr>) + <h3 id="d2e5634">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e5663">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or parentNode not found</p> + <h3 id="d2e5666">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseVO> - <sharedFolderSoftKey>head_1_olat_43985684395</sharedFolderSoftKey> -</courseVO> +<courseNodeVO> + <id>id</id> +</courseNodeVO> </code></pre></p> - <p>The configuration of the course</p> + <p>The course node metadatas</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e5833">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5676">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e5840">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5683">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <div class="representation"></div> - <h3 id="d2e5860">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course not found</p> - <h3 id="d2e5863">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseConfigVO">ns3:courseConfigVO</abbr>) + <h3 id="d2e5710">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or parentNode not found</p> + <h3 id="d2e5713">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseVO> - <sharedFolderSoftKey>head_1_olat_43985684395</sharedFolderSoftKey> -</courseVO> +<courseNodeVO> + <id>id</id> +</courseNodeVO> </code></pre></p> - <p>The metadatas of the created course</p> + <p>The course node metadatas</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e5873">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5723">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e5884">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course not found</p> - <h3 id="d2e5887">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>) + <h3 id="d2e5751">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e5759">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or parentNode not found</p> + <h3 id="d2e5762">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) </h3> - <p>The array of authors</p> + <p> + <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<courseNodeVO> + <id>id</id> +</courseNodeVO> +</code></pre></p> + <p>the course node metadatas</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e5890">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5772">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e5905">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course not found</p> - <h3 id="d2e5908">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseVO">ns3:courseVO</abbr>) + <h3 id="d2e5805">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or parentNode not found</p> + <h3 id="d2e5808">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<courseVO> - <key>777</key> - <title>Demo course</title> - <displayName>Demo course</displayName> -</courseVO> +<courseNodeVO> + <id>id</id> +</courseNodeVO> </code></pre></p> - <p>The metadatas of the created course</p> + <p>the course node metadatas</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e5918">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e5927">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course not found</p> - <h3 id="d2e5930">Status Code 200 - application/zip<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course as a ZIP file</p> - <h3 id="d2e5933">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>Not authorized to export the course</p> - <h3 id="d2e5944">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course not found</p> - <h3 id="d2e5947">Status Code 200 - application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The run structure of the course</p> - <h3 id="d2e5950">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e5961">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course not found</p> - <h3 id="d2e5964">Status Code 200 - application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The editor tree model of the course</p> - <h3 id="d2e5967">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5818">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e5982">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course not found or the user is not an onwer or author of the course</p> - <h3 id="d2e5985">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>) + <h3 id="d2e5832">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e5855">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or parentNode not found</p> + <h3 id="d2e5858">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) </h3> - <p>The author</p> + <p> + <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<courseNodeVO> + <id>id</id> +</courseNodeVO> +</code></pre></p> + <p>The course node metadatas</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e5988">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e5995">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or the user not found</p> - <h3 id="d2e5998">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The user is an author and owner of the course</p> - <h3 id="d2e6001">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e6008">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course or the user not found</p> - <h3 id="d2e6011">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The user was successfully removed as owner of the course</p> - <h3 id="d2e6014">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5868">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e6025">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The context of the group not found</p> - <h3 id="d2e6028">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>) + <h3 id="d2e5879">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e5908">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or parentNode not found</p> + <h3 id="d2e5911">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<groups totalCount="0"> - <groups> - <group> - <key>123467</key> - <description>My group description</description> - <name>My group</name> - <minParticipants>0</minParticipants> - <maxParticipants>0</maxParticipants> - </group> - </groups> -</groups> +<courseNodeVO> + <id>id</id> +</courseNodeVO> </code></pre></p> - <p>The list of all learning group of the course</p> + <p>The course node metadatas</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e6042">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6043">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6045">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>) + <h3 id="d2e5921">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e5956">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or parentNode not found</p> + <h3 id="d2e5959">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<groupVO> - <key>123467</key> - <description>My group description</description> - <name>My group</name> - <minParticipants>0</minParticipants> - <maxParticipants>0</maxParticipants> -</groupVO> +<courseNodeVO> + <id>id</id> +</courseNodeVO> </code></pre></p> - <p>The persisted group</p> + <p>The course node metadatas</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e6055">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e6063">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p> - <h6>Example</h6><pre><code>1.0</code></pre></p> - <p>The version of this specific Web Service</p> - <h3 id="d2e6081">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The business group cannot be found</p> - <h3 id="d2e6084">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The business group is deleted</p> - <h3 id="d2e6087">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e5969">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e6094">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The business group cannot be found</p> - <h3 id="d2e6097">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>) + <h3 id="d2e5979">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e5987">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course, parentNode or test not found</p> + <h3 id="d2e5990">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<groupVO> - <key>123467</key> - <description>My group description</description> - <name>My group</name> - <minParticipants>0</minParticipants> - <maxParticipants>0</maxParticipants> -</groupVO> +<courseNodeVO> + <id>id</id> +</courseNodeVO> </code></pre></p> - <p>This is the list of all groups in OLAT system</p> + <p>The test node metadatas</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e6111">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6113">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The business group cannot be found</p> - <h3 id="d2e6116">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>) + <h3 id="d2e6000">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e6011">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e6037">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course, parentNode or test not found</p> + <h3 id="d2e6040">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<groupVO> - <key>123467</key> - <description>My group description</description> - <name>My group</name> - <minParticipants>0</minParticipants> - <maxParticipants>0</maxParticipants> -</groupVO> +<courseNodeVO> + <id>id</id> +</courseNodeVO> </code></pre></p> - <p>The saved group</p> + <p>The test node metadatas</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e6126">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e6050">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e6134">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6136">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} groupVO">ns3:groupVO</abbr>) + <h3 id="d2e6082">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>course, parentNode or test not found</p> + <h3 id="d2e6085">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<groupVO> - <key>123467</key> - <description>My group description</description> - <name>My group</name> - <minParticipants>0</minParticipants> - <maxParticipants>0</maxParticipants> -</groupVO> +<courseNodeVO> + <id>id</id> +</courseNodeVO> </code></pre></p> - <p>The persisted group</p> + <p>the test node metadatas</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e6146">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e6095">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e6159">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The forum not found</p> - <h3 id="d2e6162">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} forumVO">ns3:forumVO</abbr>) + <h3 id="d2e6110">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e6127">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or parentNode not found</p> + <h3 id="d2e6130">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<forum subscribed="false" courseNodeId="2784628" courseKey="286" forumKey="3865487" detailsName="It is a forum" name="My forum"/> +<courseNodeVO> + <id>id</id> +</courseNodeVO> </code></pre></p> - <p>The root message of the thread</p> + <p>The course node metadatas</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e6172">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e6140">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e6189">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The author, forum or message not found</p> - <h3 id="d2e6192">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>) + <h3 id="d2e6151">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e6174">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or parentNode not found</p> + <h3 id="d2e6177">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<messages totalCount="1"> - <messages> - <message> - <key>380</key> - <authorKey>345</authorKey> - <title>A message</title> - <body>The content of the message</body> - </message> - </messages> -</messages> +<courseNodeVO> + <id>id</id> +</courseNodeVO> </code></pre></p> - <p>The root message of the thread</p> + <p>The course node metadatas</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e6202">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e6187">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e6219">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The author, forum or message not found</p> - <h3 id="d2e6222">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) + <h3 id="d2e6216">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or parentNode not found</p> + <h3 id="d2e6219">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<messageVO> - <key>380</key> - <authorKey>345</authorKey> - <title>A message</title> - <body>The content of the message</body> -</messageVO> +<courseNodeVO> + <id>id</id> +</courseNodeVO> </code></pre></p> - <p>The root message of the thread</p> + <p>The course node metadatas</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e6232">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e6229">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e6239">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e6243">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <div class="representation"></div> - <h3 id="d2e6244">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The author, forum or message not found</p> - <h3 id="d2e6247">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) + <h3 id="d2e6263">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or parentNode not found</p> + <h3 id="d2e6266">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<messageVO> - <key>380</key> - <authorKey>345</authorKey> - <title>A message</title> - <body>The content of the message</body> -</messageVO> +<courseNodeVO> + <id>id</id> +</courseNodeVO> </code></pre></p> - <p>The root message of the thread</p> + <p>The course node metadatas</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e6257">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e6276">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e6277">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The author, forum or message not found</p> - <h3 id="d2e6280">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVOes">ns3:messageVOes</abbr>) + <h3 id="d2e6294">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or parentNode not found</p> + <h3 id="d2e6297">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<messages totalCount="1"> - <messages> - <message> - <key>380</key> - <authorKey>345</authorKey> - <title>A message</title> - <body>The content of the message</body> - </message> - </messages> -</messages> +<courseNodeVO> + <id>id</id> +</courseNodeVO> </code></pre></p> - <p>The root message of the thread</p> + <p>The course node metadatas</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e6290">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e6307">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e6301">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e6312">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The author or message not found</p> - <h3 id="d2e6315">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) + <h3 id="d2e6323">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or parentNode not found</p> + <h3 id="d2e6326">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<messageVO> - <key>380</key> - <authorKey>345</authorKey> - <title>A message</title> - <body>The content of the message</body> -</messageVO> +<courseNodeVO> + <id>id</id> +</courseNodeVO> </code></pre></p> - <p>The root message of the thread</p> + <p>The course node metadatas</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e6325">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e6336">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e6342">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The author or message not found</p> - <h3 id="d2e6345">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) + <h3 id="d2e6350">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e6370">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or parentNode not found</p> + <h3 id="d2e6373">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<messageVO> - <key>380</key> - <authorKey>345</authorKey> - <title>A message</title> - <body>The content of the message</body> -</messageVO> +<courseNodeVO> + <id>id</id> +</courseNodeVO> </code></pre></p> - <p>The root message of the thread</p> + <p>The course node metadatas</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e6355">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e6383">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e6362">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6363">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6365">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The author or message not found</p> - <h3 id="d2e6368">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} messageVO">ns3:messageVO</abbr>) + <h3 id="d2e6419">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or parentNode not found</p> + <h3 id="d2e6422">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<messageVO> - <key>380</key> - <authorKey>345</authorKey> - <title>A message</title> - <body>The content of the message</body> -</messageVO> +<courseNodeVO> + <id>id</id> +</courseNodeVO> </code></pre></p> - <p>The root message of the thread</p> + <p>The course node metadatas</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e6378">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e6432">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e6387">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The message not found</p> - <h3 id="d2e6390">Status Code 200 - application/xml, application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The links to the attachments</p> - <h3 id="d2e6397">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6398">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6400">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The identity or the portrait not found</p> - <h3 id="d2e6403">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>Ok</p> - <h3 id="d2e6410">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e6414">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The identity or the portrait not found</p> - <h3 id="d2e6417">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>Ok</p> - <h3 id="d2e6424">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e6428">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The identity or the portrait not found</p> - <h3 id="d2e6431">Status Code 200 - application/json, application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>Ok</p> - <h3 id="d2e6445">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The identity or the portrait not found</p> - <h3 id="d2e6448">Status Code 200 - application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The portrait as image</p> - <h3 id="d2e6455">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6456">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6457">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6458">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6459">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6462">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e6467">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6468">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6471">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e6476">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6477">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6480">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e6485">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6486">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6489">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6490">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6492">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6493">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6498">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6499">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6500">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6501">application/octet-stream<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6502">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6505">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e6510">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6511">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6512">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6515">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e6520">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6521">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6522">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6525">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e6530">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6531">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6532">*/*<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6535">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6536">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6538">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6539">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6542">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6543">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6546">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6547">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6551">text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6562">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course not found</p> - <h3 id="d2e6565">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} assessableResultsVO">ns3:assessableResultsVO</abbr>) + <h3 id="d2e6464">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or parentNode not found</p> + <h3 id="d2e6467">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<assessableResultsVOes> - <assessableResultsVO> - <identityKey>345</identityKey> - <score>34.0</score> - <passed>true</passed> - </assessableResultsVO> -</assessableResultsVOes> +<courseNodeVO> + <id>id</id> +</courseNodeVO> </code></pre></p> - <p>Array of results for the whole the course</p> + <p>The course node metadatas</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e6575">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e6477">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e6583">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p> - <h6>Example</h6><pre><code>1.0</code></pre></p> - <p>The version of this specific Web Service</p> - <h3 id="d2e6604">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The identity or the course not found</p> - <h3 id="d2e6607">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} assessableResultsVO">ns3:assessableResultsVO</abbr>) + <h3 id="d2e6491">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e6511">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or parentNode not found</p> + <h3 id="d2e6514">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<assessableResultsVO> - <identityKey>345</identityKey> - <score>34.0</score> - <passed>true</passed> -</assessableResultsVO> +<courseNodeVO> + <id>id</id> +</courseNodeVO> </code></pre></p> - <p>The result of the course</p> + <p>The course node metadatas</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e6617">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e6524">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e6631">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The course not found</p> - <h3 id="d2e6634">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} assessableResultsVO">ns3:assessableResultsVO</abbr>) + <h3 id="d2e6554">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or parentNode not found</p> + <h3 id="d2e6557">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<assessableResultsVOes> - <assessableResultsVO> - <identityKey>345</identityKey> - <score>34.0</score> - <passed>true</passed> - </assessableResultsVO> -</assessableResultsVOes> +<courseNodeVO> + <id>id</id> +</courseNodeVO> </code></pre></p> - <p>Export all results of all user of the course</p> + <p>The course node metadatas</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e6644">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e6651">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6652">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6654">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The identity not found</p> - <h3 id="d2e6657">Status Code 200<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>Import successful</p> - <h3 id="d2e6660">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e6567">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e6677">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The identity or the course not found</p> - <h3 id="d2e6680">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} assessableResultsVO">ns3:assessableResultsVO</abbr>) + <h3 id="d2e6583">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or parentNode not found</p> + <h3 id="d2e6586">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<assessableResultsVO> - <identityKey>345</identityKey> - <score>34.0</score> - <passed>true</passed> -</assessableResultsVO> +<courseNodeVO> + <id>id</id> +</courseNodeVO> </code></pre></p> - <p>The result of a user at a specific node</p> + <p>The course node metadatas</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e6690">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e6596">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <p>The roles of the authenticated user are not sufficient</p> - <h3 id="d2e6713">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6714">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6717">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e6734">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6735">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6745">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p> - <h6>Example</h6><pre><code>1.0</code></pre></p> - <p>Return the version number</p> - <h3 id="d2e6758">text/html<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6765">Status Code 200 - image/jpeg<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>Images for the documentation</p> - <h3 id="d2e6774">Status Code 200 - image/jpeg<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>Images for the documentation</p> - <h3 id="d2e6782">Status Code 200 - text/html, application/xhtml+xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The copyright of the REST API.</p> - <h3 id="d2e6789">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The copyright of the REST API.</p> - <h3 id="d2e6806">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6807">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6810">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e6610">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> <div class="representation"></div> - <h3 id="d2e6821">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6822">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6828">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6829">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e6837">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>) + <h3 id="d2e6630">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or parentNode not found</p> + <h3 id="d2e6633">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<catalogEntries totalCount="0"> - <catalogEntries> - <catalogEntry> - <key>478</key> - <name>Category</name> - <description>Description of the category</description> - <type>0</type> - </catalogEntry> - </catalogEntries> -</catalogEntries> +<courseNodeVO> + <id>id</id> +</courseNodeVO> </code></pre></p> - <p>The list of roots catalog entries</p> + <p>The course node metadatas</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e6858">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The path could not be resolved to a valid catalog entry</p> - <h3 id="d2e6861">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>) - </h3> - <p> - <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<users totalCount="0"> - <users> - <user> - <key>345</key> - <login>john</login> - <password></password> - <firstName>John</firstName> - <lastName>Smith</lastName> - <email>john.smith@frentix.com</email> - <properties> - <property> - <name>telPrivate</name> - <value>238456782</value> - </property> - <property> - <name>telMobile</name> - <value>238456782</value> - </property> - </properties> - </user> - </users> -</users> + <h3 id="d2e6643">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e6679">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or parentNode not found</p> + <h3 id="d2e6682">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) + </h3> + <p> + <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<courseNodeVO> + <id>id</id> +</courseNodeVO> </code></pre></p> - <p>The catalog entry</p> + <p>The course node metadatas</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e6871">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>Not authorized</p> - <h3 id="d2e6878">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The path could not be resolved to a valid catalog entry</p> - <h3 id="d2e6881">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>) + <h3 id="d2e6692">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e6724">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The given URL is not valid</p> + <h3 id="d2e6727">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or parentNode not found</p> + <h3 id="d2e6730">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<users totalCount="0"> - <users> - <user> - <key>345</key> - <login>john</login> - <password></password> - <firstName>John</firstName> - <lastName>Smith</lastName> - <email>john.smith@frentix.com</email> - <properties> - <property> - <name>telPrivate</name> - <value>238456782</value> - </property> - <property> - <name>telMobile</name> - <value>238456782</value> - </property> - </properties> - </user> - </users> -</users> +<courseNodeVO> + <id>id</id> +</courseNodeVO> </code></pre></p> - <p>The catalog entry</p> + <p>The course node metadatas</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e6891">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>Not authorized</p> - <h3 id="d2e6898">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The path could not be resolved to a valid catalog entry</p> - <h3 id="d2e6901">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>) + <h3 id="d2e6740">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e6750">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e6755">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or parentNode not found</p> + <h3 id="d2e6758">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<users totalCount="0"> - <users> - <user> - <key>345</key> - <login>john</login> - <password></password> - <firstName>John</firstName> - <lastName>Smith</lastName> - <email>john.smith@frentix.com</email> - <properties> - <property> - <name>telPrivate</name> - <value>238456782</value> - </property> - <property> - <name>telMobile</name> - <value>238456782</value> - </property> - </properties> - </user> - </users> -</users> +<courseNodeVO> + <id>id</id> +</courseNodeVO> </code></pre></p> - <p>The catalog entry</p> + <p>The course node metadatas</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e6911">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>Not authorized</p> - <h3 id="d2e6919">Status Code 200 - text/plain<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <h3 id="d2e6768">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e6775">multipart/form-data<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <div class="representation"></div> + <h3 id="d2e6779">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or parentNode not found</p> + <h3 id="d2e6782">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} courseNodeVO">ns3:courseNodeVO</abbr>) + </h3> <p> - <h6>Example</h6><pre><code>1.0</code></pre></p> - <p>The version of this specific Web Service</p> - <h3 id="d2e6940">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The path could not be resolved to a valid catalog entry</p> - <h3 id="d2e6943">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>) + <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<courseNodeVO> + <id>id</id> +</courseNodeVO> +</code></pre></p> + <p>The course node metadatas</p> + <div class="representation"> + <h6>XML Schema</h6> + <p><em>Source: <a href=""></a></em></p><pre></pre></div> + <h3 id="d2e6792">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course node is not of type task</p> + <h3 id="d2e6795">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e6834">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The configuration is not valid</p> + <h3 id="d2e6837">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or task node not found</p> + <h3 id="d2e6840">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} surveyConfigVO">ns3:surveyConfigVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<catalogEntries totalCount="0"> - <catalogEntries> - <catalogEntry> - <key>478</key> - <name>Category</name> - <description>Description of the category</description> - <type>0</type> - </catalogEntry> - </catalogEntries> -</catalogEntries> +<courseNodeVO> + <id>id</id> +</courseNodeVO> </code></pre></p> - <p>The list of catalog entries</p> + <p>The task node configuration</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e6961">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>) + <h3 id="d2e6850">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The call is not applicable to task course node</p> + <h3 id="d2e6853">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e6888">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The configuration is not valid</p> + <h3 id="d2e6891">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or task node not found</p> + <h3 id="d2e6894">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} surveyConfigVO">ns3:surveyConfigVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<catalogEntryVO> - <key>478</key> - <name>Category</name> - <description>Description of the category</description> - <type>0</type> -</catalogEntryVO> +<courseNodeVO> + <id>id</id> +</courseNodeVO> </code></pre></p> - <p>The catalog entry</p> + <p>The task node configuration</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e6971">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The path could not be resolved to a valid catalog entry</p> - <h3 id="d2e6991">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The path could not be resolved to a valid catalog entry</p> - <h3 id="d2e6994">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>) + <h3 id="d2e6904">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The call is not applicable to task course node</p> + <h3 id="d2e6907">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e6914">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or task node not found</p> + <h3 id="d2e6917">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} surveyConfigVO">ns3:surveyConfigVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<catalogEntryVO> - <key>478</key> - <name>Category</name> - <description>Description of the category</description> - <type>0</type> -</catalogEntryVO> +<courseNodeVO> + <id>id</id> +</courseNodeVO> </code></pre></p> - <p>The catalog entry</p> + <p>The course node configuration</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e7004">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>Not authorized</p> - <h3 id="d2e7011">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e7012">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e7014">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The path could not be resolved to a valid catalog entry</p> - <h3 id="d2e7017">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>) + <h3 id="d2e6927">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e6945">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The configuration is not valid</p> + <h3 id="d2e6948">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or survey node not found</p> + <h3 id="d2e6951">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} surveyConfigVO">ns3:surveyConfigVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<catalogEntryVO> - <key>478</key> - <name>Category</name> - <description>Description of the category</description> - <type>0</type> -</catalogEntryVO> +<courseNodeVO> + <id>id</id> +</courseNodeVO> </code></pre></p> - <p>The catalog entry</p> + <p>The survey node configuration</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e7027">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>Not authorized</p> - <h3 id="d2e7034">application/x-www-form-urlencoded<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <div class="representation"></div> - <h3 id="d2e7045">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The path could not be resolved to a valid catalog entry</p> - <h3 id="d2e7048">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>) + <h3 id="d2e6961">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The call is not applicable to survey course node</p> + <h3 id="d2e6964">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e6979">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The configuration is not valid</p> + <h3 id="d2e6982">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or survey node not found</p> + <h3 id="d2e6985">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} surveyConfigVO">ns3:surveyConfigVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<catalogEntryVO> - <key>478</key> - <name>Category</name> - <description>Description of the category</description> - <type>0</type> -</catalogEntryVO> +<courseNodeVO> + <id>id</id> +</courseNodeVO> </code></pre></p> - <p>The catalog entry</p> + <p>The survey node configuration</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e7058">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>Not authorized</p> - <h3 id="d2e7066">application/xml<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e7067">application/json<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <h3 id="d2e7069">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The path could not be resolved to a valid catalog entry</p> - <h3 id="d2e7072">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>) + <h3 id="d2e6995">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The call is not applicable to survey course node</p> + <h3 id="d2e6998">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e7005">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or survey node not found</p> + <h3 id="d2e7008">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} surveyConfigVO">ns3:surveyConfigVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<catalogEntryVO> - <key>478</key> - <name>Category</name> - <description>Description of the category</description> - <type>0</type> -</catalogEntryVO> +<courseNodeVO> + <id>id</id> +</courseNodeVO> </code></pre></p> - <p>The catalog entry</p> + <p>The course node configuration</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e7082">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>Not authorized</p> - <h3 id="d2e7093">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The path could not be resolved to a valid catalog entry</p> - <h3 id="d2e7096">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>) + <h3 id="d2e7018">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e7047">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The configuration is not valid</p> + <h3 id="d2e7050">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or test node not found</p> + <h3 id="d2e7053">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} testConfigVO">ns3:testConfigVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<catalogEntryVO> - <key>478</key> - <name>Category</name> - <description>Description of the category</description> - <type>0</type> -</catalogEntryVO> +<courseNodeVO> + <id>id</id> +</courseNodeVO> </code></pre></p> - <p>The catalog entry</p> + <p>The test node configuration</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e7106">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>Not authorized</p> - <h3 id="d2e7113">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The path could not be resolved to a valid catalog entry</p> - <h3 id="d2e7116">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} catalogEntryVO">ns3:catalogEntryVO</abbr>) + <h3 id="d2e7063">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The call is not applicable to test course node</p> + <h3 id="d2e7066">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e7092">Status Code 409<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The configuration is not valid</p> + <h3 id="d2e7095">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or test node not found</p> + <h3 id="d2e7098">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} testConfigVO">ns3:testConfigVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<catalogEntryVO> - <key>478</key> - <name>Category</name> - <description>Description of the category</description> - <type>0</type> -</catalogEntryVO> +<courseNodeVO> + <id>id</id> +</courseNodeVO> </code></pre></p> - <p>The catalog entry</p> + <p>The test node configuration</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e7126">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>Not authorized</p> - <h3 id="d2e7137">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>The path could not be resolved to a valid catalog entry</p> - <h3 id="d2e7140">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} userVO">ns3:userVO</abbr>) + <h3 id="d2e7108">Status Code 406<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The call is not applicable to test course node</p> + <h3 id="d2e7111">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> + <h3 id="d2e7118">Status Code 404<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The course or test node not found</p> + <h3 id="d2e7121">Status Code 200 - application/xml, application/json (<abbr title="{http://www.example.com} testConfigVO">ns3:testConfigVO</abbr>) </h3> <p> <h6>Example</h6><pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<users totalCount="0"> - <users> - <user> - <key>345</key> - <login>john</login> - <password></password> - <firstName>John</firstName> - <lastName>Smith</lastName> - <email>john.smith@frentix.com</email> - <properties> - <property> - <name>telPrivate</name> - <value>238456782</value> - </property> - <property> - <name>telMobile</name> - <value>238456782</value> - </property> - </properties> - </user> - </users> -</users> +<courseNodeVO> + <id>id</id> +</courseNodeVO> </code></pre></p> - <p>The catalog entry</p> + <p>The course node configuration</p> <div class="representation"> <h6>XML Schema</h6> <p><em>Source: <a href=""></a></em></p><pre></pre></div> - <h3 id="d2e7150">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> - <p>Not authorized</p> + <h3 id="d2e7131">Status Code 401<abbr title="{http://research.sun.com/wadl/2006/10} "></abbr></h3> + <p>The roles of the authenticated user are not sufficient</p> </body> </html> \ No newline at end of file diff --git a/src/main/java/org/olat/user/restapi/Examples.java b/src/main/java/org/olat/user/restapi/Examples.java index a2d78732881afc11bc6d80f4ba8880293f2c5784..e4a61d3c7e1d9ee50750be74bb9ed1afa03cd1a5 100644 --- a/src/main/java/org/olat/user/restapi/Examples.java +++ b/src/main/java/org/olat/user/restapi/Examples.java @@ -33,6 +33,8 @@ public class Examples { public static final UserVO SAMPLE_USERVO = new UserVO(); public static final UserVOes SAMPLE_USERVOes = new UserVOes(); + + public static final RolesVO SAMPLE_ROLESVO = new RolesVO(); static { SAMPLE_USERVO.setKey(345l); @@ -44,5 +46,7 @@ public class Examples { SAMPLE_USERVO.putProperty("telPrivate", "238456782"); SAMPLE_USERVO.putProperty("telMobile", "238456782"); SAMPLE_USERVOes.setUsers(new UserVO[]{SAMPLE_USERVO}); + + SAMPLE_ROLESVO.setAuthor(true); } } diff --git a/src/main/java/org/olat/restapi/user/UserFoldersWebService.java b/src/main/java/org/olat/user/restapi/UserFoldersWebService.java similarity index 98% rename from src/main/java/org/olat/restapi/user/UserFoldersWebService.java rename to src/main/java/org/olat/user/restapi/UserFoldersWebService.java index dd0117efef3c22889c7cef8288cabafbc003dddc..fd3fc96173efe40e1343dce5ee1a04204b4a172a 100644 --- a/src/main/java/org/olat/restapi/user/UserFoldersWebService.java +++ b/src/main/java/org/olat/user/restapi/UserFoldersWebService.java @@ -17,7 +17,7 @@ * 2011 by frentix GmbH, http://www.frentix.com * <p> **/ -package org.olat.restapi.user; +package org.olat.user.restapi; import static org.olat.restapi.security.RestSecurityHelper.getIdentity; import static org.olat.restapi.security.RestSecurityHelper.getRoles; @@ -39,7 +39,6 @@ import javax.ws.rs.Produces; import javax.ws.rs.WebApplicationException; import javax.ws.rs.core.Context; import javax.ws.rs.core.MediaType; -import javax.ws.rs.core.Request; import javax.ws.rs.core.Response; import javax.ws.rs.core.Response.Status; @@ -168,13 +167,12 @@ public class UserFoldersWebService { * @response.representation.401.doc The roles of the authenticated user are not sufficient * @param identityKey The key of the user (IdentityImpl) * @param httpRequest The HTTP request - * @param request The REST request * @return The folders */ @GET @Produces({MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML}) public Response getFolders(@PathParam("identityKey") Long identityKey, - @Context HttpServletRequest httpRequest, @Context Request request) { + @Context HttpServletRequest httpRequest) { Roles roles; Identity retrievedUser = getIdentity(httpRequest); diff --git a/src/main/java/org/olat/user/restapi/UserWebService.java b/src/main/java/org/olat/user/restapi/UserWebService.java index 2416940118fb60469622b6021f2e7a59eee6ef09..766640ca63a0f39515e7f4c93715ae711d539dc8 100644 --- a/src/main/java/org/olat/user/restapi/UserWebService.java +++ b/src/main/java/org/olat/user/restapi/UserWebService.java @@ -311,7 +311,6 @@ public class UserWebService { * @param withPortrait If true return the portrait as Base64 (default false) * @param uriInfo The URI infos * @param httpRequest The HTTP request - * @param request The REST request * @return an xml or json representation of a the user being search. The xml * correspond to a <code>UserVO</code>. <code>UserVO</code> is a * simplified representation of the <code>User</code> and <code>Identity</code> @@ -320,7 +319,7 @@ public class UserWebService { @Path("{identityKey}") @Produces({MediaType.APPLICATION_XML ,MediaType.APPLICATION_JSON}) public Response findById(@PathParam("identityKey") Long identityKey, @QueryParam("withPortrait") @DefaultValue("false") Boolean withPortrait, - @Context UriInfo uriInfo, @Context HttpServletRequest httpRequest, @Context Request request) { + @Context UriInfo uriInfo, @Context HttpServletRequest httpRequest) { try { Identity identity = BaseSecurityManager.getInstance().loadIdentityByKey(identityKey, false); if(identity == null) { diff --git a/src/test/java/org/olat/restapi/RegistrationTest.java b/src/test/java/org/olat/restapi/RegistrationTest.java new file mode 100644 index 0000000000000000000000000000000000000000..d16542c7c3efa352bf37a4b476313aec5ef70c28 --- /dev/null +++ b/src/test/java/org/olat/restapi/RegistrationTest.java @@ -0,0 +1,96 @@ +/** + * OLAT - Online Learning and Training<br> + * http://www.olat.org + * <p> + * Licensed under the Apache License, Version 2.0 (the "License"); <br> + * you may not use this file except in compliance with the License.<br> + * You may obtain a copy of the License at + * <p> + * http://www.apache.org/licenses/LICENSE-2.0 + * <p> + * Unless required by applicable law or agreed to in writing,<br> + * software distributed under the License is distributed on an "AS IS" BASIS, <br> + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. <br> + * See the License for the specific language governing permissions and <br> + * limitations under the License. + * <p> + * Copyright (c) frentix GmbH<br> + * http://www.frentix.com<br> + * <p> + */ +package org.olat.restapi; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertNotNull; + +import java.io.IOException; +import java.net.URI; +import java.net.URISyntaxException; +import java.util.UUID; + +import org.apache.http.Header; +import org.apache.http.HttpResponse; +import org.apache.http.client.methods.HttpPut; +import org.apache.http.util.EntityUtils; +import org.junit.Before; +import org.junit.Test; +import org.olat.core.id.Identity; +import org.olat.core.id.UserConstants; +import org.olat.restapi.RestConnection; +import org.olat.test.JunitTestHelper; +import org.olat.test.OlatJerseyTestCase; + +/** + * + * Description:<br> + * + * <P> + * Initial Date: 14 juil. 2011 <br> + * + * @author srosse, stephane.rosse@frentix.com, http://www.frentix.com + */ +public class RegistrationTest extends OlatJerseyTestCase { + + private static Identity owner1; + + @Before + @Override + public void setUp() throws Exception { + super.setUp(); + //create a course with learn group + + owner1 = JunitTestHelper.createAndPersistIdentityAsUser("rest-one"); + } + + @Test + public void testRegistration() throws IOException, URISyntaxException { + RestConnection conn = new RestConnection(); + + String randomEmail = UUID.randomUUID().toString().replace("-", "") + "@frentix.com"; + URI uri = conn.getContextURI().path("registration").queryParam("email", randomEmail).build(); + HttpPut put = conn.createPut(uri, "*/*", "de", true); + + HttpResponse response = conn.execute(put); + assertEquals(200, response.getStatusLine().getStatusCode()); + EntityUtils.consume(response.getEntity()); + + conn.shutdown(); + } + + @Test + public void testRedirectRegistration() throws IOException, URISyntaxException { + RestConnection conn = new RestConnection(); + + URI uri = conn.getContextURI().path("registration") + .queryParam("email", owner1.getUser().getProperty(UserConstants.EMAIL, null)).build(); + HttpPut put = conn.createPut(uri, "*/*", "de", true); + + HttpResponse response = conn.execute(put); + assertEquals(304, response.getStatusLine().getStatusCode()); + Header locationHeader = response.getFirstHeader("location"); + assertNotNull(locationHeader); + assertNotNull(locationHeader.getValue()); + + conn.shutdown(); + } +} diff --git a/src/test/java/org/olat/test/AllTestsJunit4.java b/src/test/java/org/olat/test/AllTestsJunit4.java index 253a5d54c52da497c5344b261b9a63b826ba53f3..9655444919e73ccb213f2566458d503164ad27b9 100644 --- a/src/test/java/org/olat/test/AllTestsJunit4.java +++ b/src/test/java/org/olat/test/AllTestsJunit4.java @@ -157,6 +157,7 @@ import org.junit.runners.Suite; org.olat.restapi.UserMgmtTest.class, org.olat.restapi.ContactsTest.class, org.olat.restapi.SystemTest.class, + org.olat.restapi.RegistrationTest.class, de.bps.olat.portal.institution.InstitutionPortletTest.class, org.olat.group.manager.BusinessGroupImportExportXStreamTest.class, org.olat.group.test.BusinessGroupImportExportTest.class,