http://git-wip-us.apache.org/repos/asf/stratos/blob/4b864473/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/services/CloudControllerService.java
----------------------------------------------------------------------
diff --git 
a/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/services/CloudControllerService.java
 
b/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/services/CloudControllerService.java
index 68b85b2..169c665 100644
--- 
a/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/services/CloudControllerService.java
+++ 
b/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/services/CloudControllerService.java
@@ -213,20 +213,7 @@ public interface CloudControllerService {
      * @throws 
org.apache.stratos.cloud.controller.exception.CartridgeNotFoundException if 
there is no registered
      *                                                                         
         cartridge with this type.
      */
-    public Cartridge getCartridge(String cartridgeType) throws 
CartridgeNotFoundException;
-    /**
-     * This method will return the information regarding the given cartridge, 
if present.
-     * Else this will return <code>null</code>.
-     *
-     * @param cartridgeType type of the cartridge.
-     * @param tenantId tenant id.
-     *
-     * @return {@link org.apache.stratos.cloud.controller.domain.Cartridge} of 
the given cartridge type or
-     * <code>null</code>.
-     * @throws 
org.apache.stratos.cloud.controller.exception.CartridgeNotFoundException if 
there is no registered
-     *                                                                         
         cartridge with this type.
-     */
-    Cartridge getCartridgeByTenant(String cartridgeType,int tenantId) throws 
CartridgeNotFoundException;
+    Cartridge getCartridge(String cartridgeType) throws 
CartridgeNotFoundException;
 
     /**
      * Calling this method will result in returning the types of {@link 
org.apache.stratos.cloud.controller.domain
@@ -272,25 +259,15 @@ public interface CloudControllerService {
     /**
      * Retrieves registered Kubernetes clusters.
      */
-    public KubernetesCluster[] getKubernetesClusters(int tenantId);
+    public KubernetesCluster[] getKubernetesClusters();
 
     /**
-     * Retrieves Kubernetes cluster for given Kubernetes cluster UUID.
+     * Retrieves Kubernetes cluster for given Kubernetes cluster ID.
      *
-     * @param kubernetesClusterUuid
-     */
-    public KubernetesCluster getKubernetesCluster(String kubernetesClusterUuid)
-            throws NonExistingKubernetesClusterException;
-
-    /**
-     * Retrieves Kubernetes cluster for given Kubernetes cluster ID and tenant 
id
      * @param kubernetesClusterId
-     * @param tenantId
-     * @return
-     * @throws NonExistingKubernetesClusterException
      */
-    public KubernetesCluster getKubernetesClusterByTenant(String 
kubernetesClusterId, int tenantId) throws
-            NonExistingKubernetesClusterException;
+    public KubernetesCluster getKubernetesCluster(String kubernetesClusterId)
+            throws NonExistingKubernetesClusterException;
 
     /**
      * Retrieves Kubernetes Master for given Kubernetes cluster ID.
@@ -329,11 +306,11 @@ public interface CloudControllerService {
     /**
      * Add a Kubernetes host to a Kubernetes cluster.
      *
-     * @param groupUuid
+     * @param groupId
      * @param kubernetesHost
      * @throws 
org.apache.stratos.cloud.controller.exception.InvalidKubernetesHostException
      */
-    public boolean addKubernetesHost(String groupUuid, KubernetesHost 
kubernetesHost) throws
+    public boolean addKubernetesHost(String groupId, KubernetesHost 
kubernetesHost) throws
             InvalidKubernetesHostException,
             NonExistingKubernetesClusterException;
 
@@ -350,10 +327,10 @@ public interface CloudControllerService {
     /**
      * Remove a Kubernetes host.
      *
-     * @param groupUuid
+     * @param groupId
      * @throws NonExistingKubernetesClusterException
      */
-    public boolean removeKubernetesCluster(String groupUuid) throws 
NonExistingKubernetesClusterException;
+    public boolean removeKubernetesCluster(String groupId) throws 
NonExistingKubernetesClusterException;
 
     /**
      * Update a Kubernetes host.
@@ -387,8 +364,7 @@ public interface CloudControllerService {
      * @param networkPartitionId
      * @throws NetworkPartitionNotExistsException
      */
-    public boolean removeNetworkPartition(String networkPartitionId,
-                                          int tenantId) throws 
NetworkPartitionNotExistsException;
+    public boolean removeNetworkPartition(String networkPartitionId) throws 
NetworkPartitionNotExistsException;
 
     /**
      * Update network partition
@@ -406,13 +382,6 @@ public interface CloudControllerService {
     public NetworkPartition[] getNetworkPartitions();
 
     /**
-     * Get network partitions by tenant
-     *@param tenantId tenant id
-     * @return
-     */
-    public NetworkPartition[] getNetworkPartitionsByTenant(int tenantId);
-
-    /**
      * Get network partition by network partition id
      *
      * @param networkPartitionId
@@ -431,19 +400,4 @@ public interface CloudControllerService {
      */
     public String[] getIaasProviders();
 
-    /**
-     * Get cartridges for tenant
-     *
-     * @param tenantId tenant id
-     */
-    public Cartridge[] getCartridgesByTenant(int tenantId);
-
-    /**
-     * Get cartridges for tenant
-     *
-     * @param networkPartitionUuid network partition uuid
-     * @param tenantId tenant id
-     */
-    public NetworkPartition getNetworkPartitionByTenant(String 
networkPartitionUuid, int tenantId);
-
 }
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/stratos/blob/4b864473/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/services/impl/CloudControllerServiceImpl.java
----------------------------------------------------------------------
diff --git 
a/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/services/impl/CloudControllerServiceImpl.java
 
b/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/services/impl/CloudControllerServiceImpl.java
index 2eeea69..55e70db 100644
--- 
a/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/services/impl/CloudControllerServiceImpl.java
+++ 
b/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/services/impl/CloudControllerServiceImpl.java
@@ -62,21 +62,19 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
 
     private CloudControllerContext cloudControllerContext = 
CloudControllerContext.getInstance();
     private ExecutorService executorService;
+
     public CloudControllerServiceImpl() {
         executorService = 
StratosThreadPool.getExecutorService("cloud.controller.instance.manager.thread.pool",
 50);
 
     }
 
     public boolean addCartridge(Cartridge cartridgeConfig) throws 
InvalidCartridgeDefinitionException,
-            InvalidIaasProviderException,
-            CartridgeAlreadyExistsException {
+            InvalidIaasProviderException, CartridgeAlreadyExistsException {
 
         handleNullObject(cartridgeConfig, "Cartridge definition is null");
-        handleNullObject(cartridgeConfig.getUuid(), "Cartridge definition UUID 
is null");
 
         if (log.isInfoEnabled()) {
-            log.info(String.format("Adding cartridge: [tenant id] %d 
[cartridge-uuid] %s [cartridge-type] %s ",
-                    cartridgeConfig.getTenantId(), cartridgeConfig.getUuid(), 
cartridgeConfig.getType()));
+            log.info("Adding cartridge: [cartridge-type] " + 
cartridgeConfig.getType());
         }
         if (log.isDebugEnabled()) {
             log.debug("Cartridge definition: " + cartridgeConfig.toString());
@@ -85,18 +83,14 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
         try {
             
CloudControllerUtil.extractIaaSProvidersFromCartridge(cartridgeConfig);
         } catch (Exception e) {
-            String message = String.format("Invalid cartridge definition: " +
-                            "[cartridge-type] %s", cartridgeConfig.getType());
+            String message = "Invalid cartridge definition: [cartridge-type] " 
+ cartridgeConfig.getType();
             log.error(message, e);
             throw new InvalidCartridgeDefinitionException(message, e);
         }
 
-        String cartridgeUuid = cartridgeConfig.getUuid();
-        Cartridge existingCartridge = 
cloudControllerContext.getCartridge(cartridgeUuid);
-        if (existingCartridge != null) {
-            String message = String.format("Cartridge already exists: [tenant 
id] %d [cartridge-uuid] %s " +
-                            "[cartridge-type] %s ", 
existingCartridge.getTenantId(), cartridgeUuid,
-                    existingCartridge.getType());
+        String cartridgeType = cartridgeConfig.getType();
+        if (cloudControllerContext.getCartridge(cartridgeType) != null) {
+            String message = "Cartridge already exists: [cartridge-type] " + 
cartridgeType;
             log.error(message);
             throw new CartridgeAlreadyExistsException(message);
         }
@@ -111,8 +105,7 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
         TopologyBuilder.handleServiceCreated(cartridgeList);
 
         if (log.isInfoEnabled()) {
-            log.info(String.format("Successfully added cartridge: [tenant-id] 
%d [cartridge-uuid] %s [cartridge-type]" +
-                            " %s", cartridgeConfig.getTenantId(), 
cartridgeUuid, cartridgeConfig.getType()));
+            log.info("Successfully added cartridge: [cartridge-type] " + 
cartridgeType);
         }
         return true;
     }
@@ -125,8 +118,7 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
         handleNullObject(cartridge, "Cartridge definition is null");
 
         if (log.isInfoEnabled()) {
-            log.info(String.format("Updating cartridge: [tenant-id] %d 
[cartridge-uuid] %s [cartridge-type]" +
-                    " %s", cartridge.getTenantId(), cartridge.getUuid(), 
cartridge.getType()));
+            log.info("Updating cartridge: [cartridge-type] " + 
cartridge.getType());
         }
         if (log.isDebugEnabled()) {
             log.debug("Cartridge definition: " + cartridge.toString());
@@ -140,17 +132,16 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
             throw new InvalidCartridgeDefinitionException(msg, e);
         }
 
-        String cartridgeUuid = cartridge.getUuid();
-        if (cloudControllerContext.getCartridge(cartridgeUuid) != null) {
-            Cartridge cartridgeToBeRemoved = 
cloudControllerContext.getCartridge(cartridgeUuid);
+        String cartridgeType = cartridge.getType();
+        if (cloudControllerContext.getCartridge(cartridgeType) != null) {
+            Cartridge cartridgeToBeRemoved = 
cloudControllerContext.getCartridge(cartridgeType);
             try {
-                removeCartridgeFromCC(cartridgeToBeRemoved.getUuid());
+                removeCartridgeFromCC(cartridgeToBeRemoved.getType());
             } catch (InvalidCartridgeTypeException ignore) {
             }
             copyIaasProviders(cartridge, cartridgeToBeRemoved);
         } else {
-            throw new CartridgeDefinitionNotExistsException("Cartridge 
definition not exists: [cartridge-type] " +
-                    cartridge.getType());
+            throw new CartridgeDefinitionNotExistsException("This cartridge 
definition not exists");
         }
 
         // Add cartridge to the cloud controller context and persist
@@ -159,8 +150,7 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
         // transaction ends
 
         if (log.isInfoEnabled()) {
-            log.info(String.format("Successfully updated cartridge: tenant-id] 
%d [cartridge-uuid] %s " +
-                    "[cartridge-type] %s", cartridge.getTenantId(), 
cartridge.getUuid(), cartridge.getType()));
+            log.info("Successfully updated cartridge: [cartridge-type] " + 
cartridgeType);
         }
         return true;
     }
@@ -168,9 +158,9 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
     private void copyIaasProviders(Cartridge destCartridge,
                                    Cartridge sourceCartridge) {
 
-        List<IaasProvider> newIaasProviders = 
CloudControllerContext.getInstance().getIaasProviders(destCartridge.getUuid());
+        List<IaasProvider> newIaasProviders = 
CloudControllerContext.getInstance().getIaasProviders(destCartridge.getType());
 
-        Map<String, IaasProvider> iaasProviderMap = 
CloudControllerContext.getInstance().getPartitionToIaasProvider(sourceCartridge.getUuid());
+        Map<String, IaasProvider> iaasProviderMap = 
CloudControllerContext.getInstance().getPartitionToIaasProvider(sourceCartridge.getType());
 
         if (iaasProviderMap != null) {
             for (Entry<String, IaasProvider> entry : 
iaasProviderMap.entrySet()) {
@@ -192,40 +182,38 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
 
     }
 
-    public boolean removeCartridge(String cartridgeUuid) throws 
InvalidCartridgeTypeException {
+    public boolean removeCartridge(String cartridgeType) throws 
InvalidCartridgeTypeException {
         //Removing the cartridge from CC
-        Cartridge cartridge = removeCartridgeFromCC(cartridgeUuid);
+        Cartridge cartridge = removeCartridgeFromCC(cartridgeType);
         //removing the cartridge from Topology
         removeCartridgeFromTopology(cartridge);
 
         if (log.isInfoEnabled()) {
-            log.info(String.format("Successfully removed cartridge: 
[tenant-id] %d [cartridge-uuid] %s " +
-                    "[cartridge-type] %s", cartridge.getTenantId(), 
cartridge.getUuid(), cartridge.getType()));
+            log.info("Successfully removed cartridge: [cartridge-type] " + 
cartridgeType);
         }
         return true;
     }
 
-    private Cartridge removeCartridgeFromCC(String cartridgeUuid) throws 
InvalidCartridgeTypeException {
+    private Cartridge removeCartridgeFromCC(String cartridgeType) throws 
InvalidCartridgeTypeException {
         Cartridge cartridge = null;
-        if ((cartridge = 
CloudControllerContext.getInstance().getCartridge(cartridgeUuid)) != null) {
-            if 
(CloudControllerContext.getInstance().removeCartridge(cartridgeUuid)) {
+        if ((cartridge = 
CloudControllerContext.getInstance().getCartridge(cartridgeType)) != null) {
+            if 
(CloudControllerContext.getInstance().getCartridges().remove(cartridge)) {
                 // invalidate partition validation cache
-                
CloudControllerContext.getInstance().removeFromCartridgeTypeToPartitionIds(cartridgeUuid);
+                
CloudControllerContext.getInstance().removeFromCartridgeTypeToPartitionIds(cartridgeType);
 
                 if (log.isDebugEnabled()) {
-                    log.debug("Partition cache invalidated for cartridge " + 
cartridgeUuid);
+                    log.debug("Partition cache invalidated for cartridge " + 
cartridgeType);
                 }
 
                 CloudControllerContext.getInstance().persist();
 
                 if (log.isInfoEnabled()) {
-                    log.info(String.format("Successfully removed cartridge: 
[tenant-id] %d [cartridge-uuid] %s " +
-                            "[cartridge-type] %s", cartridge.getTenantId(), 
cartridge.getUuid(), cartridge.getType()));
+                    log.info("Successfully removed cartridge: [cartridge-type] 
" + cartridgeType);
                 }
                 return cartridge;
             }
         }
-        String msg = "Cartridge not found: [cartridge-uuid] " + cartridgeUuid;
+        String msg = "Cartridge not found: [cartridge-type] " + cartridgeType;
         log.error(msg);
         throw new InvalidCartridgeTypeException(msg);
     }
@@ -252,7 +240,7 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
 
     public boolean removeServiceGroup(String name) throws 
InvalidServiceGroupException {
         if (log.isDebugEnabled()) {
-            log.debug("Removing service group: [service-group-name] " + name);
+            log.debug("CloudControllerServiceImpl:removeServiceGroup: " + 
name);
         }
 
         ServiceGroup serviceGroup = null;
@@ -263,7 +251,7 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
             if 
(CloudControllerContext.getInstance().getServiceGroups().remove(serviceGroup)) {
                 CloudControllerContext.getInstance().persist();
                 if (log.isInfoEnabled()) {
-                    log.info(String.format("Successfully removed the cartridge 
group:  [service-group-name] %s", name));
+                    log.info("Successfully removed the cartridge group: 
[group-name] " + serviceGroup);
                 }
                 return true;
             }
@@ -298,7 +286,7 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
     public String[] getServiceGroupSubGroups(String name) throws 
InvalidServiceGroupException {
         ServiceGroup serviceGroup = this.getServiceGroup(name);
         if (serviceGroup == null) {
-            throw new InvalidServiceGroupException("Invalid cartridge group: 
[group-name] " + name);
+            throw new InvalidServiceGroupException("Invalid cartridge group: 
[group-name] " + serviceGroup);
         }
 
         return serviceGroup.getSubGroups();
@@ -310,7 +298,7 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
     public String[] getServiceGroupCartridges(String name) throws 
InvalidServiceGroupException {
         ServiceGroup serviceGroup = this.getServiceGroup(name);
         if (serviceGroup == null) {
-            throw new InvalidServiceGroupException("Invalid cartridge group: 
[group-name] " + name);
+            throw new InvalidServiceGroupException("Invalid cartridge group: 
[group-name] " + serviceGroup);
         }
         String[] cs = serviceGroup.getCartridges();
         return cs;
@@ -320,7 +308,7 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
     public Dependencies getServiceGroupDependencies(String name) throws 
InvalidServiceGroupException {
         ServiceGroup serviceGroup = this.getServiceGroup(name);
         if (serviceGroup == null) {
-            throw new InvalidServiceGroupException("Invalid cartridge group: 
[group-name] " + name);
+            throw new InvalidServiceGroupException("Invalid cartridge group: 
[group-name] " + serviceGroup);
         }
         return serviceGroup.getDependencies();
     }
@@ -363,7 +351,7 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
             handleNullObject(clusterContext, "Could not start instance, 
cluster context not found: [cluster-id] " + clusterId);
 
             // Validate cartridge
-            String cartridgeType = clusterContext.getCartridgeUuid();
+            String cartridgeType = clusterContext.getCartridgeType();
             Cartridge cartridge = 
CloudControllerContext.getInstance().getCartridge(cartridgeType);
             if (cartridge == null) {
                 String msg = "Could not startup instance, cartridge not found: 
[cartridge-type] " + cartridgeType;
@@ -372,7 +360,7 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
             }
 
             // Validate iaas provider
-            IaasProvider iaasProvider = 
CloudControllerContext.getInstance().getIaasProviderOfPartition(cartridge.getUuid(),
 partitionId);
+            IaasProvider iaasProvider = 
CloudControllerContext.getInstance().getIaasProviderOfPartition(cartridge.getType(),
 partitionId);
             if (iaasProvider == null) {
                 String msg = String.format("Could not start instance, " +
                                 "IaaS provider not found in cartridge %s for 
partition %s, " +
@@ -386,7 +374,7 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
             String memberId = generateMemberId(clusterId);
 
             // Create member context
-            String applicationId = clusterContext.getApplicationUuid();
+            String applicationId = clusterContext.getApplicationId();
             MemberContext memberContext = createMemberContext(applicationId, 
cartridgeType, memberId,
                     
CloudControllerUtil.getLoadBalancingIPTypeEnumFromString(cartridge.getLoadBalancingIPType()),
 instanceContext);
 
@@ -459,13 +447,13 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
                 clusterContext.setVolumes(volumes);
             }
 
+            // Handle member created event
+            TopologyBuilder.handleMemberCreatedEvent(memberContext);
+
             // Persist member context
             
CloudControllerContext.getInstance().addMemberContext(memberContext);
             CloudControllerContext.getInstance().persist();
 
-            // Handle member created event
-            TopologyBuilder.handleMemberCreatedEvent(memberContext);
-
             // Start instance in a new thread
             if (log.isDebugEnabled()) {
                 log.debug(String.format("Starting instance creator thread: 
[cluster] %s [cluster-instance] %s " +
@@ -488,7 +476,6 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
         MemberContext memberContext = new MemberContext(
                 applicationId, cartridgeType, instanceContext.getClusterId(), 
memberId);
 
-
         
memberContext.setClusterInstanceId(instanceContext.getClusterInstanceId());
         
memberContext.setNetworkPartitionId(instanceContext.getNetworkPartitionId());
         
memberContext.setPartition(cloudControllerContext.getNetworkPartition(instanceContext.getNetworkPartitionId()).
@@ -763,72 +750,30 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
     }
 
     @Override
-    public Cartridge getCartridge(String cartridgeUuid) throws 
CartridgeNotFoundException {
-        Cartridge cartridge = 
CloudControllerContext.getInstance().getCartridge(cartridgeUuid);
+    public Cartridge getCartridge(String cartridgeType) throws 
CartridgeNotFoundException {
+        Cartridge cartridge = 
CloudControllerContext.getInstance().getCartridge(cartridgeType);
         if (cartridge != null) {
             return cartridge;
         }
 
-        String msg = "Could not find cartridge: [cartridge-uuid] " + 
cartridgeUuid;
+        String msg = "Could not find cartridge: [cartridge-type] " + 
cartridgeType;
         throw new CartridgeNotFoundException(msg);
     }
 
     @Override
-    public Cartridge getCartridgeByTenant(String cartridgeType, int tenantId) 
throws CartridgeNotFoundException {
-        // get the list of cartridges registered
-        Collection<Cartridge> cartridges = 
CloudControllerContext.getInstance().getCartridges();
-        if (cartridges == null || cartridges.size() == 0) {
-            log.info("No registered Cartridge found.");
-            return null;
-        }
-        for (Cartridge cartridge : cartridges) {
-            if (log.isDebugEnabled()) {
-                log.debug(cartridge);
-            }
-            if (cartridge.getType().equals(cartridgeType) && 
(cartridge.getTenantId() == tenantId)) {
-                return cartridge;
-            }
-        }
-
-        String msg = "Could not find cartridge: [cartridge-type]" + 
cartridgeType;
-        throw new CartridgeNotFoundException(msg);
-    }
-
-    @Override
-    public Cartridge[] getCartridgesByTenant(int tenantId) {
-
-        Collection<Cartridge> allCartridges = 
CloudControllerContext.getInstance().getCartridges();
-        List<Cartridge> cartridges = new ArrayList<Cartridge>();
-        if (allCartridges == null || allCartridges.size() == 0) {
-            log.info("No registered Cartridge found for [tenant-id]" + 
tenantId);
-            return null;
-        }
-        for (Cartridge cartridge : allCartridges) {
-            if (log.isDebugEnabled()) {
-                log.debug(cartridge);
-            }
-            if (cartridge.getTenantId() == tenantId) {
-                cartridges.add(cartridge);
-            }
-        }
-
-        return cartridges.toArray(new Cartridge[cartridges.size()]);
-    }
-
-    @Override
     public boolean unregisterService(String clusterId) throws 
UnregisteredClusterException {
         final String clusterId_ = clusterId;
 
         ClusterContext ctxt = 
CloudControllerContext.getInstance().getClusterContext(clusterId_);
         handleNullObject(ctxt, "Service unregistration failed. Invalid cluster 
id: " + clusterId);
 
-        final String cartridgeUuid = ctxt.getCartridgeUuid();
-        Cartridge cartridge = 
CloudControllerContext.getInstance().getCartridge(cartridgeUuid);
+        final String cartridgeType = ctxt.getCartridgeType();
+        Cartridge cartridge = 
CloudControllerContext.getInstance().getCartridge(cartridgeType);
 
         if (cartridge == null) {
             String msg =
-                    String.format("Service unregistration failed. No matching 
cartridge found: [cartridge-uuid] %s " +
-                            "[application-id] %s", cartridgeUuid, 
ctxt.getApplicationUuid());
+                    String.format("Service unregistration failed. No matching 
cartridge found: [cartridge-type] %s " +
+                            "[application-id] %s", cartridgeType, 
ctxt.getApplicationId());
             log.error(msg);
             throw new UnregisteredClusterException(msg);
         }
@@ -839,12 +784,12 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
                 ClusterContext ctxt = 
CloudControllerContext.getInstance().getClusterContext(clusterId_);
                 if (ctxt == null) {
                     String msg = String.format("Service unregistration failed. 
Cluster not found: [cluster-id] %s " +
-                            "[application-id] %s", clusterId_, 
ctxt.getApplicationUuid());
+                            "[application-id] %s", clusterId_, 
ctxt.getApplicationId());
                     log.error(msg);
                     return;
                 }
                 Collection<Member> members = TopologyManager.getTopology().
-                        
getService(ctxt.getCartridgeUuid()).getCluster(clusterId_).getMembers();
+                        
getService(ctxt.getCartridgeType()).getCluster(clusterId_).getMembers();
                 //finding the responding members from the existing members in 
the topology.
                 int sizeOfRespondingMembers = 0;
                 for (Member member : members) {
@@ -869,7 +814,7 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
                         } catch (Exception e) {
                             // we are not gonna stop the execution due to 
errors.
                             log.warn((String.format("Instance termination 
failed of member [member-id] %s " +
-                                    "[application-id] %s", 
member.getMemberId(), ctxt.getApplicationUuid())), e);
+                                    "[application-id] %s", 
member.getMemberId(), ctxt.getApplicationId())), e);
 
                         }
                     }
@@ -884,20 +829,20 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
                     ClusterContext ctxt = 
CloudControllerContext.getInstance().getClusterContext(clusterId_);
                     if (ctxt == null) {
                         String msg = String.format("Service unregistration 
failed. Cluster not found: [cluster-id] %s " +
-                                "[application-id] %s ", clusterId_, 
ctxt.getApplicationUuid());
+                                "[application-id] %s ", clusterId_, 
ctxt.getApplicationId());
                         log.error(msg);
                         return;
                     }
                     Collection<Member> members = TopologyManager.getTopology().
-                            
getService(ctxt.getCartridgeUuid()).getCluster(clusterId_).getMembers();
+                            
getService(ctxt.getCartridgeType()).getCluster(clusterId_).getMembers();
 
                     while (members.size() > 0) {
                         //waiting until all the members got removed from the 
Topology/ timed out
                         CloudControllerUtil.sleep(1000);
                     }
 
-                    log.info(String.format("Unregistration of service cluster: 
[cluster-id] %s [application-id] %s",
-                            clusterId_, ctxt.getApplicationUuid()));
+                    log.info(String.format("Unregistration of service cluster: 
[cluster-id] %s [application-id]",
+                            clusterId_, ctxt.getApplicationId()));
                     deleteVolumes(ctxt);
                     onClusterRemoval(clusterId_);
                 } finally {
@@ -913,7 +858,7 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
                     try {
                         lock = 
CloudControllerContext.getInstance().acquireCartridgesWriteLock();
 
-                        Cartridge cartridge = 
CloudControllerContext.getInstance().getCartridge(ctxt.getCartridgeUuid());
+                        Cartridge cartridge = 
CloudControllerContext.getInstance().getCartridge(ctxt.getCartridgeType());
                         if (cartridge != null && 
CloudControllerContext.getInstance().getIaasProviders(cartridge.getType()) != 
null && ctxt.getVolumes() != null) {
                             for (Volume volume : ctxt.getVolumes()) {
                                 if (volume.getId() != null) {
@@ -929,8 +874,8 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
                                         } catch (Exception ignore) {
                                             if (log.isErrorEnabled()) {
                                                 
log.error((String.format("Error while deleting volume [id] %s " +
-                                                                
"[application-id] %s", volume.getId(),
-                                                                
ctxt.getApplicationUuid())), ignore);
+                                                                
"[application-id]", volume.getId(), ctxt.getApplicationId())),
+                                                        ignore);
                                             }
                                         }
                                     }
@@ -955,51 +900,51 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
      * FIXME: A validate method shouldn't persist data
      */
     @Override
-    public boolean validateDeploymentPolicyNetworkPartition(String 
cartridgeUuid, String networkPartitionUuid)
+    public boolean validateDeploymentPolicyNetworkPartition(String 
cartridgeType, String networkPartitionId)
             throws InvalidPartitionException, InvalidCartridgeTypeException {
 
-        NetworkPartition networkPartition = 
CloudControllerContext.getInstance().getNetworkPartition(networkPartitionUuid);
+        NetworkPartition networkPartition = 
CloudControllerContext.getInstance().getNetworkPartition(networkPartitionId);
         Lock lock = null;
         try {
             lock = 
CloudControllerContext.getInstance().acquireCartridgesWriteLock();
 
-            List<String> validatedPartitions = 
CloudControllerContext.getInstance().getPartitionIds(cartridgeUuid);
+            List<String> validatedPartitions = 
CloudControllerContext.getInstance().getPartitionIds(cartridgeType);
             if (validatedPartitions != null) {
                 // cache hit for this cartridge
                 // get list of partitions
                 if (log.isDebugEnabled()) {
-                    log.debug("Partition validation cache hit for cartridge 
uuid: " + cartridgeUuid);
+                    log.debug("Partition validation cache hit for cartridge 
type: " + cartridgeType);
                 }
             }
 
             Map<String, IaasProvider> partitionToIaasProviders = new 
ConcurrentHashMap<String, IaasProvider>();
 
             if (log.isDebugEnabled()) {
-                log.debug("Deployment policy validation started for cartridge 
uuid: " + cartridgeUuid);
+                log.debug("Deployment policy validation started for cartridge 
type: " + cartridgeType);
             }
 
-            Cartridge cartridge = 
CloudControllerContext.getInstance().getCartridge(cartridgeUuid);
+            Cartridge cartridge = 
CloudControllerContext.getInstance().getCartridge(cartridgeType);
             if (cartridge == null) {
-                String msg = "Cartridge not found: [cartridge-uuid] " + 
cartridgeUuid;
+                String msg = "Cartridge not found: " + cartridgeType;
                 log.error(msg);
                 throw new InvalidCartridgeTypeException(msg);
             }
 
             Map<String, Future<IaasProvider>> jobList = new HashMap<String, 
Future<IaasProvider>>();
             for (Partition partition : networkPartition.getPartitions()) {
-                if (validatedPartitions != null && 
validatedPartitions.contains(partition.getUuid())) {
+                if (validatedPartitions != null && 
validatedPartitions.contains(partition.getId())) {
                     // partition cache hit
                     String provider = partition.getProvider();
                     IaasProvider iaasProvider = 
CloudControllerContext.getInstance()
-                            .getIaasProvider(cartridge.getUuid(), provider);
-                    partitionToIaasProviders.put(partition.getUuid(), 
iaasProvider);
+                            .getIaasProvider(cartridge.getType(), provider);
+                    partitionToIaasProviders.put(partition.getId(), 
iaasProvider);
                     continue;
                 }
 
                 Callable<IaasProvider> worker = new 
PartitionValidatorCallable(partition, cartridge);
                 Future<IaasProvider> job = CloudControllerContext.getInstance()
                         .getExecutorService().submit(worker);
-                jobList.put(partition.getUuid(), job);
+                jobList.put(partition.getId(), job);
             }
 
             // Retrieve the results of the concurrently performed sanity 
checks.
@@ -1017,31 +962,28 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
                     }
 
                     // add to cache
-                    
CloudControllerContext.getInstance().addToCartridgeTypeToPartitionIdMap(cartridgeUuid,
 partitionId);
+                    
CloudControllerContext.getInstance().addToCartridgeTypeToPartitionIdMap(cartridgeType,
 partitionId);
 
                     if (log.isDebugEnabled()) {
-                        log.debug(String.format("Partition %s added to the 
cache against " +
-                                "cartridge: [tenant-id] %d [cartridge-uuid] %s 
[cartridge-type] %s", partitionId,
-                                cartridge.getTenantId(), cartridgeUuid, 
cartridge.getType()));
+                        log.debug("Partition " + partitionId + " added to the 
cache against cartridge: " +
+                                "[cartridge-type] " + cartridgeType);
                     }
                 } catch (Exception e) {
-                    String message = "Could not cache partitions against the 
cartridge: [cartridge-uuid] " + cartridgeUuid;
+                    String message = "Could not cache partitions against the 
cartridge: [cartridge-type] " + cartridgeType;
                     log.error(message, e);
                     throw new InvalidPartitionException(message, e);
                 }
             }
 
             // if and only if the deployment policy valid
-            
CloudControllerContext.getInstance().addIaasProviders(cartridgeUuid, 
partitionToIaasProviders);
+            
CloudControllerContext.getInstance().addIaasProviders(cartridgeType, 
partitionToIaasProviders);
             CloudControllerContext.getInstance().updateCartridge(cartridge);
 
             // persist data
             CloudControllerContext.getInstance().persist();
 
-            log.info(String.format("All partitions [%s] were validated 
successfully, " +
-                            "against the cartridge: [tenant-id] %d 
[cartridge-uuid] %s [cartridge-type] %s",
-                    
CloudControllerUtil.getPartitionIds(networkPartition.getPartitions()), 
cartridge.getTenantId(),
-                    cartridgeUuid, cartridge.getType()));
+            log.info("All partitions [" + 
CloudControllerUtil.getPartitionIds(networkPartition.getPartitions()) + "]" +
+                    " were validated successfully, against the cartridge: " + 
cartridgeType);
 
             return true;
         } finally {
@@ -1064,10 +1006,9 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
         handleNullObject(partition, "Partition validation failed. Partition is 
null.");
 
         String provider = partition.getProvider();
-        String partitionUuid = partition.getUuid();
+        String partitionId = partition.getId();
 
-        handleNullObject(provider, String.format("Partition validation failed. 
Partition provider is null. " +
-                "[partition-uuid] %s [partition-id] %s ", partitionUuid, 
partition.getId()));
+        handleNullObject(provider, "Partition [" + partitionId + "] validation 
failed. Partition provider is null.");
         IaasProvider iaasProvider = 
CloudControllerConfig.getInstance().getIaasProvider(provider);
 
         return CloudControllerServiceUtil.validatePartition(partition, 
iaasProvider);
@@ -1091,11 +1032,11 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
     }
 
     @Override
-    public boolean createApplicationClusters(String appUuid, 
ApplicationClusterContext[] appClustersContexts) throws
+    public boolean createApplicationClusters(String appId, 
ApplicationClusterContext[] appClustersContexts) throws
             ApplicationClusterRegistrationException {
         if (appClustersContexts == null || appClustersContexts.length == 0) {
             String errorMsg = "No application cluster information found, 
unable to create clusters: " +
-                    "[application-uuid] " + appUuid;
+                    "[application-id] " + appId;
             log.error(errorMsg);
             throw new ApplicationClusterRegistrationException(errorMsg);
         }
@@ -1117,7 +1058,7 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
 
                             List<String> accessUrlPerCluster = new ArrayList();
                             Collection<ClusterPortMapping> clusterPortMappings 
=
-                                    
CloudControllerContext.getInstance().getClusterPortMappings(appUuid, clusterId);
+                                    
CloudControllerContext.getInstance().getClusterPortMappings(appId, clusterId);
 
                             for (ClusterPortMapping clusterPortMapping : 
clusterPortMappings) {
                                 try {
@@ -1144,7 +1085,7 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
 
             for (ApplicationClusterContext appClusterCtxt : 
appClustersContexts) {
                 ClusterContext clusterContext = new ClusterContext(
-                        appUuid, appClusterCtxt.getCartridgeUuid(), 
appClusterCtxt.getClusterId(),
+                        appId, appClusterCtxt.getCartridgeType(), 
appClusterCtxt.getClusterId(),
                         appClusterCtxt.getTextPayload(), 
appClusterCtxt.getHostName(),
                         appClusterCtxt.isLbCluster(), 
appClusterCtxt.getProperties());
 
@@ -1155,8 +1096,8 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
                 
CloudControllerContext.getInstance().addClusterContext(clusterContext);
 
                 // Create cluster object
-                Cluster cluster = new 
Cluster(appClusterCtxt.getCartridgeUuid(), appClusterCtxt.getClusterId(),
-                        appClusterCtxt.getDeploymentPolicyName(), 
appClusterCtxt.getAutoscalePolicyName(), appUuid);
+                Cluster cluster = new 
Cluster(appClusterCtxt.getCartridgeType(), appClusterCtxt.getClusterId(),
+                        appClusterCtxt.getDeploymentPolicyName(), 
appClusterCtxt.getAutoscalePolicyName(), appId);
                 cluster.setLbCluster(false);
                 cluster.setTenantRange(appClusterCtxt.getTenantRange());
                 
cluster.setHostNames(Arrays.asList(appClusterCtxt.getHostName()));
@@ -1169,7 +1110,7 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
 
                 clusters.add(cluster);
             }
-            TopologyBuilder.handleApplicationClustersCreated(appUuid, 
clusters);
+            TopologyBuilder.handleApplicationClustersCreated(appId, clusters);
             CloudControllerContext.getInstance().persist();
         } finally {
             if (lock != null) {
@@ -1179,14 +1120,14 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
         return true;
     }
 
-    public boolean createClusterInstance(String serviceUuid, String clusterId,
+    public boolean createClusterInstance(String serviceType, String clusterId,
                                          String alias, String instanceId, 
String partitionId,
-                                         String networkPartitionUuid) throws 
ClusterInstanceCreationException {
+                                         String networkPartitionId) throws 
ClusterInstanceCreationException {
         Lock lock = null;
         try {
             lock = 
CloudControllerContext.getInstance().acquireClusterContextWriteLock();
-            TopologyBuilder.handleClusterInstanceCreated(serviceUuid, 
clusterId, alias,
-                    instanceId, partitionId, networkPartitionUuid);
+            TopologyBuilder.handleClusterInstanceCreated(serviceType, 
clusterId, alias,
+                    instanceId, partitionId, networkPartitionId);
 
             CloudControllerContext.getInstance().persist();
         } finally {
@@ -1198,33 +1139,14 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
     }
 
     @Override
-    public KubernetesCluster[] getKubernetesClusters(int tenantId) {
-        KubernetesCluster[] 
kubernetesClusters=CloudControllerContext.getInstance().getKubernetesClusters();
-        List<KubernetesCluster> kubernetesClusterList = new 
ArrayList<KubernetesCluster>();
-        for(int i=0;i<kubernetesClusters.length;i++){
-            if(kubernetesClusters[i].getTenantId()==tenantId){
-                kubernetesClusterList.add(kubernetesClusters[i]);
-            }
-        }
-        return kubernetesClusterList.toArray(new 
KubernetesCluster[kubernetesClusterList.size()]);
-
+    public KubernetesCluster[] getKubernetesClusters() {
+        return CloudControllerContext.getInstance().getKubernetesClusters();
     }
 
     @Override
-    public KubernetesCluster getKubernetesCluster(String 
kubernetesClusterUuid) throws
+    public KubernetesCluster getKubernetesCluster(String kubernetesClusterId) 
throws
             NonExistingKubernetesClusterException {
-        return 
CloudControllerContext.getInstance().getKubernetesCluster(kubernetesClusterUuid);
-    }
-
-    @Override
-    public KubernetesCluster getKubernetesClusterByTenant(String 
kubernetesClusterId,int tenantId) throws
-            NonExistingKubernetesClusterException {
-        for(KubernetesCluster 
kubernetesCluster:getKubernetesClusters(tenantId)){
-            
if(kubernetesCluster.getClusterId().equals(kubernetesClusterId)&&kubernetesCluster.getTenantId()==tenantId){
-                return kubernetesCluster;
-            }
-        }
-        return null;
+        return 
CloudControllerContext.getInstance().getKubernetesCluster(kubernetesClusterId);
     }
 
     @Override
@@ -1248,9 +1170,8 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
         }
 
         try {
-            if 
(CloudControllerContext.getInstance().getKubernetesCluster(kubernetesCluster.getClusterUuid())
 != null) {
-                throw new KubernetesClusterAlreadyExistsException("Kubernetes 
cluster already exists: " +
-                        "[kubernetes-cluster] " + 
kubernetesCluster.getClusterId());
+            if 
(CloudControllerContext.getInstance().getKubernetesCluster(kubernetesCluster.getClusterId())
 != null) {
+                throw new KubernetesClusterAlreadyExistsException("Kubernetes 
cluster already exists");
             }
         } catch (NonExistingKubernetesClusterException ignore) {
         }
@@ -1259,9 +1180,8 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
             lock = 
CloudControllerContext.getInstance().acquireKubernetesClusterWriteLock();
 
             if (log.isInfoEnabled()) {
-                log.info(String.format("Adding kubernetes cluster: [tenant-id] 
%d [kubernetes-cluster-uuid] %s " +
-                                "[kubernetes-cluster-id] %s", 
kubernetesCluster.getTenantId(),
-                        kubernetesCluster.getClusterUuid(), 
kubernetesCluster.getClusterId()));
+                log.info(String.format("Adding kubernetes cluster: 
[kubernetes-cluster-id] %s",
+                        kubernetesCluster.getClusterId()));
             }
             CloudControllerUtil.validateKubernetesCluster(kubernetesCluster);
 
@@ -1270,9 +1190,7 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
             CloudControllerContext.getInstance().persist();
 
             if (log.isInfoEnabled()) {
-                log.info(String.format("Kubernetes cluster added successfully: 
[tenant-id] %d " +
-                                "[kubernetes-cluster-uuid] %s 
[kubernetes-cluster-id] %s",
-                        kubernetesCluster.getTenantId(), 
kubernetesCluster.getClusterUuid(),
+                log.info(String.format("Kubernetes cluster added successfully: 
[kubernetes-cluster-id] %s",
                         kubernetesCluster.getClusterId()));
             }
             return true;
@@ -1295,9 +1213,8 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
             lock = 
CloudControllerContext.getInstance().acquireKubernetesClusterWriteLock();
 
             if (log.isInfoEnabled()) {
-                log.info(String.format("Updating kubernetes cluster: 
[tenant-id] %d [kubernetes-cluster-uuid] %s " +
-                                "[kubernetes-cluster-id] %s", 
kubernetesCluster.getTenantId(),
-                        kubernetesCluster.getClusterUuid(), 
kubernetesCluster.getClusterId()));
+                log.info(String.format("Updating kubernetes cluster: 
[kubernetes-cluster-id] %s",
+                        kubernetesCluster.getClusterId()));
             }
             CloudControllerUtil.validateKubernetesCluster(kubernetesCluster);
 
@@ -1306,9 +1223,7 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
             CloudControllerContext.getInstance().persist();
 
             if (log.isInfoEnabled()) {
-                log.info(String.format("Kubernetes cluster updated 
successfully: [tenant-id] %d " +
-                                "[kubernetes-cluster-uuid] %s 
[kubernetes-cluster-id] %s",
-                        kubernetesCluster.getTenantId(), 
kubernetesCluster.getClusterUuid(),
+                log.info(String.format("Kubernetes cluster updated 
successfully: [kubernetes-cluster-id] %s",
                         kubernetesCluster.getClusterId()));
             }
             return true;
@@ -1322,12 +1237,12 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
     }
 
     @Override
-    public boolean addKubernetesHost(String groupUuid, KubernetesHost 
kubernetesHost) throws
+    public boolean addKubernetesHost(String kubernetesClusterId, 
KubernetesHost kubernetesHost) throws
             InvalidKubernetesHostException, 
NonExistingKubernetesClusterException {
         if (kubernetesHost == null) {
             throw new InvalidKubernetesHostException("Kubernetes host cannot 
be null");
         }
-        if (StringUtils.isEmpty(groupUuid)) {
+        if (StringUtils.isEmpty(kubernetesClusterId)) {
             throw new NonExistingKubernetesClusterException("Kubernetes 
cluster id cannot be null");
         }
 
@@ -1337,18 +1252,18 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
 
             if (log.isInfoEnabled()) {
                 log.info(String.format("Adding kubernetes host for kubernetes 
cluster: [kubernetes-cluster-id] %s " +
-                        "[hostname] %s", groupUuid, 
kubernetesHost.getHostname()));
+                        "[hostname] %s", kubernetesClusterId, 
kubernetesHost.getHostname()));
             }
             CloudControllerUtil.validateKubernetesHost(kubernetesHost);
 
-            KubernetesCluster kubernetesCluster = 
getKubernetesCluster(groupUuid);
+            KubernetesCluster kubernetesCluster = 
getKubernetesCluster(kubernetesClusterId);
             ArrayList<KubernetesHost> kubernetesHostArrayList;
 
             if (kubernetesCluster.getKubernetesHosts() == null) {
                 kubernetesHostArrayList = new ArrayList<KubernetesHost>();
             } else {
                 if 
(CloudControllerContext.getInstance().kubernetesHostExists(kubernetesHost.getHostId()))
 {
-                    throw new InvalidKubernetesHostException("Kubernetes host 
already exists: [kubernetes-host-id] " +
+                    throw new InvalidKubernetesHostException("Kubernetes host 
already exists: [hostname] " +
                             kubernetesHost.getHostId());
                 }
                 kubernetesHostArrayList = new
@@ -1362,8 +1277,7 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
             CloudControllerContext.getInstance().persist();
 
             if (log.isInfoEnabled()) {
-                log.info(String.format("Kubernetes host added successfully: 
[kubernetes-cluster-id] %s " +
-                                "[kubernetes-host-id] %s", 
kubernetesCluster.getClusterUuid(), kubernetesHost.getHostId()));
+                log.info(String.format("Kubernetes host added successfully: 
[id] %s", kubernetesCluster.getClusterId()));
             }
 
             return true;
@@ -1377,8 +1291,8 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
     }
 
     @Override
-    public boolean removeKubernetesCluster(String groupUuid) throws 
NonExistingKubernetesClusterException {
-        if (StringUtils.isEmpty(groupUuid)) {
+    public boolean removeKubernetesCluster(String kubernetesClusterId) throws 
NonExistingKubernetesClusterException {
+        if (StringUtils.isEmpty(kubernetesClusterId)) {
             throw new NonExistingKubernetesClusterException("Kubernetes 
cluster id cannot be empty");
         }
 
@@ -1387,14 +1301,13 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
             lock = 
CloudControllerContext.getInstance().acquireKubernetesClusterWriteLock();
 
             if (log.isInfoEnabled()) {
-                log.info("Removing Kubernetes cluster: " + groupUuid);
+                log.info("Removing Kubernetes cluster: " + 
kubernetesClusterId);
             }
             // Remove entry from information model
-            
CloudControllerContext.getInstance().removeKubernetesCluster(groupUuid);
+            
CloudControllerContext.getInstance().removeKubernetesCluster(kubernetesClusterId);
 
             if (log.isInfoEnabled()) {
-                log.info(String.format("Kubernetes cluster removed 
successfully: [kubernetes-cluster-uuid] %s",
-                        groupUuid));
+                log.info(String.format("Kubernetes cluster removed 
successfully: [id] %s", kubernetesClusterId));
             }
 
             CloudControllerContext.getInstance().persist();
@@ -1425,8 +1338,7 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
 
                 // Kubernetes master cannot be removed
                 if 
(kubernetesClusterStored.getKubernetesMaster().getHostId().equals(kubernetesHostId))
 {
-                    throw new NonExistingKubernetesHostException("Kubernetes 
master is not allowed to be removed " +
-                            "[kubernetes-host-id] " + kubernetesHostId);
+                    throw new NonExistingKubernetesHostException("Kubernetes 
master is not allowed to be removed [id] " + kubernetesHostId);
                 }
 
                 List<KubernetesHost> kubernetesHostList = new 
ArrayList<KubernetesHost>();
@@ -1437,8 +1349,7 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
                 }
                 // member count will be equal only when host object was not 
found
                 if (kubernetesHostList.size() == 
kubernetesClusterStored.getKubernetesHosts().length) {
-                    throw new NonExistingKubernetesHostException("Kubernetes 
host not found for [kubernetes-host-id] " +
-                            "" + kubernetesHostId);
+                    throw new NonExistingKubernetesHostException("Kubernetes 
host not found for [id] " + kubernetesHostId);
                 }
                 KubernetesHost[] kubernetesHostsArray = new 
KubernetesHost[kubernetesHostList.size()];
                 kubernetesHostList.toArray(kubernetesHostsArray);
@@ -1447,7 +1358,7 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
                 
kubernetesClusterStored.setKubernetesHosts(kubernetesHostsArray);
 
                 if (log.isInfoEnabled()) {
-                    log.info(String.format("Kubernetes host removed 
successfully: [kubernetes-host-id] %s", kubernetesHostId));
+                    log.info(String.format("Kubernetes host removed 
successfully: [id] %s", kubernetesHostId));
                 }
 
                 CloudControllerContext.getInstance().persist();
@@ -1505,7 +1416,7 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
             lock = 
CloudControllerContext.getInstance().acquireKubernetesClusterWriteLock();
             CloudControllerUtil.validateKubernetesHost(kubernetesHost);
             if (log.isInfoEnabled()) {
-                log.info("Updating Kubernetes Host: [kubernetes-host-id] " + 
kubernetesHost);
+                log.info("Updating Kubernetes Host: " + kubernetesHost);
             }
 
             try {
@@ -1517,7 +1428,7 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
                         kubernetesHosts[i] = kubernetesHost;
 
                         if (log.isInfoEnabled()) {
-                            log.info(String.format("Kubernetes host updated 
successfully: [kubernetes-host-id] %s", kubernetesHost.getHostId()));
+                            log.info(String.format("Kubernetes host updated 
successfully: [id] %s", kubernetesHost.getHostId()));
                         }
 
                         
CloudControllerContext.getInstance().updateKubernetesCluster(kubernetesClusterStored);
@@ -1533,7 +1444,7 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
                 CloudControllerContext.getInstance().releaseWriteLock(lock);
             }
         }
-        throw new NonExistingKubernetesHostException("Kubernetes host not 
found [kubernetes-host-id] " + kubernetesHost.getHostId());
+        throw new NonExistingKubernetesHostException("Kubernetes host not 
found [id] " + kubernetesHost.getHostId());
     }
 
     @Override
@@ -1542,38 +1453,16 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
             InvalidNetworkPartitionException {
 
         handleNullObject(networkPartition, "Network Partition is null");
-        handleNullObject(networkPartition.getUuid(), "Network Partition Id is 
null");
+        handleNullObject(networkPartition.getId(), "Network Partition ID is 
null");
 
         if (log.isInfoEnabled()) {
-            log.info(String.format("Adding network partition: [tenant-id] %d 
[network-partition-uuid] %s " +
-                            "[network-partition-id] %s", 
networkPartition.getTenantId(), networkPartition.getUuid(),
-                    networkPartition.getId()));
-        }
-
-        String networkPartitionUuid = networkPartition.getUuid();
-        if (cloudControllerContext.getNetworkPartition(networkPartitionUuid) 
!= null) {
-            String logMessage = String.format("Network partition already 
exists: [tenant-id] %d " +
-                            "[network-partition-uuid]" +
-                            " %s [network-partition-id] %s", 
networkPartition.getTenantId(), networkPartition.getUuid(),
-                    networkPartition.getId());
-            String message = String.format("Network partition already exists: 
[network-partition-id] %s",
-                    networkPartition.getId());
-
-            log.error(logMessage);
-            throw new NetworkPartitionAlreadyExistsException(message);
+            log.info(String.format("Adding network partition: 
[network-partition-id] %s", networkPartition.getId()));
         }
 
-        String networkPartitionId = networkPartition.getId();
-
-        if 
(cloudControllerContext.getNetworkPartitionForTenant(networkPartitionId,
-                networkPartition.getTenantId()) != null) {
-            String logMessage = String.format("Network partition already 
exists: [tenant-id] %d " +
-                            "[network-partition-uuid]" +
-                            " %s [network-partition-id] %s", 
networkPartition.getTenantId(), networkPartition.getUuid(),
-                    networkPartition.getId());
-            String message = String.format("Network partition already exists: 
[network-partition-id] %s",
-                    networkPartition.getId());
-            log.error(logMessage);
+        String networkPartitionID = networkPartition.getId();
+        if (cloudControllerContext.getNetworkPartition(networkPartitionID) != 
null) {
+            String message = "Network partition already exists: 
[network-partition-id] " + networkPartitionID;
+            log.error(message);
             throw new NetworkPartitionAlreadyExistsException(message);
         }
 
@@ -1581,10 +1470,8 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
             for (Partition partition : networkPartition.getPartitions()) {
                 if (partition != null) {
                     if (log.isInfoEnabled()) {
-                        log.info(String.format("Validating partition: 
[tenant-id] %d[network-partition-uuid] %s " +
-                                        "[network-partition-id] %s 
[partition-id] %s",
-                                networkPartition.getTenantId(), 
networkPartitionUuid, networkPartition.getId(),
-                                partition.getUuid()));
+                        log.info(String.format("Validating partition: 
[network-partition-id] %s [partition-id] %s",
+                                networkPartition.getId(), partition.getId()));
                     }
                     // Overwrites partition provider with network partition 
provider
                     partition.setProvider(networkPartition.getProvider());
@@ -1593,24 +1480,19 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
                     } catch (InvalidPartitionException e) {
                         //Following message is shown to the end user in all 
the the API clients(GUI/CLI/Rest API)
                         throw new 
InvalidNetworkPartitionException(String.format("Network partition " +
-                                        "[tenant-id] %d 
[network-partition-uuid] %s [network-partition-id] %s , " +
-                                        "is invalid since the partition %s is 
invalid",
-                                networkPartition.getTenantId(), 
networkPartition.getUuid(), networkPartition.getId(),
-                                partition.getUuid()), e);
+                                        " %s, is invalid since the partition 
%s is invalid",
+                                networkPartition.getId(), partition.getId()), 
e);
                     }
                     if (log.isInfoEnabled()) {
-                        log.info(String.format("Partition validated 
successfully: [tenant-id] %d " +
-                                        "[network-partition-uuid] %s 
[network-partition-id] %s [partition-id] %s",
-                                networkPartition.getTenantId(), 
networkPartition.getUuid(), networkPartition.getId(),
-                                partition.getUuid()));
+                        log.info(String.format("Partition validated 
successfully: [network-partition-id] %s " +
+                                "[partition-id] %s", networkPartition.getId(), 
partition.getId()));
                     }
                 }
             }
         } else {
             //Following message is shown to the end user in all the the API 
clients(GUI/CLI/Rest API)
-            throw new InvalidNetworkPartitionException(String.format("Network 
partition [tenant-id] %d " +
-                            "[network-partition-uuid] %s 
[network-partition-id] %s, doesn't not have any partitions ",
-                    networkPartition.getTenantId(), 
networkPartition.getUuid(), networkPartition.getId()));
+            throw new InvalidNetworkPartitionException(String.format("Network 
partition: " +
+                    "%s doesn't not have any partitions ", 
networkPartition.getId()));
         }
 
         // adding network partition to CC-Context
@@ -1618,56 +1500,34 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
         // persisting CC-Context
         CloudControllerContext.getInstance().persist();
         if (log.isInfoEnabled()) {
-            log.info(String.format("Network partition added successfully: 
[tenant-id] %d [network-partition-uuid] %s " +
-                    "[network-partition-id] %s", 
networkPartition.getTenantId(), networkPartition.getUuid(),
+            log.info(String.format("Network partition added successfully: 
[network-partition-id] %s",
                     networkPartition.getId()));
         }
         return true;
     }
 
     @Override
-    public boolean removeNetworkPartition(String networkPartitionId,
-                                          int tenantId) throws 
NetworkPartitionNotExistsException {
+    public boolean removeNetworkPartition(String networkPartitionId) throws 
NetworkPartitionNotExistsException {
 
         try {
-            NetworkPartition networkPartition = 
cloudControllerContext.getNetworkPartitionForTenant
-                    (networkPartitionId, tenantId);
-
-            if (networkPartition != null) {
-                String networkPartitionUuid = networkPartition.getUuid();
-
-                if (log.isInfoEnabled()) {
-                    log.info(String.format("Removing network partition: 
[tenant-id] %d [network-partition-uuid] %s " +
-                            "[network-partition-id] %s", 
networkPartition.getTenantId(), networkPartitionUuid,
-                            networkPartitionId));
-                }
-                handleNullObject(networkPartitionId, "Network Partition Id is 
null");
+            if (log.isInfoEnabled()) {
+                log.info(String.format("Removing network partition: 
[network-partition-id] %s", networkPartitionId));
+            }
+            handleNullObject(networkPartitionId, "Network Partition ID is 
null");
 
-                if (networkPartitionUuid == null) {
-                    String message = String.format("Network partition not 
found: [network-partition-id] %s",
-                            networkPartitionId);
-                    log.error(message);
-                    throw new NetworkPartitionNotExistsException(message);
-                }
-                // removing from CC-Context
-                
CloudControllerContext.getInstance().removeNetworkPartition(networkPartitionUuid);
-                // persisting CC-Context
-                CloudControllerContext.getInstance().persist();
-                if (log.isInfoEnabled()) {
-                    log.info(String.format("Network partition removed 
successfully: [tenant-id] %d " +
-                            "[network-partition-uuid] %s 
[network-partition-id] %s", networkPartition.getTenantId(),
-                            networkPartitionUuid, networkPartitionId));
-                }
-            } else {
-                String message = String.format("Network partition not found: 
[network-partition-id] %s",
-                        networkPartitionId);
+            if (cloudControllerContext.getNetworkPartition(networkPartitionId) 
== null) {
+                String message = "Network partition not found: 
[network-partition-id] " + networkPartitionId;
                 log.error(message);
                 throw new NetworkPartitionNotExistsException(message);
             }
-
-
-
-
+            // removing from CC-Context
+            
CloudControllerContext.getInstance().removeNetworkPartition(networkPartitionId);
+            // persisting CC-Context
+            CloudControllerContext.getInstance().persist();
+            if (log.isInfoEnabled()) {
+                log.info(String.format("Network partition removed 
successfully: [network-partition-id] %s",
+                        networkPartitionId));
+            }
         } catch (Exception e) {
             String message = e.getMessage();
             log.error(message);
@@ -1680,20 +1540,15 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
     public boolean updateNetworkPartition(NetworkPartition networkPartition) 
throws NetworkPartitionNotExistsException {
         try {
             handleNullObject(networkPartition, "Network Partition is null");
-            handleNullObject(networkPartition.getUuid(), "Network Partition Id 
is null");
+            handleNullObject(networkPartition.getId(), "Network Partition ID 
is null");
 
             if (log.isInfoEnabled()) {
-                log.info(String.format("Updating network partition: 
[tenant-id] %d [network-partition-uuid] %s " +
-                                "[network-partition-id] %s", 
networkPartition.getTenantId(),
-                        networkPartition.getUuid(), networkPartition.getId()));
+                log.info(String.format("Updating network partition: 
[network-partition-id] %s", networkPartition.getId()));
             }
 
-            String networkPartitionId = networkPartition.getId();
-            String networkPartitionUuid = networkPartition.getUuid();
-            if 
(cloudControllerContext.getNetworkPartition(networkPartitionUuid) == null) {
-                String message = String.format("Network partition not found: 
[tenant-id] %d [network-partition-uuid] %s " +
-                                "[network-partition-id] %s", 
networkPartition.getTenantId(),
-                        networkPartition.getUuid(), networkPartition.getId());
+            String networkPartitionID = networkPartition.getId();
+            if (cloudControllerContext.getNetworkPartition(networkPartitionID) 
== null) {
+                String message = "Network partition not found: 
[network-partition-id] " + networkPartitionID;
                 log.error(message);
                 throw new NetworkPartitionNotExistsException(message);
             }
@@ -1702,19 +1557,15 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
                 for (Partition partition : networkPartition.getPartitions()) {
                     if (partition != null) {
                         if (log.isInfoEnabled()) {
-                            log.info(String.format("Validating partition: 
[tenant-id] %d [network-partition-uuid] %s" +
-                                            "[network-partition-id] %s 
[partition-uuid] %s [partition-id] %s ",
-                                    networkPartition.getTenantId(), 
networkPartitionUuid, networkPartitionId,
-                                    partition.getUuid(), partition.getId()));
+                            log.info(String.format("Validating partition: 
[network-partition-id] %s [partition-id] %s",
+                                    networkPartition.getId(), 
partition.getId()));
                         }
                         // Overwrites partition provider with network 
partition provider
                         partition.setProvider(networkPartition.getProvider());
                         validatePartition(partition);
                         if (log.isInfoEnabled()) {
-                            log.info(String.format("Partition validated 
successfully: [tenant-id] %d " +
-                                            "[network-partition-uuid] %s 
[network-partition-id] %s [partition-uuid] " +
-                                            "%s [partition-id] %s ", 
networkPartition.getTenantId(),
-                                    networkPartitionUuid, networkPartitionId, 
partition.getUuid(), partition.getId()));
+                            log.info(String.format("Partition validated 
successfully: [network-partition-id] %s " +
+                                    "[partition-id] %s", 
networkPartition.getId(), partition.getId()));
                         }
                     }
                 }
@@ -1725,9 +1576,8 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
             // persisting CC-Context
             CloudControllerContext.getInstance().persist();
             if (log.isInfoEnabled()) {
-                log.info(String.format("Network partition updated 
successfully: [tenant-id] %d [network-partition-uuid] %s " +
-                                "[network-partition-id] %s", 
networkPartition.getTenantId(),
-                        networkPartition.getUuid(), networkPartition.getId()));
+                log.info(String.format("Network partition updated 
successfully: [network-partition-id] %s",
+                        networkPartition.getId()));
             }
             return true;
         } catch (Exception e) {
@@ -1750,59 +1600,17 @@ public class CloudControllerServiceImpl implements 
CloudControllerService {
     }
 
     @Override
-    public NetworkPartition[] getNetworkPartitionsByTenant(int tenantId) {
-        NetworkPartition[] allNetworkPartitions = getNetworkPartitions();
-        List<NetworkPartition> networkPartitions = new 
ArrayList<NetworkPartition>();
-
-        if (allNetworkPartitions != null) {
-            for (NetworkPartition networkPartition : allNetworkPartitions) {
-                if (networkPartition.getTenantId() == tenantId) {
-                    networkPartitions.add(networkPartition);
-                }
-            }
-        }
-        return networkPartitions.toArray(new 
NetworkPartition[networkPartitions.size()]);
-    }
-
-    @Override
-    public NetworkPartition getNetworkPartitionByTenant(String 
networkPartitionId, int tenantId) {
-        NetworkPartition[] allNetworkPartitions = getNetworkPartitions();
-        NetworkPartition networkPartition = null;
-
-        if (allNetworkPartitions != null) {
-            for (NetworkPartition networkPartition1 : allNetworkPartitions) {
-                if (networkPartition1.getTenantId() == tenantId && 
networkPartition1.getId().equals
-                        (networkPartitionId)) {
-                    networkPartition = networkPartition1;
-                }
-            }
-        }
-        return networkPartition;
-    }
-
-    @Override
-    public NetworkPartition getNetworkPartition(String networkPartitionUuid) {
+    public NetworkPartition getNetworkPartition(String networkPartitionId) {
         try {
-            return 
CloudControllerContext.getInstance().getNetworkPartition(networkPartitionUuid);
+            return 
CloudControllerContext.getInstance().getNetworkPartition(networkPartitionId);
         } catch (Exception e) {
-            String message = String.format("Could not get network partition: 
[network-partition-uuid] %s " +
-                            "[network-partition-id] %s", 
getNetworkPartition(networkPartitionUuid).getUuid(),
-                    networkPartitionUuid);
+            String message = String.format("Could not get network partition: 
[network-partition-id] %s",
+                    networkPartitionId);
             log.error(message);
             throw new CloudControllerException(message, e);
         }
     }
 
-    public String getNetworkPartitionUuid(String networkPartitionId, int 
tenantId) {
-        NetworkPartition networkPartition = 
getNetworkPartitionByTenant(networkPartitionId, tenantId);
-        return networkPartition.getUuid();
-    }
-
-    public Partition[] getPartitionsByNetworkPartition(String 
networkPartitionId, int tenantId) {
-        NetworkPartition networkPartition = 
getNetworkPartitionByTenant(networkPartitionId, tenantId);
-        return networkPartition.getPartitions();
-    }
-
     @Override
     public String[] getIaasProviders() {
 

http://git-wip-us.apache.org/repos/asf/stratos/blob/4b864473/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/services/impl/CloudControllerServiceUtil.java
----------------------------------------------------------------------
diff --git 
a/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/services/impl/CloudControllerServiceUtil.java
 
b/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/services/impl/CloudControllerServiceUtil.java
index adbe294..37580eb 100644
--- 
a/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/services/impl/CloudControllerServiceUtil.java
+++ 
b/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/services/impl/CloudControllerServiceUtil.java
@@ -59,27 +59,24 @@ public class CloudControllerServiceUtil {
             return;
         }
 
-        String partitionId = memberContext.getPartition() == null ? null : 
memberContext.getPartition().getUuid();
+        String partitionId = memberContext.getPartition() == null ? null : 
memberContext.getPartition().getId();
 
         // Update the topology
         
TopologyBuilder.handleMemberTerminated(memberContext.getCartridgeType(),
                 memberContext.getClusterId(), 
memberContext.getNetworkPartitionId(),
                 partitionId, memberContext.getMemberId());
-        //member terminated time
-        Long timeStamp = System.currentTimeMillis();
+
         // Publish statistics to BAM
         BAMUsageDataPublisher.publish(memberContext.getMemberId(),
                 partitionId,
                 memberContext.getNetworkPartitionId(),
-                memberContext.getClusterInstanceId(),
                 memberContext.getClusterId(),
                 memberContext.getCartridgeType(),
                 MemberStatus.Terminated.toString(),
-                timeStamp, null, null, null);
+                null);
 
         // Remove member context
-        
CloudControllerContext.getInstance().removeMemberContext(memberContext.getClusterId(),
-                memberContext.getMemberId());
+        
CloudControllerContext.getInstance().removeMemberContext(memberContext.getClusterId(),
 memberContext.getMemberId());
 
         // Persist cloud controller context
         CloudControllerContext.getInstance().persist();
@@ -90,8 +87,7 @@ public class CloudControllerServiceUtil {
         return isValid;
     }
 
-    public static IaasProvider validatePartitionAndGetIaasProvider(Partition 
partition, IaasProvider iaasProvider)
-            throws InvalidPartitionException {
+    public static IaasProvider validatePartitionAndGetIaasProvider(Partition 
partition, IaasProvider iaasProvider) throws InvalidPartitionException {
         if (iaasProvider != null) {
             // if this is a IaaS based partition
             Iaas iaas = iaasProvider.getIaas();
@@ -102,14 +98,13 @@ public class CloudControllerServiceUtil {
             return iaasProvider;
 
         } else {
-            String msg = "Partition is not valid: [partition-id] " + 
partition.getUuid();
+            String msg = "Partition is not valid: [partition-id] " + 
partition.getId();
             log.error(msg);
             throw new InvalidPartitionException(msg);
         }
     }
 
-    public static boolean validatePartition(Partition partition, IaasProvider 
iaasProvider)
-            throws InvalidPartitionException {
+    public static boolean validatePartition(Partition partition, IaasProvider 
iaasProvider) throws InvalidPartitionException {
         validatePartitionAndGetIaasProvider(partition, iaasProvider);
         return true;
     }

http://git-wip-us.apache.org/repos/asf/stratos/blob/4b864473/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/services/impl/InstanceCreator.java
----------------------------------------------------------------------
diff --git 
a/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/services/impl/InstanceCreator.java
 
b/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/services/impl/InstanceCreator.java
index 02730cf..77cfea2 100644
--- 
a/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/services/impl/InstanceCreator.java
+++ 
b/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/services/impl/InstanceCreator.java
@@ -27,6 +27,8 @@ import org.apache.stratos.cloud.controller.domain.*;
 import 
org.apache.stratos.cloud.controller.exception.CartridgeNotFoundException;
 import org.apache.stratos.cloud.controller.iaases.Iaas;
 import org.apache.stratos.cloud.controller.messaging.topology.TopologyBuilder;
+import 
org.apache.stratos.cloud.controller.statistics.publisher.BAMUsageDataPublisher;
+import org.apache.stratos.messaging.domain.topology.MemberStatus;
 
 import java.util.concurrent.locks.Lock;
 
@@ -66,8 +68,7 @@ public class InstanceCreator implements Runnable {
             memberContext = startInstance(iaas, memberContext, payload);
 
             if (log.isInfoEnabled()) {
-                log.info(String.format("Instance started successfully: 
[cartridge-type] %s [cluster-id] %s " +
-                                "[instance-id] %s " +
+                log.info(String.format("Instance started successfully: 
[cartridge-type] %s [cluster-id] %s [instance-id] %s " +
                                 "[default-private-ip] %s [default-public-ip] 
%s",
                         memberContext.getCartridgeType(), 
memberContext.getClusterId(),
                         memberContext.getInstanceId(), 
memberContext.getDefaultPrivateIP(),
@@ -84,6 +85,15 @@ public class InstanceCreator implements Runnable {
             // Update topology
             TopologyBuilder.handleMemberInitializedEvent(memberContext);
 
+            // Publish instance creation statistics to BAM
+            BAMUsageDataPublisher.publish(
+                    memberContext.getMemberId(),
+                    memberContext.getPartition().getId(),
+                    memberContext.getNetworkPartitionId(),
+                    memberContext.getClusterId(),
+                    memberContext.getCartridgeType(),
+                    MemberStatus.Initialized.toString(),
+                    memberContext.getInstanceMetadata());
         } catch (Exception e) {
             String message = String.format("Could not start instance: 
[cartridge-type] %s [cluster-id] %s",
                     memberContext.getCartridgeType(), 
memberContext.getClusterId());
@@ -95,8 +105,7 @@ public class InstanceCreator implements Runnable {
         }
     }
 
-    private MemberContext startInstance(Iaas iaas, MemberContext 
memberContext, byte[] payload) throws
-            CartridgeNotFoundException {
+    private MemberContext startInstance(Iaas iaas, MemberContext 
memberContext, byte[] payload) throws CartridgeNotFoundException {
         memberContext = iaas.startInstance(memberContext, payload);
 
         // Validate instance id

http://git-wip-us.apache.org/repos/asf/stratos/blob/4b864473/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/statistics/publisher/BAMUsageDataPublisher.java
----------------------------------------------------------------------
diff --git 
a/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/statistics/publisher/BAMUsageDataPublisher.java
 
b/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/statistics/publisher/BAMUsageDataPublisher.java
index 690bc59..d5aabbd 100644
--- 
a/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/statistics/publisher/BAMUsageDataPublisher.java
+++ 
b/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/statistics/publisher/BAMUsageDataPublisher.java
@@ -52,31 +52,12 @@ public class BAMUsageDataPublisher {
     private static StreamDefinition streamDefinition;
     private static final String cloudControllerEventStreamVersion = "1.0.0";
 
-    /**
-     * Publish events to BAM
-     *
-     * @param memberId          member id
-     * @param partitionId       partition id
-     * @param networkId         network partition id
-     * @param clusterId         cluster id
-     * @param clusterInstanceId cluster instance id
-     * @param serviceName       service name
-     * @param status            member status
-     * @param timeStamp         time
-     * @param autoscalingReason scaling reason related to member
-     * @param scalingTime       scaling time
-     * @param metadata          meta-data
-     */
     public static void publish(String memberId,
                                String partitionId,
                                String networkId,
                                String clusterId,
-                               String clusterInstanceId,
                                String serviceName,
                                String status,
-                               Long timeStamp,
-                               String autoscalingReason,
-                               Long scalingTime,
                                InstanceMetadata metadata) {
         if (!CloudControllerConfig.getInstance().isBAMDataPublisherEnabled()) {
             return;
@@ -98,23 +79,16 @@ public class BAMUsageDataPublisher {
         MemberContext memberContext = 
CloudControllerContext.getInstance().getMemberContextOfMemberId(memberId);
         String cartridgeType = memberContext.getCartridgeType();
         Cartridge cartridge = 
CloudControllerContext.getInstance().getCartridge(cartridgeType);
-        String instanceType = 
CloudControllerContext.getInstance().getIaasProviderOfPartition(cartridgeType,
-                
partitionId).getProperty(CloudControllerConstants.INSTANCE_TYPE);
 
         //Construct the data to be published
         List<Object> payload = new ArrayList<Object>();
         // Payload values
-        payload.add(timeStamp);
         payload.add(memberId);
         payload.add(serviceName);
         payload.add(clusterId);
-        payload.add(clusterInstanceId);
         payload.add(handleNull(memberContext.getLbClusterId()));
         payload.add(handleNull(partitionId));
         payload.add(handleNull(networkId));
-        payload.add(handleNull(instanceType));
-        payload.add(handleNull(autoscalingReason));
-        payload.add(handleNull(scalingTime));
         if (cartridge != null) {
             payload.add(handleNull(String.valueOf(cartridge.isMultiTenant())));
         } else {
@@ -155,14 +129,12 @@ public class BAMUsageDataPublisher {
 
         try {
             if (log.isDebugEnabled()) {
-                log.debug(String.format("Publishing BAM event: [stream] %s 
[version] %s", streamDefinition.getName(),
-                        streamDefinition.getVersion()));
+                log.debug(String.format("Publishing BAM event: [stream] %s 
[version] %s", streamDefinition.getName(), streamDefinition.getVersion()));
             }
             dataPublisher.publish(streamDefinition.getName(), 
streamDefinition.getVersion(), event);
         } catch (AgentException e) {
             if (log.isErrorEnabled()) {
-                log.error(String.format("Could not publish BAM event: [stream] 
%s [version] %s",
-                        streamDefinition.getName(), 
streamDefinition.getVersion()), e);
+                log.error(String.format("Could not publish BAM event: [stream] 
%s [version] %s", streamDefinition.getName(), streamDefinition.getVersion()), 
e);
             }
         }
     }
@@ -179,17 +151,12 @@ public class BAMUsageDataPublisher {
         streamDefinition.setDescription("Instances booted up by the Cloud 
Controller");
         // Payload definition
         List<Attribute> payloadData = new ArrayList<Attribute>();
-        payloadData.add(new Attribute(CloudControllerConstants.TIME_STAMP, 
AttributeType.LONG));
         payloadData.add(new Attribute(CloudControllerConstants.MEMBER_ID_COL, 
AttributeType.STRING));
         payloadData.add(new 
Attribute(CloudControllerConstants.CARTRIDGE_TYPE_COL, AttributeType.STRING));
         payloadData.add(new Attribute(CloudControllerConstants.CLUSTER_ID_COL, 
AttributeType.STRING));
-        payloadData.add(new 
Attribute(CloudControllerConstants.CLUSTER_INSTANCE_ID_COL, 
AttributeType.STRING));
         payloadData.add(new 
Attribute(CloudControllerConstants.LB_CLUSTER_ID_COL, AttributeType.STRING));
         payloadData.add(new 
Attribute(CloudControllerConstants.PARTITION_ID_COL, AttributeType.STRING));
         payloadData.add(new Attribute(CloudControllerConstants.NETWORK_ID_COL, 
AttributeType.STRING));
-        payloadData.add(new Attribute(CloudControllerConstants.INSTANCE_TYPE, 
AttributeType.STRING));
-        payloadData.add(new Attribute(CloudControllerConstants.SCALING_REASON, 
AttributeType.STRING));
-        payloadData.add(new Attribute(CloudControllerConstants.SCALING_TIME, 
AttributeType.LONG));
         payloadData.add(new 
Attribute(CloudControllerConstants.IS_MULTI_TENANT_COL, AttributeType.STRING));
         payloadData.add(new Attribute(CloudControllerConstants.IAAS_COL, 
AttributeType.STRING));
         payloadData.add(new Attribute(CloudControllerConstants.STATUS_COL, 
AttributeType.STRING));
@@ -243,11 +210,4 @@ public class BAMUsageDataPublisher {
         }
         return val;
     }
-
-    private static Long handleNull(Long val) {
-        if (val == null) {
-            return -1L;
-        }
-        return val;
-    }
 }

http://git-wip-us.apache.org/repos/asf/stratos/blob/4b864473/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/util/CloudControllerConstants.java
----------------------------------------------------------------------
diff --git 
a/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/util/CloudControllerConstants.java
 
b/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/util/CloudControllerConstants.java
index 2cb0c31..5e6115f 100644
--- 
a/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/util/CloudControllerConstants.java
+++ 
b/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/util/CloudControllerConstants.java
@@ -103,7 +103,6 @@ public final class CloudControllerConstants {
     public static final String MEMBER_ID_COL = "memberId";
     public static final String CARTRIDGE_TYPE_COL = "cartridgeType";
     public static final String CLUSTER_ID_COL = "clusterId";
-    public static final String CLUSTER_INSTANCE_ID_COL = "clusterInstanceId";
     public static final String PARTITION_ID_COL = "partitionId";
     public static final String NETWORK_ID_COL = "networkId";
     public static final String ALIAS_COL = "alias";
@@ -123,9 +122,6 @@ public final class CloudControllerConstants {
     public static final String PRIV_IP_COL = "privateIPAddresses";
     public static final String PUB_IP_COL = "publicIPAddresses";
     public static final String ALLOCATE_IP_COL = "allocateIPAddresses";
-    public static final String TIME_STAMP = "timeStamp";
-    public static final String SCALING_REASON = "scalingReason";
-    public static final String SCALING_TIME = "scalingTime";
 
     /**
      * Properties

Reply via email to