Merge tag 'v2.3.15' into testing
[gpl/argeo-slc.git] / org.argeo.slc.cms / src / org / argeo / slc / cms / deploy / osgi / CmsOsgiDeployedSystem.java
diff --git a/org.argeo.slc.cms/src/org/argeo/slc/cms/deploy/osgi/CmsOsgiDeployedSystem.java b/org.argeo.slc.cms/src/org/argeo/slc/cms/deploy/osgi/CmsOsgiDeployedSystem.java
deleted file mode 100644 (file)
index 8de4354..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-package org.argeo.slc.cms.deploy.osgi;
-
-import org.argeo.slc.build.Distribution;
-import org.argeo.slc.build.ModularDistribution;
-import org.argeo.slc.cms.deploy.CmsDeployedSystem;
-import org.argeo.slc.cms.deploy.CmsDeploymentData;
-import org.argeo.slc.cms.deploy.CmsTargetData;
-import org.argeo.slc.deploy.DeploymentData;
-import org.argeo.slc.deploy.TargetData;
-import org.osgi.framework.BundleContext;
-
-public class CmsOsgiDeployedSystem implements CmsDeployedSystem {
-       private ModularDistribution distribution;
-       private CmsTargetData targetData;
-       private CmsDeploymentData deploymentData;
-
-       private BundleContext systemBundleContext;
-
-       public CmsOsgiDeployedSystem(BundleContext systemBundleContext, ModularDistribution distribution,
-                       CmsTargetData targetData, CmsDeploymentData deploymentData) {
-               this.systemBundleContext = systemBundleContext;
-
-               this.distribution = distribution;
-               this.targetData = targetData;
-               this.deploymentData = deploymentData;
-       }
-
-       @Override
-       public String getDeployedSystemId() {
-               // TODO Auto-generated method stub
-               return null;
-       }
-
-       @Override
-       public Distribution getDistribution() {
-               return distribution;
-       }
-
-       @Override
-       public DeploymentData getDeploymentData() {
-               return deploymentData;
-       }
-
-       @Override
-       public TargetData getTargetData() {
-               return targetData;
-       }
-
-}