Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.wst.server.core/servercore/org/eclipse/wst/server/core/util/HttpLaunchable.java')
-rw-r--r--plugins/org.eclipse.wst.server.core/servercore/org/eclipse/wst/server/core/util/HttpLaunchable.java9
1 files changed, 2 insertions, 7 deletions
diff --git a/plugins/org.eclipse.wst.server.core/servercore/org/eclipse/wst/server/core/util/HttpLaunchable.java b/plugins/org.eclipse.wst.server.core/servercore/org/eclipse/wst/server/core/util/HttpLaunchable.java
index 004a2d96d..8dabd43eb 100644
--- a/plugins/org.eclipse.wst.server.core/servercore/org/eclipse/wst/server/core/util/HttpLaunchable.java
+++ b/plugins/org.eclipse.wst.server.core/servercore/org/eclipse/wst/server/core/util/HttpLaunchable.java
@@ -15,25 +15,20 @@ import java.net.URL;
import org.eclipse.wst.server.core.ILaunchable;
/**
*
+ * @since 1.0
*/
public class HttpLaunchable implements ILaunchable {
- public static final String ID = "http.launchable";
-
private URL url;
public HttpLaunchable(URL url) {
this.url = url;
}
- public String getId() {
- return ID;
- }
-
public URL getURL() {
return url;
}
public String toString() {
- return "HttpLaunchable[id=" + getId() + ", url=" + url.toString() + "]";
+ return "HttpLaunchable[url=" + url.toString() + "]";
}
} \ No newline at end of file

Back to the top