Repository: incubator-edgent Updated Branches: refs/heads/master 8c8792e40 -> dfee2751f
[Edgent-401] clarify jsonConfig arg in ApplicationServiceMXBean Project: http://git-wip-us.apache.org/repos/asf/incubator-edgent/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-edgent/commit/dfee2751 Tree: http://git-wip-us.apache.org/repos/asf/incubator-edgent/tree/dfee2751 Diff: http://git-wip-us.apache.org/repos/asf/incubator-edgent/diff/dfee2751 Branch: refs/heads/master Commit: dfee2751f2c9ff6890061f84bb0557d4ee89b268 Parents: 8c8792e Author: Dale LaBossiere <dlab...@us.ibm.com> Authored: Fri Mar 24 14:32:58 2017 -0400 Committer: Dale LaBossiere <dlab...@us.ibm.com> Committed: Fri Mar 24 14:32:58 2017 -0400 ---------------------------------------------------------------------- .../apache/edgent/topology/mbeans/ApplicationServiceMXBean.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-edgent/blob/dfee2751/api/topology/src/main/java/org/apache/edgent/topology/mbeans/ApplicationServiceMXBean.java ---------------------------------------------------------------------- diff --git a/api/topology/src/main/java/org/apache/edgent/topology/mbeans/ApplicationServiceMXBean.java b/api/topology/src/main/java/org/apache/edgent/topology/mbeans/ApplicationServiceMXBean.java index 4856dbe..34faa2f 100644 --- a/api/topology/src/main/java/org/apache/edgent/topology/mbeans/ApplicationServiceMXBean.java +++ b/api/topology/src/main/java/org/apache/edgent/topology/mbeans/ApplicationServiceMXBean.java @@ -34,7 +34,7 @@ public interface ApplicationServiceMXBean { * Submit an application registered with the application service. * * @param applicationName Name of the application. - * @param jsonConfig JSON configuration serialized as a String. + * @param jsonConfig JsonObject configuration serialized as a JSON String. * Null or an empty String is equivalent to an empty JSON object. * * @throws Exception Error submitting application. @@ -49,7 +49,8 @@ public interface ApplicationServiceMXBean { * be registered as applications. * * @param jarURL URL for the jar file. - * @param jsonConfig JSON configuration serialized as a String (currently unused). + * @param jsonConfig JsonObject configuration serialized as a JSON String (currently unused). + * Null or an empty String is equivalent to an empty JSON object. * @throws Exception Error registering jar. * * @see ApplicationService