MARMOTTA-544: added more missing javadoc
Project: http://git-wip-us.apache.org/repos/asf/marmotta/repo Commit: http://git-wip-us.apache.org/repos/asf/marmotta/commit/41b3dc82 Tree: http://git-wip-us.apache.org/repos/asf/marmotta/tree/41b3dc82 Diff: http://git-wip-us.apache.org/repos/asf/marmotta/diff/41b3dc82 Branch: refs/heads/develop Commit: 41b3dc826746616bf76d61537468585f2cf3fba5 Parents: f20648f Author: Sergio Fernández <[email protected]> Authored: Mon Sep 22 08:47:26 2014 +0200 Committer: Sergio Fernández <[email protected]> Committed: Mon Sep 22 08:47:26 2014 +0200 ---------------------------------------------------------------------- .../core/webservices/triplestore/ContextWebService.java | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/marmotta/blob/41b3dc82/platform/marmotta-core/src/main/java/org/apache/marmotta/platform/core/webservices/triplestore/ContextWebService.java ---------------------------------------------------------------------- diff --git a/platform/marmotta-core/src/main/java/org/apache/marmotta/platform/core/webservices/triplestore/ContextWebService.java b/platform/marmotta-core/src/main/java/org/apache/marmotta/platform/core/webservices/triplestore/ContextWebService.java index c1a5afc..0364bea 100644 --- a/platform/marmotta-core/src/main/java/org/apache/marmotta/platform/core/webservices/triplestore/ContextWebService.java +++ b/platform/marmotta-core/src/main/java/org/apache/marmotta/platform/core/webservices/triplestore/ContextWebService.java @@ -207,6 +207,14 @@ public class ContextWebService { return put(buildUri(uuid), type, request); } + /** + * Deletes a named graph from the system + * + * @param context context uri + * @return status code + * @throws UnsupportedEncodingException + * @throws URISyntaxException + */ @DELETE public Response delete(@QueryParam("graph") String context) { if (StringUtils.isBlank(context)) { @@ -219,8 +227,7 @@ public class ContextWebService { /** * Deletes a named graph from the system - * - * @param types formats accepted + * * @param uuid context identifier * @return status code * @throws UnsupportedEncodingException
