aboutsummaryrefslogtreecommitdiff
path: root/subsonic-booter/src/main/java/net/sourceforge/subsonic/booter/deployer/DeploymentStatus.java
diff options
context:
space:
mode:
Diffstat (limited to 'subsonic-booter/src/main/java/net/sourceforge/subsonic/booter/deployer/DeploymentStatus.java')
-rw-r--r--subsonic-booter/src/main/java/net/sourceforge/subsonic/booter/deployer/DeploymentStatus.java44
1 files changed, 0 insertions, 44 deletions
diff --git a/subsonic-booter/src/main/java/net/sourceforge/subsonic/booter/deployer/DeploymentStatus.java b/subsonic-booter/src/main/java/net/sourceforge/subsonic/booter/deployer/DeploymentStatus.java
deleted file mode 100644
index 3b237dc1..00000000
--- a/subsonic-booter/src/main/java/net/sourceforge/subsonic/booter/deployer/DeploymentStatus.java
+++ /dev/null
@@ -1,44 +0,0 @@
-package net.sourceforge.subsonic.booter.deployer;
-
-import java.util.Date;
-import java.io.Serializable;
-
-/**
- * @author Sindre Mehus
- */
-public class DeploymentStatus implements Serializable {
-
- private final Date startTime;
- private final String url;
- private final String httpsUrl;
- private final int memoryUsed;
- private final String errorMessage;
-
- public DeploymentStatus(Date startTime, String url, String httpsUrl, int memoryUsed, String errorMessage) {
- this.startTime = startTime;
- this.url = url;
- this.httpsUrl = httpsUrl;
- this.memoryUsed = memoryUsed;
- this.errorMessage = errorMessage;
- }
-
- public String getURL() {
- return url;
- }
-
- public String getHttpsUrl() {
- return httpsUrl;
- }
-
- public Date getStartTime() {
- return startTime;
- }
-
- public int getMemoryUsed() {
- return memoryUsed;
- }
-
- public String getErrorMessage() {
- return errorMessage;
- }
-}