commit | 6295d56cf5822276ed21830248018c8bd2f316cb | [log] [tgz] |
---|---|---|
author | Guillaume Nodet <gnodet@apache.org> | Mon Mar 21 16:54:15 2016 +0000 |
committer | Guillaume Nodet <gnodet@apache.org> | Mon Mar 21 16:54:15 2016 +0000 |
tree | 94f783561751d502045487c899078dbae2c30d6c | |
parent | 1fd93a77eea455b7406d63cef8844c3417b67be9 [diff] |
Add a bit of javadoc git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1736005 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/gogo/runtime/src/main/java/org/apache/felix/service/command/CommandSession.java b/gogo/runtime/src/main/java/org/apache/felix/service/command/CommandSession.java index 71e5ddc..6794781 100644 --- a/gogo/runtime/src/main/java/org/apache/felix/service/command/CommandSession.java +++ b/gogo/runtime/src/main/java/org/apache/felix/service/command/CommandSession.java
@@ -103,12 +103,28 @@ Object convert(Class<?> type, Object instance); + // + // Job support + // + + /** + * List jobs. Always return a non-null list. + */ List<Job> jobs(); + /** + * Get the job running in the current thead or null. + */ Job currentJob(); + /** + * Get the current foreground job or null. + */ Job foregroundJob(); + /** + * Set the job listener for this session. + */ void setJobListener(JobListener listener); }