Examples of EngineHostPodVO


Examples of org.apache.cloudstack.engine.datacenter.entity.api.db.EngineHostPodVO

  EngineDataCenterVO dc = new EngineDataCenterVO(UUID.randomUUID().toString(), "test", "8.8.8.8", null, "10.0.0.1", null,  "10.0.0.1/24",
        null, null, NetworkType.Basic, null, null, true,  true, null, null);
    Mockito.when(dcDao.findByUuid(Mockito.anyString())).thenReturn(dc);
    Mockito.when(dcDao.persist((EngineDataCenterVO) Mockito.anyObject())).thenReturn(dc);

    EngineHostPodVO pod = new EngineHostPodVO("lab", 123, "10.0.0.1", "10.0.0.1", 24, "test");
    Mockito.when(_podDao.findByUuid(Mockito.anyString())).thenReturn(pod);
    Mockito.when(_podDao.persist((EngineHostPodVO) Mockito.anyObject())).thenReturn(pod);

  EngineClusterVO cluster = new EngineClusterVO();
    Mockito.when(_clusterDao.findByUuid(Mockito.anyString())).thenReturn(cluster);
View Full Code Here

Examples of org.apache.cloudstack.engine.datacenter.entity.api.db.EngineHostPodVO

    return false;
  }

  @Override
  public EngineHostPodVO loadPod(String uuid) {
    EngineHostPodVO pod = _podDao.findByUuid(uuid);
  if(pod == null){
    throw new InvalidParameterValueException("Pod does not exist");
  }
    return pod;
  }
View Full Code Here

