aboutsummaryrefslogtreecommitdiff
path: root/subsonic-booter/src/main/java/net/sourceforge/subsonic/booter/deployer/SubsonicDeployerService.java
diff options
context:
space:
mode:
Diffstat (limited to 'subsonic-booter/src/main/java/net/sourceforge/subsonic/booter/deployer/SubsonicDeployerService.java')
-rw-r--r--subsonic-booter/src/main/java/net/sourceforge/subsonic/booter/deployer/SubsonicDeployerService.java17
1 files changed, 17 insertions, 0 deletions
diff --git a/subsonic-booter/src/main/java/net/sourceforge/subsonic/booter/deployer/SubsonicDeployerService.java b/subsonic-booter/src/main/java/net/sourceforge/subsonic/booter/deployer/SubsonicDeployerService.java
new file mode 100644
index 00000000..a0bf087f
--- /dev/null
+++ b/subsonic-booter/src/main/java/net/sourceforge/subsonic/booter/deployer/SubsonicDeployerService.java
@@ -0,0 +1,17 @@
+package net.sourceforge.subsonic.booter.deployer;
+
+/**
+ * RMI interface implemented by the Subsonic deployer and used by the agent.
+ *
+ * @author Sindre Mehus
+ */
+public interface SubsonicDeployerService {
+
+ /**
+ * Returns information about the Subsonic deployment, such
+ * as URL, memory consumption, start time etc.
+ *
+ * @return Deployment information.
+ */
+ DeploymentStatus getDeploymentInfo();
+}