Remove old license headers
[gpl/argeo-slc.git] / org.argeo.slc.support / src / org / argeo / slc / support / deploy / HttpdServer.java
index 9416f2172efd06fa38f8dc63f7b7ade3f4a63a99..5fa4e9b59737b09b63b78ee4c56ca1bcb0e567dd 100644 (file)
@@ -1,65 +1,50 @@
-/*\r
- * Copyright (C) 2007-2012 Argeo GmbH\r
- *\r
- * Licensed under the Apache License, Version 2.0 (the "License");\r
- * you may not use this file except in compliance with the License.\r
- * You may obtain a copy of the License at\r
- *\r
- *         http://www.apache.org/licenses/LICENSE-2.0\r
- *\r
- * Unless required by applicable law or agreed to in writing, software\r
- * distributed under the License is distributed on an "AS IS" BASIS,\r
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
- * See the License for the specific language governing permissions and\r
- * limitations under the License.\r
- */\r
-package org.argeo.slc.support.deploy;\r
-\r
-import java.io.IOException;\r
-import java.net.URL;\r
-\r
-import org.argeo.slc.SlcException;\r
-import org.argeo.slc.build.Distribution;\r
-import org.argeo.slc.deploy.DeploymentData;\r
-import org.argeo.slc.deploy.TargetData;\r
-\r
-public class HttpdServer implements WebServer {\r
-       private HttpdServerTargetData targetData;\r
-       private HttpdServerDeploymentData deploymentData;\r
-\r
-       public URL getBaseUrl() {\r
-               try {\r
-                       return new URL("http://localhost:" + targetData.getPort());\r
-               } catch (IOException e) {\r
-                       throw new SlcException("Cannot get url for Httpd server "\r
-                                       + getDeployedSystemId(), e);\r
-               }\r
-       }\r
-\r
-       public String getDeployedSystemId() {\r
-               // TODO Auto-generated method stub\r
-               return null;\r
-       }\r
-\r
-       public Distribution getDistribution() {\r
-               // TODO Auto-generated method stub\r
-               return null;\r
-       }\r
-\r
-       public DeploymentData getDeploymentData() {\r
-               return deploymentData;\r
-       }\r
-\r
-       public TargetData getTargetData() {\r
-               return targetData;\r
-       }\r
-\r
-       public void setTargetData(TargetData targetData) {\r
-               this.targetData = (HttpdServerTargetData)targetData;\r
-       }\r
-\r
-       public void setDeploymentData(DeploymentData deploymentData) {\r
-               this.deploymentData = (HttpdServerDeploymentData)deploymentData;\r
-       }\r
-\r
-}\r
+package org.argeo.slc.support.deploy;
+
+import java.io.IOException;
+import java.net.URL;
+
+import org.argeo.slc.SlcException;
+import org.argeo.slc.build.Distribution;
+import org.argeo.slc.deploy.DeploymentData;
+import org.argeo.slc.deploy.TargetData;
+
+public class HttpdServer implements WebServer {
+       private HttpdServerTargetData targetData;
+       private HttpdServerDeploymentData deploymentData;
+
+       public URL getBaseUrl() {
+               try {
+                       return new URL("http://localhost:" + targetData.getPort());
+               } catch (IOException e) {
+                       throw new SlcException("Cannot get url for Httpd server "
+                                       + getDeployedSystemId(), e);
+               }
+       }
+
+       public String getDeployedSystemId() {
+               // TODO Auto-generated method stub
+               return null;
+       }
+
+       public Distribution getDistribution() {
+               // TODO Auto-generated method stub
+               return null;
+       }
+
+       public DeploymentData getDeploymentData() {
+               return deploymentData;
+       }
+
+       public TargetData getTargetData() {
+               return targetData;
+       }
+
+       public void setTargetData(TargetData targetData) {
+               this.targetData = (HttpdServerTargetData)targetData;
+       }
+
+       public void setDeploymentData(DeploymentData deploymentData) {
+               this.deploymentData = (HttpdServerDeploymentData)deploymentData;
+       }
+
+}