Examples of org.apache.cloudstack.engine.datacenter.entity.api.db.EngineHostPodVO

    @Override
    public boolean remove(Long id) {
        Transaction txn = Transaction.currentTxn();
        txn.start();
        EngineHostPodVO pod = createForUpdate();
        pod.setName(null);

        update(id, pod);

        boolean result = super.remove(id);
        txn.commit();
View Full Code Here

Examples of org.apache.cloudstack.engine.datacenter.entity.api.db.EngineHostPodVO


  @Override
  public boolean updateState(State currentState, Event event, State nextState, DataCenterResourceEntity podEntity, Object data) {

    EngineHostPodVO vo = findById(podEntity.getId());

    Date oldUpdatedTime = vo.getLastUpdated();

    SearchCriteria<EngineHostPodVO> sc = StateChangeSearch.create();
        sc.setParameters("id", vo.getId());
        sc.setParameters("state", currentState);

        UpdateBuilder builder = getUpdateBuilder(vo);
        builder.set(vo, "state", nextState);
        builder.set(vo, "lastUpdated", new Date());

        int rows = update((EngineHostPodVO) vo, sc);

        if (rows == 0 && s_logger.isDebugEnabled()) {
          EngineHostPodVO dbDC = findByIdIncludingRemoved(vo.getId());
            if (dbDC != null) {
                StringBuilder str = new StringBuilder("Unable to update ").append(vo.toString());
                str.append(": DB Data={id=").append(dbDC.getId()).append("; state=").append(dbDC.getState()).append(";updatedTime=")
                        .append(dbDC.getLastUpdated());
                str.append(": New Data={id=").append(vo.getId()).append("; state=").append(nextState).append("; event=").append(event).append("; updatedTime=").append(vo.getLastUpdated());
                str.append(": stale Data={id=").append(vo.getId()).append("; state=").append(currentState).append("; event=").append(event).append("; updatedTime=").append(oldUpdatedTime);
            } else {
                s_logger.debug("Unable to update dataCenter: id=" + vo.getId() + ", as there is no such dataCenter exists in the database anymore");
            }
View Full Code Here

Examples of org.apache.cloudstack.engine.datacenter.entity.api.db.EngineHostPodVO

            new EngineDataCenterVO(UUID.randomUUID().toString(), "test", "8.8.8.8", null, "10.0.0.1", null, "10.0.0.1/24", null, null, NetworkType.Basic, null, null,
                true, true, null, null);
        Mockito.when(dcDao.findByUuid(Matchers.anyString())).thenReturn(dc);
        Mockito.when(dcDao.persist((EngineDataCenterVO)Matchers.anyObject())).thenReturn(dc);

        EngineHostPodVO pod = new EngineHostPodVO("lab", 123, "10.0.0.1", "10.0.0.1", 24, "test");
        Mockito.when(_podDao.findByUuid(Matchers.anyString())).thenReturn(pod);
        Mockito.when(_podDao.persist((EngineHostPodVO)Matchers.anyObject())).thenReturn(pod);

        EngineClusterVO cluster = new EngineClusterVO();
        Mockito.when(_clusterDao.findByUuid(Matchers.anyString())).thenReturn(cluster);
View Full Code Here

Examples of org.apache.cloudstack.engine.datacenter.entity.api.db.EngineHostPodVO

    @Override
    public boolean remove(Long id) {
        TransactionLegacy txn = TransactionLegacy.currentTxn();
        txn.start();
        EngineHostPodVO pod = createForUpdate();
        pod.setName(null);

        update(id, pod);

        boolean result = super.remove(id);
        txn.commit();
View Full Code Here

Examples of org.apache.cloudstack.engine.datacenter.entity.api.db.EngineHostPodVO

    }

    @Override
    public boolean updateState(State currentState, Event event, State nextState, DataCenterResourceEntity podEntity, Object data) {

        EngineHostPodVO vo = findById(podEntity.getId());

        Date oldUpdatedTime = vo.getLastUpdated();

        SearchCriteria<EngineHostPodVO> sc = StateChangeSearch.create();
        sc.setParameters("id", vo.getId());
        sc.setParameters("state", currentState);

        UpdateBuilder builder = getUpdateBuilder(vo);
        builder.set(vo, "state", nextState);
        builder.set(vo, "lastUpdated", new Date());

        int rows = update(vo, sc);

        if (rows == 0 && s_logger.isDebugEnabled()) {
            EngineHostPodVO dbDC = findByIdIncludingRemoved(vo.getId());
            if (dbDC != null) {
                StringBuilder str = new StringBuilder("Unable to update ").append(vo.toString());
                str.append(": DB Data={id=").append(dbDC.getId()).append("; state=").append(dbDC.getState()).append(";updatedTime=").append(dbDC.getLastUpdated());
                str.append(": New Data={id=")
                    .append(vo.getId())
                    .append("; state=")
                    .append(nextState)
                    .append("; event=")
View Full Code Here

Examples of org.apache.cloudstack.engine.datacenter.entity.api.db.EngineHostPodVO

        return false;
    }

    @Override
    public EngineHostPodVO loadPod(String uuid) {
        EngineHostPodVO pod = _podDao.findByUuid(uuid);
        if (pod == null) {
            throw new InvalidParameterValueException("Pod does not exist");
        }
        return pod;
    }
View Full Code Here

Examples of org.apache.cloudstack.engine.datacenter.entity.api.db.EngineHostPodVO

      EngineDataCenterVO dc = new EngineDataCenterVO(UUID.randomUUID().toString(), "test", "8.8.8.8", null, "10.0.0.1", null,  "10.0.0.1/24",
        null, null, NetworkType.Basic, null, null, true,  true, null, null);
    Mockito.when(dcDao.findByUuid(Mockito.anyString())).thenReturn(dc);
    Mockito.when(dcDao.persist((EngineDataCenterVO) Mockito.anyObject())).thenReturn(dc);
   
    EngineHostPodVO pod = new EngineHostPodVO("lab", 123, "10.0.0.1", "10.0.0.1", 24, "test");
    Mockito.when(_podDao.findByUuid(Mockito.anyString())).thenReturn(pod);
    Mockito.when(_podDao.persist((EngineHostPodVO) Mockito.anyObject())).thenReturn(pod);           
   
      EngineClusterVO cluster = new EngineClusterVO();
    Mockito.when(_clusterDao.findByUuid(Mockito.anyString())).thenReturn(cluster);
View Full Code Here

Examples of org.apache.cloudstack.engine.datacenter.entity.api.db.EngineHostPodVO

    @Override
    public boolean remove(Long id) {
        TransactionLegacy txn = TransactionLegacy.currentTxn();
        txn.start();
        EngineHostPodVO pod = createForUpdate();
        pod.setName(null);

        update(id, pod);

        boolean result = super.remove(id);
        txn.commit();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.